:root {
    --bg-primary: hsla(260,40%,5%,1);
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0;
    --text-muted: #b0b0b0;
    --accent-color: #8a2be2;
    --border-color: rgba(255, 255, 255, 0.03);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --overlay-bg: rgba(0, 0, 0, 0.1);
    --footer-bg: rgba(0, 0, 0, 0.05);
    --button-bg: rgba(255, 255, 255, 0.05);
    --button-hover: rgba(255, 255, 255, 0.15);
    --particle-color: rgba(255, 255, 255, 0.5);
    --start-overlay-bg: rgba(20, 20, 40, 0.7);
    --start-btn-bg: linear-gradient(90deg, rgba(120,0,255,0.18) 0%, rgba(0,0,0,0.12) 100%);
    --start-btn-shadow: 0 4px 32px rgba(120,0,255,0.18), 0 1.5px 8px rgba(0,0,0,0.12);
    --start-btn-hover-bg: linear-gradient(90deg, rgba(180,0,255,0.28) 0%, rgba(0,0,0,0.18) 100%);
    --start-btn-hover-shadow: 0 6px 36px rgba(180,0,255,0.22), 0 2px 12px rgba(0,0,0,0.16);
    --start-btn-hover-color: #ffbfff;
    --pingpong-opacity: 0.6;
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-muted: #000000;
    --accent-color: #8a2be2;
    --border-color: rgba(0, 0, 0, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.2);
    --overlay-bg: rgba(255, 255, 255, 0.3);
    --footer-bg: rgba(255, 255, 255, 0.1);
    --button-bg: rgba(0, 0, 0, 0.1);
    --button-hover: rgba(0, 0, 0, 0.2);
    --particle-color: rgba(0, 0, 0, 0.3);
    --start-overlay-bg: rgba(255, 255, 255, 0.7);
    --start-btn-bg: linear-gradient(90deg, rgba(120,0,255,0.18) 0%, rgba(255,255,255,0.12) 100%);
    --start-btn-shadow: 0 4px 32px rgba(120,0,255,0.18), 0 1.5px 8px rgba(0,0,0,0.12);
    --start-btn-hover-bg: linear-gradient(90deg, rgba(180,0,255,0.28) 0%, rgba(255,255,255,0.18) 100%);
    --start-btn-hover-shadow: 0 6px 36px rgba(180,0,255,0.22), 0 2px 12px rgba(0,0,0,0.16);
    --start-btn-hover-color: #8a2be2;
    --pingpong-opacity: 0.8;
}

[data-theme="light"] .uiverse {
    --c-color: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background: var(--bg-primary);
}

body {
    font-family: 'Roboto Mono', monospace;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--button-bg);
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--button-hover);
    transform: scale(1.1);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.theme-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition: all 0.3s ease;
}

.moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
    transition: all 0.3s ease;
}

[data-theme="light"] .sun-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

[data-theme="light"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.pingpong-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 9998;
    pointer-events: none;
    opacity: var(--pingpong-opacity);
    padding-top: 40px;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    pointer-events: auto;
    text-align: center;
    width: 100%;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.infinity-container {
    position: relative;
    width: 60vmin;
    max-width: 84%;
    height: auto;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infinity-container:hover {
    transform: scale(1.05);
    transform-origin: center;
}

.infinity-logo {
    width: 100%;
    height: auto;
    opacity: 0;
    animation: fadeInInfinity 2s ease-in-out forwards, heartbeat 4s ease-in-out infinite;
    animation-delay: 0.5s, 2.5s;
    filter: drop-shadow(0 0 4px #8a2be2);
    display: block;
    margin: 0 auto;
    transform-origin: center;
    transition: opacity 0.5s ease, transform 0.2s ease;
    object-fit: contain;
    max-width: 100%;
    max-height: none;
}

.logo-text-overlay {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: none;
    z-index: 10000;
    margin-top: 10px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.logo-text-overlay .server-description {
    background: var(--bg-primary) !important;
    border-radius: 22px;
    box-shadow: 0 8px 40px 0 var(--shadow-color), 0 4px 16px var(--shadow-color);
    padding: 28px 32px;
    margin: 0 auto;
    max-width: 600px;
    border: 2px solid var(--accent-color);
    display: block;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.server-description {
    text-align: center;
    color: var(--text-primary);
    max-width: 100%;
    padding: 10px;
}

.server-title {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 1.5;
    color: var(--text-primary);
}

.server-title .glow {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color), 0 0 30px var(--accent-color);
    font-weight: 700;
}

.server-info {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-weight: normal;
}

.server-concept {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-weight: normal;
}

.infinity-container:hover .logo-text-overlay {
    opacity: 1;
    visibility: visible;
}

@keyframes fadeInInfinity {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.03);
    }
    50% {
        transform: scale(1.01);
    }
    75% {
        transform: scale(1.04);
    }
}

.content--canvas {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content--canvas canvas {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: var(--overlay-bg);
    backdrop-filter: blur(5px);
    border-radius: 22px;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 40px 0 var(--shadow-color), 0 4px 16px var(--shadow-color);
    margin: 20px;
    min-width: 400px;
    max-width: 600px;
}

.timer {
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin: 15px 0;
    text-shadow: 0 0 10px var(--shadow-color);
    text-align: center;
}

.time-value {
    font-size: 2.2rem;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.modern-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: var(--footer-bg);
    backdrop-filter: blur(3px);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.music-section {
    display: flex;
    align-items: center;
    min-width: 200px;
    justify-self: start;
}

.music-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.music-title {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
}

.music-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.music-btn {
    background: var(--button-bg);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    outline: none;
    backdrop-filter: blur(1px);
}

.music-btn:hover {
    background: var(--button-hover);
    transform: scale(1.1);
}

.footer-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-self: center;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.recode-link {
    position: relative;
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    animation: recodeGlow 2s ease-in-out infinite alternate;
}

.recode-link:hover {
    color: #ffbfff !important;
    text-shadow: 0 0 15px var(--accent-color), 0 0 25px var(--accent-color), 0 0 35px var(--accent-color);
    transform: translateY(-3px);
}

.recode-link::after {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
}

@keyframes recodeGlow {
    0% {
        text-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    }
    100% {
        text-shadow: 0 0 15px var(--accent-color), 0 0 25px var(--accent-color), 0 0 35px var(--accent-color);
    }
}

.social-section {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-self: end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--button-bg);
    transition: all 0.3s ease;
    color: var(--text-primary);
    text-decoration: none;
    backdrop-filter: blur(2px);
}

.social-link:hover {
    background: var(--button-hover);
    transform: translateY(-3px) scale(1.1);
    color: var(--accent-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

@media (max-width: 768px) {
    .pingpong-background { padding-top: 20px; }
    .header-content { gap: 3px; }
    .header-nav { 
        gap: 15px;
        bottom: 15px;
        right: 15px;
    }
    .header-nav a { font-size: 0.9rem; }
    .infinity-container { 
        width: 50vmin;
        max-width: 80%; 
    }
    .timer { font-size: 1rem; }
    .time-value { font-size: 1.5rem; }
    
    .theme-toggle {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .theme-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-content {
        margin: 15px;
        min-width: 320px;
        max-width: 95vw;
        padding: 15px;
    }
    
    .logo-text-overlay {
        padding: 15px;
        width: 90vw;
        max-width: 500px;
    }
    
    .server-title {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .server-info {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .server-concept {
        font-size: 0.9rem;
    }
    
    .modern-footer {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .music-section {
        min-width: auto;
        width: 100%;
        justify-self: center;
    }
    
    .music-title {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-nav {
        gap: 20px;
        justify-self: center;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .social-section {
        gap: 12px;
        justify-self: center;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .music-title {
        font-size: 0.8rem;
    }
    
    .music-btn {
        width: 28px;
        height: 28px;
    }
    
    .theme-toggle {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
    
    .theme-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-content {
        margin: 10px;
        min-width: 280px;
        max-width: 98vw;
        padding: 12px;
    }
    
    .logo-text-overlay {
        padding: 12px;
        width: 95vw;
        max-width: 400px;
    }
    
    .server-title {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .server-info {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .server-concept {
        font-size: 0.8rem;
    }
}

@keyframes fadeInMusic {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.95; transform: translateY(0); }
}

.start-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--start-overlay-bg);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

.start-btn {
    padding: 22px 70px;
    font-size: 2.1rem;
    color: var(--text-primary);
    background: var(--start-btn-bg);
    border: none;
    border-radius: 32px;
    box-shadow: var(--start-btn-shadow);
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: 2px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s, opacity 0.3s;
    outline: none;
    backdrop-filter: blur(2px);
    opacity: 0.92;
    position: relative;
    overflow: hidden;
}

.start-btn::after {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(180,0,255,0.18) 0%, transparent 70%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.start-btn:hover, .start-btn:focus {
    background: var(--start-btn-hover-bg);
    color: var(--start-btn-hover-color);
    box-shadow: var(--start-btn-hover-shadow);
    transform: scale(1.045);
    opacity: 1;
}

#particle-canvas {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    display: block;
}

.music-volume-btn {
    background: var(--button-bg);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    color: var(--text-primary);
    outline: none;
    box-shadow: 0 1.5px 8px rgba(120,0,255,0.10);
    opacity: 0.85;
    pointer-events: auto;
}

.music-volume-btn:hover, .music-volume-btn:focus {
    background: rgba(180,0,255,0.18);
    color: var(--accent-color);
    opacity: 1;
}

#music-volume-icon {
    display: block;
}

#project-timer, #world-timer {
    animation: fadeInMusic 3s;
}

.uiverse {
  --duration: 7s;
  --easing: linear;
  --c-color-1: rgba(255, 163, 26, 0.7);
  --c-color-2: #1a23ff;
  --c-color-3: #e21bda;
  --c-color-4: rgba(255, 232, 26, 0.7);
  --c-shadow: rgba(255, 223, 87, 0.5);
  --c-shadow-inset-top: rgba(255, 223, 52, 0.9);
  --c-shadow-inset-bottom: rgba(255, 250, 215, 0.8);
  --c-radial-inner: #ffd215;
  --c-radial-outer: #fff172;
  --c-color: var(--text-primary);
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
  border: none;
  display: table;
  border-radius: 24px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--c-color);
  background: radial-gradient(
    circle,
    var(--c-radial-inner),
    var(--c-radial-outer) 80%
  );
  box-shadow: 0 0 14px var(--c-shadow);
}

.uiverse:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow:
    inset 0 3px 12px var(--c-shadow-inset-top),
    inset 0 -3px 4px var(--c-shadow-inset-bottom);
}

.uiverse .wrapper {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
  border-radius: 24px;
  min-width: 132px;
  padding: 12px 0;
  position: relative;
}

.uiverse .wrapper span {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 1.3em;
  letter-spacing: 0.04em;
}

.uiverse:hover {
  --duration: 1400ms;
}

.uiverse .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.uiverse .wrapper .circle.circle-1,
.uiverse .wrapper .circle.circle-9,
.uiverse .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.uiverse .wrapper .circle.circle-3,
.uiverse .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.uiverse .wrapper .circle.circle-5,
.uiverse .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 16px;
}

.uiverse .wrapper .circle.circle-2,
.uiverse .wrapper .circle.circle-7,
.uiverse .wrapper .circle.circle-8,
.uiverse .wrapper .circle.circle-11,
.uiverse .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 12px;
}

.uiverse .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.uiverse .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.uiverse .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.uiverse .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.uiverse .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.uiverse .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.uiverse .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.uiverse .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.uiverse .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.uiverse .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.uiverse .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.uiverse .wrapper .circle.circle-12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

@keyframes circle-1 {
  33% {
    transform: translate(0px, 16px) translateZ(0);
  }
  66% {
    transform: translate(12px, 64px) translateZ(0);
  }
}

@keyframes circle-2 {
  33% {
    transform: translate(80px, -10px) translateZ(0);
  }
  66% {
    transform: translate(72px, -48px) translateZ(0);
  }
}

@keyframes circle-3 {
  33% {
    transform: translate(20px, 12px) translateZ(0);
  }
  66% {
    transform: translate(12px, 4px) translateZ(0);
  }
}

@keyframes circle-4 {
  33% {
    transform: translate(76px, -12px) translateZ(0);
  }
  66% {
    transform: translate(112px, -8px) translateZ(0);
  }
}

@keyframes circle-5 {
  33% {
    transform: translate(84px, 28px) translateZ(0);
  }
  66% {
    transform: translate(40px, -32px) translateZ(0);
  }
}

@keyframes circle-6 {
  33% {
    transform: translate(28px, -16px) translateZ(0);
  }
  66% {
    transform: translate(76px, -56px) translateZ(0);
  }
}

@keyframes circle-7 {
  33% {
    transform: translate(8px, 28px) translateZ(0);
  }
  66% {
    transform: translate(20px, -60px) translateZ(0);
  }
}

@keyframes circle-8 {
  33% {
    transform: translate(32px, -4px) translateZ(0);
  }
  66% {
    transform: translate(56px, -20px) translateZ(0);
  }
}

@keyframes circle-9 {
  33% {
    transform: translate(20px, -12px) translateZ(0);
  }
  66% {
    transform: translate(80px, -8px) translateZ(0);
  }
}

@keyframes circle-10 {
  33% {
    transform: translate(68px, 20px) translateZ(0);
  }
  66% {
    transform: translate(100px, 28px) translateZ(0);
  }
}

@keyframes circle-11 {
  33% {
    transform: translate(4px, 4px) translateZ(0);
  }
  66% {
    transform: translate(68px, 20px) translateZ(0);
  }
}

@keyframes circle-12 {
  33% {
    transform: translate(56px, 0px) translateZ(0);
  }
  66% {
    transform: translate(60px, -32px) translateZ(0);
  }
} 