/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00ff88;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 150px 0 300px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 204, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-animation {
    position: relative;
    height: 450px;
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.electric-field {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
}

/* Background Grid */
.electric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.grid-lines {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: grid-pulse 4s ease-in-out infinite;
}

/* Central Pulse Generator */
.pulse-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.core-sphere {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, rgba(0, 204, 255, 0.2) 60%, transparent 100%);
    animation: sphere-bounce 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.core-token {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4), rgba(0, 204, 255, 0.4));
    border: 3px solid rgba(0, 255, 136, 0.9);
    border-radius: 50px;
    padding: 18px 28px;
    font-size: 22px;
    font-weight: 800;
    color: #00ff88;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.6),
        inset 0 0 25px rgba(0, 255, 136, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    will-change: transform;
    z-index: 10;
}

.core-token:hover {
    transform: scale(1.15);
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 0.9),
        inset 0 0 35px rgba(0, 255, 136, 0.3);
}

.sphere-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

/* Electric Waves */
.electric-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 255, 136, 0.5);
    border-radius: 50%;
    animation: electric-wave 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.wave-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.wave-2 {
    width: 120px;
    height: 120px;
    animation-delay: -0.6s;
}

.wave-3 {
    width: 120px;
    height: 120px;
    animation-delay: -1.2s;
}

.wave-4 {
    width: 120px;
    height: 120px;
    animation-delay: -1.8s;
}

.wave-5 {
    width: 120px;
    height: 120px;
    animation-delay: -2.4s;
}

/* Bouncing Tokens */
.bouncing-tokens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.token-node {
    position: absolute;
    width: 80px;
    height: 80px;
    cursor: pointer;
    animation: elastic-bounce 4s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.token-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.token-2 {
    top: 20%;
    right: 25%;
    animation-delay: -1s;
}

.token-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: -2s;
}

.token-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: -3s;
}

.token-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 204, 255, 0.3);
    border: 2px solid rgba(0, 204, 255, 0.8);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #00ccff;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 204, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.token-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border: 2px solid rgba(0, 204, 255, 0.4);
    border-radius: 50%;
    animation: token-pulse 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.token-node:hover .token-content {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 40px rgba(0, 204, 255, 0.8);
}

/* Lightning Effects */
.lightning-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lightning {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(0deg, transparent, rgba(0, 255, 136, 0.8), transparent);
    animation: lightning-strike 5s ease-in-out infinite;
    opacity: 0;
}

.lightning-1 {
    top: 20%;
    left: 30%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.lightning-2 {
    top: 60%;
    right: 20%;
    transform: rotate(-30deg);
    animation-delay: -1.5s;
}

.lightning-3 {
    bottom: 30%;
    left: 25%;
    transform: rotate(60deg);
    animation-delay: -3s;
}

.lightning-4 {
    top: 40%;
    right: 30%;
    transform: rotate(-45deg);
    animation-delay: -4.5s;
}

/* Elastic Connections */
.elastic-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.6), transparent);
    animation: elastic-stretch 6s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    transform-origin: center;
}

.connection-1 {
    top: 30%;
    left: 40%;
    width: 120px;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.connection-2 {
    top: 60%;
    right: 35%;
    width: 100px;
    transform: rotate(-40deg);
    animation-delay: -1.5s;
}

.connection-3 {
    bottom: 35%;
    left: 30%;
    width: 110px;
    transform: rotate(65deg);
    animation-delay: -3s;
}

.connection-4 {
    top: 25%;
    right: 25%;
    width: 90px;
    transform: rotate(-20deg);
    animation-delay: -4.5s;
}

/* Animations */
@keyframes sphere-bounce {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes electric-wave {
    0% {
        width: 120px;
        height: 120px;
        opacity: 1;
        border-width: 3px;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes elastic-bounce {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.1);
    }
    50% {
        transform: translateY(-10px) scale(0.95);
    }
    75% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes token-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

@keyframes lightning-strike {
    0%, 90%, 100% {
        opacity: 0;
    }
    92%, 94%, 96% {
        opacity: 1;
    }
    93%, 95% {
        opacity: 0.5;
    }
}

@keyframes elastic-stretch {
    0%, 100% {
        transform: scaleX(1) scaleY(1);
        opacity: 0.4;
    }
    50% {
        transform: scaleX(1.3) scaleY(0.7);
        opacity: 0.8;
    }
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Section Styles */
.about, .features, .tokens {
    padding: 120px 0;
}

.about {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 255, 136, 0.02) 100%);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffffff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 20px;
    color: #cccccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    background: rgba(0, 0, 0, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #00ff88;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.feature-card li::before {
    content: '•';
    color: #00ff88;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Tokens Section */
.tokens {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 204, 255, 0.02) 100%);
}



.tokens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.token-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ccff, #00ff88);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.token-card:hover::before {
    opacity: 1;
}

.token-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 204, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 204, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.token-symbol {
    font-size: 32px;
    font-weight: 800;
    color: #00ccff;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.3);
    letter-spacing: 1px;
}

.token-name {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.4;
}

.token-date {
    font-size: 14px;
    color: #00ff88;
    margin-bottom: 0;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(5px);
}

.live-status {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.4);
    animation: live-pulse 2s ease-in-out infinite;
    font-weight: 600;
}

.live-token {
    position: relative;
    cursor: pointer;
}

.live-token::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-token:hover::after {
    opacity: 0.3;
    animation: live-border-pulse 1s ease-in-out infinite;
}

.live-token:hover .live-status {
    background: rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.6);
    transform: scale(1.05);
}

@keyframes live-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
}

@keyframes live-border-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #999999;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    text-decoration: none;
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

.footer-social {
    display: flex;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #00ccff;
    border-color: rgba(0, 204, 255, 0.3);
    background: rgba(0, 204, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 204, 255, 0.2);
}

.social-link:hover .social-icon {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.social-icon {
    font-size: 18px;
    font-weight: 700;
    color: #00ccff;
}

.social-text {
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 120px 0 250px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-animation {
        height: 350px;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .core-sphere {
        width: 100px;
        height: 100px;
    }
    
    .core-token {
        font-size: 18px;
        padding: 14px 22px;
    }
    
    .sphere-glow {
        width: 140px;
        height: 140px;
    }
    
    .token-node {
        width: 60px;
        height: 60px;
    }
    
    .token-content {
        width: 50px;
        height: 50px;
        font-size: 8px;
    }
    
    .token-pulse {
        width: 65px;
        height: 65px;
    }
    
    /* Reduce animation complexity on mobile */
    .lightning {
        display: none;
    }
    
    .connection {
        opacity: 0.6;
    }
    
    .grid-lines {
        background-size: 25px 25px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tokens-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    

    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 200px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-animation {
        height: 250px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .core-token {
        font-size: 18px;
        padding: 14px 20px;
    }
    
    .orbit-token {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .orbit-1 {
        width: 120px;
        height: 120px;
    }
    
    .orbit-2 {
        width: 150px;
        height: 150px;
    }
    
    .orbit-3 {
        width: 180px;
        height: 180px;
    }
    
    .orbit-4 {
        width: 210px;
        height: 210px;
    }
    
    .ring-1 {
        width: 100px;
        height: 100px;
    }
    
    .ring-2 {
        width: 130px;
        height: 130px;
    }
    
    .ring-3 {
        width: 160px;
        height: 160px;
    }
    
    .core-glow {
        width: 80px;
        height: 80px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .token-card {
        padding: 25px 20px;
        min-height: 140px;
        gap: 12px;
    }
    
    .token-symbol {
        font-size: 28px;
    }
    
    .token-name {
        font-size: 16px;
    }
    
    .token-date {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .tokens-grid {
        grid-template-columns: 1fr;
    }
    
    .token-card {
        padding: 20px 15px;
        min-height: 120px;
        gap: 10px;
    }
    
    .token-symbol {
        font-size: 24px;
    }
    
    .token-name {
        font-size: 15px;
    }
    
    .token-date {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title, .hero-subtitle {
    animation: fadeInUp 0.8s ease-out;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ff88, #00ccff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00ccff, #00ff88);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-animation {
        animation: none;
    }
    
    .core-token,
    .orbit-token,
    .ring,
    .particle,
    .wave {
        animation: none;
    }
}

/* Performance optimizations */
.animation-container,
.central-core,
.orbit-container,
.particles,
.energy-waves {
    will-change: transform;
    transform: translateZ(0);
} 