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

:root {
    --bg-dark: #0A0A0A;
    --bg-darker: #000000;
    --text-white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.8);
    --primary-blue: #007bff;
    --blue-glow: #3b82f6;
    --moon-purple: #6b46c1;
    --moon-blue: #1e40af;
    --border-white: rgba(255, 255, 255, 0.2);
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-white);
    background: var(--bg-dark);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    height: 100%;
}

.loading-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(4rem, 14vw, 14rem);
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 1.2rem;
    text-transform: uppercase;
    margin: 0;
    animation: loading-title-glow 3s ease-in-out infinite;
    line-height: 1;
    background: linear-gradient(to bottom, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.loading-progress {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: clamp(3.5rem, 12vw, 12rem);
    font-weight: 700;
    line-height: 1;
    margin-top: -0.5rem;
}

.loading-dollar {
    font-family: 'Rajdhani', sans-serif;
    color: #22c55e;
    font-size: clamp(3.5rem, 12vw, 12rem);
    font-weight: 700;
    text-shadow: 0 0 40px rgba(34, 197, 94, 0.8), 0 0 80px rgba(34, 197, 94, 0.4);
}

.loading-number {
    font-family: 'Rajdhani', sans-serif;
    color: #22c55e;
    font-size: clamp(3.5rem, 12vw, 12rem);
    font-weight: 700;
    min-width: 1.1em;
    text-align: left;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 40px rgba(34, 197, 94, 0.8), 0 0 80px rgba(34, 197, 94, 0.4);
}

@keyframes loading-title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.5));
        transform: scale(1.02);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-white);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: auto;
    height: 32px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border-white);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.7;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.05);
}

.globe-icon {
    font-size: 1rem;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 0.75rem 1.5rem;
    color: var(--text-white);
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.95rem;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: 
        linear-gradient(135deg, 
            #0a0a1a 0%,
            #0f0c29 30%,
            #0a0a1a 60%,
            #0f0c29 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    display: none;
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    animation: twinkle 5s ease-in-out infinite;
    z-index: 0;
}

.stars-background::before,
.stars-background::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(139, 92, 246, 0.7);
    border-radius: 50%;
    box-shadow: 
        10vw 20vh 0 0 rgba(139, 92, 246, 0.5),
        30vw 40vh 0 0 rgba(139, 92, 246, 0.35),
        50vw 15vh 0 0 rgba(139, 92, 246, 0.45),
        70vw 60vh 0 0 rgba(139, 92, 246, 0.35),
        85vw 30vh 0 0 rgba(139, 92, 246, 0.5),
        20vw 70vh 0 0 rgba(139, 92, 246, 0.45),
        40vw 80vh 0 0 rgba(139, 92, 246, 0.35),
        60vw 50vh 0 0 rgba(139, 92, 246, 0.5),
        80vw 10vh 0 0 rgba(139, 92, 246, 0.45),
        15vw 60vh 0 0 rgba(99, 102, 241, 0.45),
        45vw 25vh 0 0 rgba(99, 102, 241, 0.35),
        75vw 45vh 0 0 rgba(99, 102, 241, 0.45);
    animation: twinkle 4s ease-in-out infinite;
    filter: blur(0.5px);
}

.stars-background::after {
    background: rgba(236, 72, 153, 0.7);
    box-shadow: 
        15vw 25vh 0 0 rgba(236, 72, 153, 0.45),
        35vw 45vh 0 0 rgba(236, 72, 153, 0.35),
        55vw 20vh 0 0 rgba(236, 72, 153, 0.5),
        75vw 65vh 0 0 rgba(236, 72, 153, 0.35),
        90vw 35vh 0 0 rgba(236, 72, 153, 0.45),
        25vw 75vh 0 0 rgba(236, 72, 153, 0.35),
        45vw 85vh 0 0 rgba(236, 72, 153, 0.5),
        65vw 55vh 0 0 rgba(236, 72, 153, 0.45),
        5vw 50vh 0 0 rgba(236, 72, 153, 0.35),
        95vw 80vh 0 0 rgba(236, 72, 153, 0.45);
    animation-delay: 2s;
    filter: blur(0.5px);
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Crypto Background - Network Graph */
.crypto-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    background: 
        linear-gradient(135deg, 
            rgba(10, 10, 26, 0.98) 0%,
            rgba(15, 12, 41, 0.98) 50%,
            rgba(10, 10, 26, 0.98) 100%);
}

/* Network Grid */
.network-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    z-index: 1;
    animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
}

/* Network SVG */
.network-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.75;
    transform: scale(1.2);
    transform-origin: center center;
    animation: network-drift 20s ease-in-out infinite;
}

@keyframes network-drift {
    0%, 100% {
        transform: scale(1.2) translate(0, 0);
    }
    25% {
        transform: scale(1.25) translate(2%, 1%);
    }
    50% {
        transform: scale(1.2) translate(0, 0);
    }
    75% {
        transform: scale(1.25) translate(-2%, -1%);
    }
}

/* Network Lines */
.network-line {
    stroke: rgba(139, 92, 246, 0.4);
    stroke-width: 0.25;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 2 3;
    animation: line-flow 4s linear infinite, line-pulse 3s ease-in-out infinite;
    opacity: 0;
    animation-fill-mode: forwards;
}

.network-line:nth-child(1) { animation-delay: 0s, 0s; }
.network-line:nth-child(2) { animation-delay: 0.1s, 0.2s; }
.network-line:nth-child(3) { animation-delay: 0.2s, 0.4s; }
.network-line:nth-child(4) { animation-delay: 0.3s, 0.6s; }
.network-line:nth-child(5) { animation-delay: 0.4s, 0.8s; }
.network-line:nth-child(6) { animation-delay: 0.5s, 1s; }
.network-line:nth-child(7) { animation-delay: 0.6s, 1.2s; }
.network-line:nth-child(8) { animation-delay: 0.7s, 1.4s; }
.network-line:nth-child(9) { animation-delay: 0.8s, 1.6s; }
.network-line:nth-child(10) { animation-delay: 0.9s, 1.8s; }
.network-line:nth-child(11) { animation-delay: 1s, 2s; }
.network-line:nth-child(12) { animation-delay: 1.1s, 2.2s; }
.network-line:nth-child(13) { animation-delay: 1.2s, 2.4s; }
.network-line:nth-child(14) { animation-delay: 1.3s, 2.6s; }
.network-line:nth-child(15) { animation-delay: 1.4s, 2.8s; }
.network-line:nth-child(16) { animation-delay: 1.5s, 3s; }
.network-line:nth-child(17) { animation-delay: 1.6s, 0.1s; }
.network-line:nth-child(18) { animation-delay: 1.7s, 0.3s; }
.network-line:nth-child(19) { animation-delay: 1.8s, 0.5s; }
.network-line:nth-child(20) { animation-delay: 1.9s, 0.7s; }
.network-line:nth-child(21) { animation-delay: 2s, 0.9s; }
.network-line:nth-child(22) { animation-delay: 2.1s, 1.1s; }
.network-line:nth-child(23) { animation-delay: 2.2s, 1.3s; }
.network-line:nth-child(24) { animation-delay: 2.3s, 1.5s; }
.network-line:nth-child(25) { animation-delay: 2.4s, 1.7s; }
.network-line:nth-child(26) { animation-delay: 2.5s, 1.9s; }
.network-line:nth-child(27) { animation-delay: 2.6s, 2.1s; }
.network-line:nth-child(28) { animation-delay: 2.7s, 2.3s; }
.network-line:nth-child(29) { animation-delay: 2.8s, 2.5s; }
.network-line:nth-child(30) { animation-delay: 2.9s, 2.7s; }
.network-line:nth-child(31) { animation-delay: 3s, 2.9s; }
.network-line:nth-child(32) { animation-delay: 3.1s, 0.2s; }
.network-line:nth-child(33) { animation-delay: 3.2s, 0.4s; }

@keyframes line-flow {
    0% {
        stroke-dashoffset: 5;
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        stroke-dashoffset: -5;
        opacity: 0.3;
    }
}

@keyframes line-pulse {
    0%, 100% {
        stroke-opacity: 0.4;
    }
    50% {
        stroke-opacity: 0.7;
    }
}

/* Network Nodes */
.network-node {
    fill: rgba(139, 92, 246, 0.9);
    filter: drop-shadow(0 0 3px rgba(139, 92, 246, 0.8));
    animation: node-appear 1s ease-out forwards, node-glow 2.5s ease-in-out infinite;
    opacity: 0;
}

.network-node.node-main {
    fill: rgba(139, 92, 246, 1);
    filter: drop-shadow(0 0 5px rgba(139, 92, 246, 1));
    animation: node-appear 1s ease-out forwards, node-glow-main 2s ease-in-out infinite;
}

.network-node.node-medium {
    fill: rgba(139, 92, 246, 0.9);
    filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.9));
}

.network-node.node-small {
    fill: rgba(139, 92, 246, 0.85);
    filter: drop-shadow(0 0 3px rgba(139, 92, 246, 0.7));
}

.network-node.node-tiny {
    fill: rgba(139, 92, 246, 0.7);
    filter: drop-shadow(0 0 2px rgba(139, 92, 246, 0.6));
}

.network-node:nth-of-type(1) { animation-delay: 0s, 0s; }
.network-node:nth-of-type(2) { animation-delay: 0.1s, 0.2s; }
.network-node:nth-of-type(3) { animation-delay: 0.2s, 0.4s; }
.network-node:nth-of-type(4) { animation-delay: 0.3s, 0.6s; }
.network-node:nth-of-type(5) { animation-delay: 0.4s, 0.8s; }
.network-node:nth-of-type(6) { animation-delay: 0.5s, 1s; }
.network-node:nth-of-type(7) { animation-delay: 0.6s, 1.2s; }
.network-node:nth-of-type(8) { animation-delay: 0.7s, 1.4s; }
.network-node:nth-of-type(9) { animation-delay: 0.8s, 1.6s; }
.network-node:nth-of-type(10) { animation-delay: 0.9s, 1.8s; }
.network-node:nth-of-type(11) { animation-delay: 1s, 2s; }
.network-node:nth-of-type(12) { animation-delay: 1.1s, 2.2s; }
.network-node:nth-of-type(13) { animation-delay: 1.2s, 2.4s; }
.network-node:nth-of-type(14) { animation-delay: 1.3s, 2.6s; }
.network-node:nth-of-type(15) { animation-delay: 1.4s, 2.8s; }
.network-node:nth-of-type(16) { animation-delay: 1.5s, 3s; }
.network-node:nth-of-type(17) { animation-delay: 1.6s, 0.1s; }
.network-node:nth-of-type(18) { animation-delay: 1.7s, 0.3s; }
.network-node:nth-of-type(19) { animation-delay: 1.8s, 0.5s; }
.network-node:nth-of-type(20) { animation-delay: 1.9s, 0.7s; }
.network-node:nth-of-type(21) { animation-delay: 2s, 0.9s; }
.network-node:nth-of-type(22) { animation-delay: 2.1s, 1.1s; }
.network-node:nth-of-type(23) { animation-delay: 2.2s, 1.3s; }
.network-node:nth-of-type(24) { animation-delay: 2.3s, 1.5s; }
.network-node:nth-of-type(25) { animation-delay: 2.4s, 1.7s; }
.network-node:nth-of-type(26) { animation-delay: 2.5s, 1.9s; }
.network-node:nth-of-type(27) { animation-delay: 2.6s, 2.1s; }
.network-node:nth-of-type(28) { animation-delay: 2.7s, 2.3s; }
.network-node:nth-of-type(29) { animation-delay: 2.8s, 2.5s; }
.network-node:nth-of-type(30) { animation-delay: 2.9s, 2.7s; }

@keyframes node-appear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes node-glow {
    0%, 100% {
        opacity: 0.85;
        filter: drop-shadow(0 0 3px rgba(139, 92, 246, 0.7));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 6px rgba(139, 92, 246, 1));
    }
}

@keyframes node-glow-main {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(139, 92, 246, 1));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(139, 92, 246, 1));
    }
}

/* Animated Stripes */
.animated-stripe {
    position: absolute;
    width: 2px;
    height: 150%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(139, 92, 246, 0.4) 20%,
        rgba(236, 72, 153, 0.4) 40%,
        rgba(139, 92, 246, 0.5) 50%,
        rgba(236, 72, 153, 0.4) 60%,
        rgba(139, 92, 246, 0.4) 80%,
        transparent 100%
    );
    opacity: 0.5;
    z-index: 1;
    animation: stripe-move 14s linear infinite;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.animated-stripe::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1.5px;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(139, 92, 246, 0.25) 20%,
        rgba(236, 72, 153, 0.25) 40%,
        rgba(139, 92, 246, 0.3) 50%,
        rgba(236, 72, 153, 0.25) 60%,
        rgba(139, 92, 246, 0.25) 80%,
        transparent 100%
    );
    filter: blur(3px);
}

.animated-stripe::after {
    content: '';
    position: absolute;
    top: 0;
    left: -0.5px;
    width: 3px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(99, 102, 241, 0.2) 25%,
        rgba(99, 102, 241, 0.25) 50%,
        rgba(99, 102, 241, 0.2) 75%,
        transparent 100%
    );
    filter: blur(1.5px);
}

.stripe-1 {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.stripe-2 {
    left: 35%;
    animation-delay: -3s;
    animation-duration: 16s;
}

.stripe-3 {
    left: 55%;
    animation-delay: -6s;
    animation-duration: 18s;
}

.stripe-4 {
    left: 75%;
    animation-delay: -9s;
    animation-duration: 15s;
}

@keyframes stripe-move {
    0% {
        transform: translateY(-50%);
        opacity: 0;
    }
    5% {
        opacity: 0.6;
    }
    95% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(calc(100vh - 50%));
        opacity: 0;
    }
}

/* HEX Text Elements */
.hex-text {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 2px;
    animation: hex-float 20s ease-in-out infinite;
    user-select: none;
    z-index: 2;
}

.hex-text:nth-child(5) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.hex-text:nth-child(6) {
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}

.hex-text:nth-child(7) {
    bottom: 30%;
    left: 12%;
    animation-delay: 10s;
}

@keyframes hex-float {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.08;
    }
    50% {
        transform: translate(25px, -30px);
        opacity: 0.12;
    }
}

/* Crypto Words */
.crypto-word {
    position: absolute;
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: word-drift 25s ease-in-out infinite;
    user-select: none;
    z-index: 2;
}

.crypto-word:nth-child(8) {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.crypto-word:nth-child(9) {
    top: 50%;
    right: 20%;
    animation-delay: 8s;
}

.crypto-word:nth-child(10) {
    bottom: 30%;
    left: 25%;
    animation-delay: 16s;
}

@keyframes word-drift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.08;
    }
    33% {
        transform: translate(-30px, 25px) scale(1.03);
        opacity: 0.12;
    }
    66% {
        transform: translate(30px, -25px) scale(0.97);
        opacity: 0.10;
    }
}

/* Glow Particles */
.glow-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    animation: particle-glow 10s ease-in-out infinite;
    opacity: 0.3;
    z-index: 2;
}

.glow-particle:nth-child(11) {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.glow-particle:nth-child(12) {
    top: 55%;
    right: 15%;
    animation-delay: 2.5s;
}

.glow-particle:nth-child(13) {
    bottom: 35%;
    left: 20%;
    animation-delay: 5s;
}

.glow-particle:nth-child(14) {
    top: 70%;
    right: 20%;
    animation-delay: 7.5s;
}

@keyframes particle-glow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(15px, -25px) scale(1.2);
        opacity: 0.4;
    }
    50% {
        transform: translate(-12px, -40px) scale(1.3);
        opacity: 0.35;
    }
    75% {
        transform: translate(-25px, -15px) scale(1.1);
        opacity: 0.38;
    }
}

/* iGaming Elements */
.igaming-card {
    position: absolute;
    width: 70px;
    height: 98px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: card-float 18s ease-in-out infinite;
    user-select: none;
    filter: blur(0.5px);
    opacity: 0.25;
    z-index: 2;
}

.igaming-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-12deg);
}

.igaming-card.card-2 {
    bottom: 25%;
    right: 12%;
    animation-delay: 8s;
    transform: rotate(15deg);
}

@keyframes card-float {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--card-rotate, 0deg));
        opacity: 0.25;
    }
    33% {
        transform: translate(30px, -40px) rotate(calc(var(--card-rotate, 0deg) + 4deg));
        opacity: 0.3;
    }
    66% {
        transform: translate(-20px, -60px) rotate(calc(var(--card-rotate, 0deg) - 4deg));
        opacity: 0.28;
    }
}

/* Poker Chips */
.poker-chip-bg {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1),
                inset 0 0 12px rgba(255, 255, 255, 0.05);
    animation: chip-rotate-bg 20s linear infinite;
    opacity: 0.2;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    z-index: 2;
}

.poker-chip-bg.chip-1 {
    top: 40%;
    left: 20%;
    animation-delay: 0s;
}

@keyframes chip-rotate-bg {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(25px, -30px) rotate(90deg) scale(1.03);
    }
    50% {
        transform: translate(-20px, -55px) rotate(180deg) scale(1.06);
    }
    75% {
        transform: translate(-40px, -30px) rotate(270deg) scale(1.03);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

/* Dice */
.dice-bg {
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.06) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    animation: dice-float-bg 15s ease-in-out infinite;
    opacity: 0.2;
    user-select: none;
    filter: blur(0.5px);
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.dice-bg.dice-1 {
    top: 60%;
    right: 18%;
    animation-delay: 0s;
    transform: rotate(10deg);
}

@keyframes dice-float-bg {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--dice-rotate-bg, 0deg)) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: translate(35px, -25px) rotate(calc(var(--dice-rotate-bg, 0deg) + 40deg)) scale(1.05);
        opacity: 0.25;
    }
    66% {
        transform: translate(-25px, -50px) rotate(calc(var(--dice-rotate-bg, 0deg) - 25deg)) scale(1.08);
        opacity: 0.23;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.title-line {
    display: block;
}

.title-line.subtitle {
    display: none;
}

.hero-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-tag {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.hero-tag-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    line-height: 1;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--text-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.btn-join {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-join:hover::before {
    left: 100%;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #7c8ef0 0%, #8a5fb8 100%);
}

.btn-buy {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-blue);
    padding: calc(1rem - 2px) calc(2.5rem - 2px);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    box-sizing: border-box;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-blue);
    transition: width 0.3s;
    z-index: -1;
}

.btn-buy:hover::before {
    width: 100%;
}

.btn-buy:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    border-color: #0056b3;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    min-width: 180px;
}

/* Moon Landscape */
.moon-landscape {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    height: 350px;
    z-index: 5;
    overflow: hidden;
}

.moon-glow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 300px;
    background: radial-gradient(ellipse at center, 
        rgba(59, 130, 246, 0.5) 0%,
        rgba(107, 70, 193, 0.4) 25%,
        rgba(30, 64, 175, 0.3) 50%,
        transparent 80%);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.moon-landscape::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: 
        linear-gradient(to top,
            rgba(30, 64, 175, 0.9) 0%,
            rgba(59, 130, 246, 0.7) 20%,
            rgba(107, 70, 193, 0.6) 40%,
            rgba(30, 64, 175, 0.5) 60%,
            transparent 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    clip-path: polygon(
        0% 100%, 
        3% 88%, 6% 92%, 9% 85%, 12% 90%, 
        15% 82%, 18% 87%, 21% 78%, 24% 83%, 
        27% 75%, 30% 80%, 33% 72%, 36% 77%, 
        39% 68%, 42% 73%, 45% 65%, 48% 70%, 
        51% 62%, 54% 67%, 57% 58%, 60% 63%, 
        63% 55%, 66% 60%, 69% 52%, 72% 57%, 
        75% 48%, 78% 53%, 81% 45%, 84% 50%, 
        87% 42%, 90% 47%, 93% 38%, 96% 43%, 
        100% 35%, 100% 100%, 0% 100%
    );
    box-shadow: 0 -20px 60px rgba(59, 130, 246, 0.3);
}

/* Astronaut */
.astronaut {
    position: absolute;
    left: 12%;
    bottom: 100px;
    z-index: 6;
    animation: float 3s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

.astronaut-body {
    width: 90px;
    height: 140px;
    background: var(--text-white);
    border-radius: 45px 45px 25px 25px;
    position: relative;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 
                0 0 60px rgba(59, 130, 246, 0.3);
    filter: brightness(1.1);
}

.astronaut-body::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 35px;
    background: var(--bg-dark);
    border-radius: 12px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.astronaut-body::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
    background: var(--bg-dark);
    border-radius: 15px;
}

.astronaut-helmet {
    width: 80px;
    height: 80px;
    background: var(--text-white);
    border-radius: 50%;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.7), 
                0 0 70px rgba(59, 130, 246, 0.4);
    filter: brightness(1.15);
}

.astronaut-helmet::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 40px;
    background: linear-gradient(to bottom,
        rgba(59, 130, 246, 0.4) 0%,
        rgba(59, 130, 246, 0.2) 50%,
        rgba(59, 130, 246, 0.3) 100%);
    border-radius: 28px 28px 22px 22px;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.cat-ears {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid var(--text-white);
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.cat-ears::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid var(--text-white);
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.cat-ears::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid var(--text-white);
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.astronaut-small {
    position: absolute;
    right: 18%;
    bottom: 110px;
    width: 50px;
    height: 75px;
    background: var(--text-white);
    border-radius: 25px 25px 12px 12px;
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    filter: blur(1px);
}

.astronaut-small::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--text-white);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 10;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-white);
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-white);
}

/* Features Section */
.features-section {
    padding: 0 2rem 6rem;
    background: var(--bg-dark);
    min-height: 100vh;
}

.features-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    z-index: 0;
    user-select: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

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

.feature-graphic {
    height: 180px;
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.graphic-kpi,
.graphic-p2p,
.graphic-vpn,
.graphic-verification {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
}

.graphic-single {
    align-items: flex-start;
    padding-top: 2rem;
}

.glow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.glow-dot.blue {
    background: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8),
                0 0 40px rgba(59, 130, 246, 0.5),
                0 0 60px rgba(59, 130, 246, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8),
                    0 0 40px rgba(59, 130, 246, 0.5),
                    0 0 60px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 1),
                    0 0 60px rgba(59, 130, 246, 0.7),
                    0 0 90px rgba(59, 130, 246, 0.5);
    }
}

.dotted-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: rotate-halo 20s linear infinite;
}

.dotted-halo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@keyframes rotate-halo {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.network-svg,
.telegram-svg,
.kpi-svg,
.p2p-svg,
.vpn-svg,
.verification-svg {
    width: 100%;
    height: 100%;
}

.network-svg .glow,
.telegram-svg .glow {
    filter: drop-shadow(0 0 4px currentColor);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.telegram-icon {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
    animation: telegram-float 3s ease-in-out infinite;
}

@keyframes telegram-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.igaming-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.igaming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.igaming-container {
    max-width: 1400px;
    margin: 0 auto;
}

.igaming-hero {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.igaming-hero-icon {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    animation: float-glow 3s ease-in-out infinite;
}

@keyframes float-glow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.igaming-orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(59, 130, 246, 0.8) 30%, rgba(107, 70, 193, 0.6) 60%, transparent 100%);
    border-radius: 50%;
    filter: blur(20px);
    animation: orb-pulse-igaming 4s ease-in-out infinite;
}

@keyframes orb-pulse-igaming {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.igaming-logo-circle {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, rgba(168, 85, 247, 0.1) 50%, transparent 70%);
    border-radius: 50%;
}

.igaming-logo-large-d-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 3px rgba(147, 51, 234, 0.7);
    z-index: 0;
    filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.8));
    font-family: 'Arial', sans-serif;
    letter-spacing: 0;
    line-height: 1;
}

.igaming-logo-text-neon {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(147, 51, 234, 1),
                 0 0 40px rgba(147, 51, 234, 0.9),
                 0 0 60px rgba(147, 51, 234, 0.7),
                 0 0 80px rgba(147, 51, 234, 0.5);
    letter-spacing: 0.2em;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    filter: drop-shadow(0 0 15px rgba(147, 51, 234, 1));
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, rgba(147, 51, 234, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neon-glow-igaming 2s ease-in-out infinite alternate;
}

@keyframes neon-glow-igaming {
    from {
        filter: drop-shadow(0 0 15px rgba(147, 51, 234, 1));
        text-shadow: 0 0 20px rgba(147, 51, 234, 1),
                     0 0 40px rgba(147, 51, 234, 0.9),
                     0 0 60px rgba(147, 51, 234, 0.7),
                     0 0 80px rgba(147, 51, 234, 0.5);
    }
    to {
        filter: drop-shadow(0 0 25px rgba(147, 51, 234, 1));
        text-shadow: 0 0 30px rgba(147, 51, 234, 1),
                     0 0 50px rgba(147, 51, 234, 1),
                     0 0 70px rgba(147, 51, 234, 0.9),
                     0 0 90px rgba(147, 51, 234, 0.7);
    }
}

.igaming-hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.igaming-title-main {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.igaming-title-sub {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.igaming-certificate-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.igaming-certificate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.igaming-certificate-btn:hover::before {
    left: 100%;
}

.igaming-certificate-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

.igaming-certificate-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.certificate-btn-text {
    position: relative;
    z-index: 1;
}

.igaming-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.igaming-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.igaming-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.igaming-info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
}

.igaming-info-card:hover::before {
    opacity: 1;
}

.igaming-info-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.igaming-info-icon svg {
    width: 100%;
    height: 100%;
}

.igaming-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.igaming-info-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.igaming-heart-section {
    margin-bottom: 6rem;
}

.igaming-heart-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
}

.heart-title-accent {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heart-title-main {
    color: rgba(255, 255, 255, 0.9);
}

.igaming-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.igaming-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.igaming-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #a855f7, #ec4899);
    opacity: 0;
    transition: opacity 0.4s;
}

.igaming-feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(8px);
}

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

.igaming-feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
}

.igaming-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.igaming-feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.igaming-conclusion {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.igaming-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.igaming-conclusion p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.igaming-games-section {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2);
}

.igaming-games-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: casino-glow 8s ease-in-out infinite;
}

@keyframes casino-glow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.6;
    }
}

.igaming-games-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.igaming-games-menu {
    display: flex;
    flex-direction: column;
}

.igaming-games-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.game-category-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.game-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    transition: left 0.5s;
}

.game-category-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}

.game-category-btn:hover::before {
    left: 100%;
}

.igaming-casino-elements {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.playing-card {
    position: absolute;
    width: 80px;
    height: 112px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1;
}

.card-1 {
    top: 5%;
    right: 10%;
    animation: card-float 3s ease-in-out infinite;
}

.card-2 {
    bottom: 5%;
    left: 5%;
    animation: card-float-2 3s ease-in-out infinite 1.5s;
}

.card-3 {
    top: 5%;
    left: 5%;
    animation: card-float-3 3.5s ease-in-out infinite 0.5s;
    transform: rotate(20deg);
}

.card-4 {
    bottom: 5%;
    right: 5%;
    animation: card-float-4 3.2s ease-in-out infinite 1s;
    transform: rotate(-25deg);
}

.card-5 {
    top: 25%;
    right: 5%;
    animation: card-float-5 3.8s ease-in-out infinite 0.8s;
    transform: rotate(15deg);
}

.card-6 {
    top: 25%;
    left: 5%;
    animation: card-float-6 3.3s ease-in-out infinite 1.2s;
    transform: rotate(-10deg);
}

@keyframes card-float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-10px) rotate(-12deg);
    }
}

@keyframes card-float-2 {
    0%, 100% {
        transform: translateY(0) rotate(10deg);
    }
    50% {
        transform: translateY(-8px) rotate(13deg);
    }
}

@keyframes card-float-3 {
    0%, 100% {
        transform: translateY(0) rotate(20deg);
    }
    50% {
        transform: translateY(-12px) rotate(18deg);
    }
}

@keyframes card-float-4 {
    0%, 100% {
        transform: translateY(0) rotate(-25deg);
    }
    50% {
        transform: translateY(-9px) rotate(-22deg);
    }
}

@keyframes card-float-5 {
    0%, 100% {
        transform: translateY(0) rotate(15deg);
    }
    50% {
        transform: translateY(-11px) rotate(17deg);
    }
}

@keyframes card-float-6 {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-7px) rotate(-8deg);
    }
}

.card-back {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.card-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.card-face {
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.card-corner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    line-height: 1;
}

.card-corner-top {
    top: 0.5rem;
    left: 0.5rem;
}

.card-corner-bottom {
    bottom: 0.5rem;
    right: 0.5rem;
    transform: rotate(180deg);
}

.card-value-small {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
}

.card-suit {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}

.card-red {
    color: #dc2626;
}

.card-black {
    color: #1f2937;
}

.card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.casino-dice {
    position: absolute;
    bottom: 15%;
    right: 20%;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dice {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(168, 85, 247, 0.4);
    position: relative;
    animation: dice-roll 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

.dice-2 {
    animation: dice-roll-2 4.5s ease-in-out infinite 0.5s;
}

.dice-3 {
    animation: dice-roll-3 3.8s ease-in-out infinite 1s;
}

@keyframes dice-roll {
    0%, 100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: rotateX(90deg) rotateY(90deg);
    }
    50% {
        transform: rotateX(180deg) rotateY(180deg);
    }
    75% {
        transform: rotateX(270deg) rotateY(270deg);
    }
}

.dice-face {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    padding: 6px;
}

.dice-dot {
    width: 8px;
    height: 8px;
    background: #1f2937;
    border-radius: 50%;
    margin: auto;
}

/* Dice 1 (5 dots) */
.dice-1 .dice-dot:nth-child(1) { grid-column: 1; grid-row: 1; }
.dice-1 .dice-dot:nth-child(2) { grid-column: 3; grid-row: 1; }
.dice-1 .dice-dot:nth-child(3) { grid-column: 2; grid-row: 2; }
.dice-1 .dice-dot:nth-child(4) { grid-column: 1; grid-row: 3; }
.dice-1 .dice-dot:nth-child(5) { grid-column: 3; grid-row: 3; }

/* Dice 2 (3 dots) */
.dice-2 .dice-dot:nth-child(1) { grid-column: 1; grid-row: 1; }
.dice-2 .dice-dot:nth-child(2) { grid-column: 2; grid-row: 2; }
.dice-2 .dice-dot:nth-child(3) { grid-column: 3; grid-row: 3; }

/* Dice 3 (6 dots) */
.dice-3 .dice-dot:nth-child(1) { grid-column: 1; grid-row: 1; }
.dice-3 .dice-dot:nth-child(2) { grid-column: 3; grid-row: 1; }
.dice-3 .dice-dot:nth-child(3) { grid-column: 1; grid-row: 2; }
.dice-3 .dice-dot:nth-child(4) { grid-column: 3; grid-row: 2; }
.dice-3 .dice-dot:nth-child(5) { grid-column: 1; grid-row: 3; }
.dice-3 .dice-dot:nth-child(6) { grid-column: 3; grid-row: 3; }

@keyframes dice-roll-2 {
    0%, 100% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: rotateX(90deg) rotateY(45deg) rotateZ(45deg);
    }
    50% {
        transform: rotateX(180deg) rotateY(90deg) rotateZ(90deg);
    }
    75% {
        transform: rotateX(270deg) rotateY(135deg) rotateZ(135deg);
    }
}

@keyframes dice-roll-3 {
    0%, 100% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% {
        transform: rotateX(45deg) rotateY(90deg) rotateZ(45deg);
    }
    50% {
        transform: rotateX(90deg) rotateY(180deg) rotateZ(90deg);
    }
    75% {
        transform: rotateX(135deg) rotateY(270deg) rotateZ(135deg);
    }
}

.igaming-launch-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.igaming-launch-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.igaming-launch-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4),
                inset 0 0 20px rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
    animation: date-pulse 2s ease-in-out infinite;
}

@keyframes date-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.4),
                    inset 0 0 20px rgba(168, 85, 247, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(168, 85, 247, 0.6),
                    inset 0 0 30px rgba(168, 85, 247, 0.2);
    }
}

.partners-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.partners-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.badge-primary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    position: relative;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--text-white);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.badge-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--bg-dark);
    border-radius: 50%;
}

.badge-primary::before,
.badge-primary::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
}

.badge-primary::before {
    left: -30px;
    border-radius: 2px 0 0 2px;
}

.badge-primary::after {
    right: -30px;
    border-radius: 0 2px 2px 0;
}

.badge-trustpilot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.trustpilot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trustpilot-text {
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffc107;
    font-size: 1rem;
}

.star.filled {
    opacity: 1;
}

.star.half {
    opacity: 0.5;
}

.partners-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4rem;
    line-height: 1.2;
}

.partners-marquee-wrapper {
    overflow: hidden;
    position: relative;
    margin: 3rem 0;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-marquee {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s;
    padding: 0 1rem;
}

.partner-logo:hover {
    color: var(--text-white);
}

.btn-partners {
    margin-top: 3rem;
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-partners:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* DeFi Hub Section */
.defi-hub-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.defi-hub-container {
    max-width: 1400px;
    margin: 0 auto;
}

.defi-hub-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.defi-hub-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tokenomics-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
}

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

.tokenomics-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tokenomics-icon svg {
    width: 100%;
    height: 100%;
}

.tokenomics-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tokenomics-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.tokenomics-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
}

.tokenomics-note p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.interesting-facts-section {
    margin-top: 6rem;
}

.interesting-facts-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.fact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.fact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}

.fact-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.fact-icon svg {
    width: 100%;
    height: 100%;
}

.fact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.staking-section {
    margin-top: 6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
}

.staking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.staking-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.staking-yield {
    text-align: right;
}

.staking-yield-value {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.staking-yield-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.staking-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.staking-progress {
    margin-bottom: 2.5rem;
}

.staking-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.staking-progress-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.staking-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    border-radius: 6px;
    width: 0%;
    transition: width 2s ease-out;
}

.staking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.staking-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.staking-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.staking-check svg {
    width: 14px;
    height: 14px;
}

/* Ways to Earn Section */
.earn-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

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

.earn-section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.earn-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.earn-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.earn-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.earn-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
    z-index: 2;
}

.earn-slide-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    user-select: none;
}

.earn-slide-icon {
    width: 180px;
    height: 180px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.earn-slide-icon svg {
    width: 100%;
    height: 100%;
}

.earn-slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.earn-slide-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.earn-slider-arrow {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-white);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.earn-slider-arrow:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border-color: rgba(168, 85, 247, 0.4);
    transform: scale(1.1);
}

.earn-slider-arrow:active {
    transform: scale(0.95);
}

.earn-slider-arrow svg {
    width: 24px;
    height: 24px;
}

.earn-slider-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.earn-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.earn-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.earn-indicator:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.earn-indicator.active {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    width: 40px;
    border-radius: 6px;
    border-color: rgba(168, 85, 247, 0.5);
}

.earn-for-whom-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.earn-for-whom-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.earn-for-whom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.earn-for-whom-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
}

.earn-for-whom-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.earn-for-whom-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
}

.earn-for-whom-item:hover::before {
    opacity: 1;
}

.defi-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.defi-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.defi-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.defi-feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

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

.defi-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.defi-feature-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.defi-feature-graphic {
    height: 200px;
    margin-top: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coins-svg,
.network-complex-svg,
.telegram-sphere-svg {
    width: 100%;
    height: 100%;
}

.coins-svg .glow-dot,
.network-complex-svg .glow-dot,
.telegram-sphere-svg .glow-dot {
    filter: drop-shadow(0 0 4px currentColor);
    animation: dot-pulse 2s ease-in-out infinite;
}

.coin-left,
.coin-right {
    animation: coin-float 3s ease-in-out infinite;
}

.coin-right {
    animation-delay: 1.5s;
}

@keyframes coin-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.coin-stack-left,
.coin-stack-center,
.coin-stack-right {
    animation: stack-pulse 2s ease-in-out infinite;
}

.coin-stack-center {
    animation-delay: 0.7s;
}

.coin-stack-right {
    animation-delay: 1.4s;
}

@keyframes stack-pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.telegram-sphere-svg circle:first-of-type {
    animation: sphere-pulse 3s ease-in-out infinite;
}

@keyframes sphere-pulse {
    0%, 100% { 
        filter: url(#glow3);
        transform: scale(1);
    }
    50% { 
        filter: url(#glow3);
        transform: scale(1.05);
    }
}

/* Three Ways Section */
.three-ways-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.wave-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top,
        rgba(59, 130, 246, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        transparent 100%);
    clip-path: polygon(0% 30%, 10% 25%, 20% 30%, 30% 20%, 40% 28%, 50% 22%, 60% 26%, 70% 18%, 80% 24%, 90% 20%, 100% 25%, 100% 100%, 0% 100%);
    animation: wave 8s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        clip-path: polygon(0% 30%, 10% 25%, 20% 30%, 30% 20%, 40% 28%, 50% 22%, 60% 26%, 70% 18%, 80% 24%, 90% 20%, 100% 25%, 100% 100%, 0% 100%);
    }
    50% {
        clip-path: polygon(0% 28%, 10% 23%, 20% 28%, 30% 18%, 40% 26%, 50% 20%, 60% 24%, 70% 16%, 80% 22%, 90% 18%, 100% 23%, 100% 100%, 0% 100%);
    }
}

.three-ways-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.three-ways-header {
    text-align: center;
    margin-bottom: 4rem;
}

.three-ways-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.three-ways-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.three-ways-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

.for-whom-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
    height: 100%;
}

.for-whom-section.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.for-whom-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.for-whom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.for-whom-item {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.for-whom-item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.way-card-right {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
    height: 100%;
}

.for-whom-section.fade-in-up,
.way-card-right.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.way-label {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.liquidity-metrics-card {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.token-pair-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    transition: background 0.3s;
}

.token-pair-selector:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-arrow {
    font-size: 0.75rem;
    opacity: 0.7;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.metric-value.green {
    color: #10b981;
}

.add-liquidity-btn {
    width: 100%;
    background: var(--primary-blue);
    color: var(--text-white);
    border: none;
    padding: 0.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-liquidity-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.token-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.token-name-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.token-symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.token-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.token-change {
    text-align: right;
}

.change-amount {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.change-percent {
    font-size: 1.1rem;
    font-weight: 600;
}

.change-percent.red {
    color: #ef4444;
}

.price-chart-container {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 0;
}

.price-chart-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.way-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.way-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.way-button {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 2rem;
    width: fit-content;
}

.way-button:hover {
    background: var(--primary-blue);
    color: var(--text-white);
    transform: translateX(5px);
}

.way-mockup {
    margin-top: auto;
    padding-top: 2rem;
}

/* Mobile Mockup */
.mobile-mockup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-logo {
    font-weight: 600;
    color: var(--text-white);
}

.mobile-icons {
    display: flex;
    gap: 0.5rem;
}

.mobile-content {
    padding: 0 0.5rem;
}

.swap-section {
    margin-bottom: 1rem;
}

.swap-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swap-input-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.token-selector {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.token-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

.amount-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.amount-input input {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    outline: none;
}

.max-btn {
    background: rgba(59, 130, 246, 0.2);
    color: var(--primary-blue);
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.amount-value {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.swap-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin: 0.5rem 0;
}

.exchange-rate {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Liquidity Chart */
.liquidity-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 150px;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-blue), rgba(59, 130, 246, 0.5));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: bar-grow 1s ease-out;
}

@keyframes bar-grow {
    from { height: 0; }
    to { height: 100%; }
}

/* Token Stats */
.token-stats {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.stat-change {
    font-size: 1.2rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 1rem;
}

.token-chart-mini {
    height: 60px;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

/* Roadmap Section */
.roadmap-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.roadmap-container {
    max-width: 1400px;
    margin: 0 auto;
}

.roadmap-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 3rem;
}

.roadmap-timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-label-left,
.timeline-label-right {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.timeline-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 2rem;
    position: relative;
    --progress: 0%;
}

.timeline-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: var(--progress, 0%);
    height: 100%;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.roadmap-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.roadmap-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.roadmap-slide {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 0;
    flex-shrink: 0;
}

.roadmap-circle {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(107, 70, 193, 0.15) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    padding: 2.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.roadmap-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(107, 70, 193, 0.5));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.roadmap-circle:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
}

.roadmap-circle:hover::before {
    opacity: 1;
}

.roadmap-quarter {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.roadmap-item-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.roadmap-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-white);
    transition: all 0.3s;
    flex-shrink: 0;
}

.roadmap-arrow:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.roadmap-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.roadmap-arrow.disabled:hover {
    transform: none;
}

.roadmap-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.roadmap-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.roadmap-indicator.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* Security Section */
.security-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.security-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-content {
    display: flex;
    align-items: center;
}

.security-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
}

.title-line {
    display: block;
}

.security-cards-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
    isolation: isolate;
}

.security-cards-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.security-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px) scale(0.95);
    pointer-events: none;
    z-index: 1;
    transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 600ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 600ms;
    will-change: opacity, transform;
}

.security-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 2;
    transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 600ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 0s;
}

.security-card.entering {
    opacity: 0;
    visibility: visible;
    transform: translateY(50px) scale(0.95);
    z-index: 2;
    transition: none;
}

.security-card.leaving {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px) scale(0.95);
    z-index: 0;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 400ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 400ms;
    pointer-events: none;
}

.security-card:not(.active):not(.entering):not(.leaving) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
}

.security-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.security-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    flex-grow: 1;
}

.security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.security-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.security-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.security-list-section {
    margin-top: 1.5rem;
}

.security-list-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.security-highlight-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
}

.pools-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.pool-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pool-name {
    font-weight: 600;
    color: var(--text-white);
    flex: 1;
}

.pool-arrow {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.pool-percentage {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.security-graphic {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}

.glowing-sphere {
    position: relative;
    width: 120px;
    height: 120px;
}

.sphere-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.9), rgba(59, 130, 246, 0.5));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6),
                0 0 80px rgba(59, 130, 246, 0.4);
    animation: sphere-pulse 3s ease-in-out infinite;
}

@keyframes sphere-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6),
                    0 0 80px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 60px rgba(59, 130, 246, 0.8),
                    0 0 120px rgba(59, 130, 246, 0.6);
    }
}

.sphere-ring {
    width: 120px;
    height: 40px;
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    animation: ring-rotate 4s linear infinite;
}

@keyframes ring-rotate {
    from {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
    }
}

/* Audited Smart Contract Section */
.audited-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.audited-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cosmic-orbit {
    position: relative;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 10;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(59, 130, 246, 0.8) 30%, rgba(107, 70, 193, 0.6) 60%, transparent 100%);
    border-radius: 50%;
    filter: blur(20px);
    animation: orb-pulse 4s ease-in-out infinite;
}

@keyframes orb-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.orb-content {
    position: relative;
    z-index: 2;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, rgba(147, 51, 234, 0.1) 50%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 60px rgba(147, 51, 234, 0.5),
                0 0 120px rgba(147, 51, 234, 0.3),
                inset 0 0 60px rgba(147, 51, 234, 0.1);
}

.drazze-logo-circle {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.logo-large-d-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 4px rgba(147, 51, 234, 0.7);
    z-index: 0;
    filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.8));
    font-family: 'Arial', sans-serif;
    letter-spacing: 0;
    line-height: 1;
}

.logo-text-neon {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(147, 51, 234, 1),
                 0 0 40px rgba(147, 51, 234, 0.9),
                 0 0 60px rgba(147, 51, 234, 0.7),
                 0 0 80px rgba(147, 51, 234, 0.5);
    letter-spacing: 0.2em;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    filter: drop-shadow(0 0 15px rgba(147, 51, 234, 1));
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, rgba(147, 51, 234, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neon-glow 2s ease-in-out infinite alternate;
}

@keyframes neon-glow {
    from {
        filter: drop-shadow(0 0 15px rgba(147, 51, 234, 1));
        text-shadow: 0 0 20px rgba(147, 51, 234, 1),
                     0 0 40px rgba(147, 51, 234, 0.9),
                     0 0 60px rgba(147, 51, 234, 0.7);
    }
    to {
        filter: drop-shadow(0 0 25px rgba(147, 51, 234, 1));
        text-shadow: 0 0 30px rgba(147, 51, 234, 1),
                     0 0 60px rgba(147, 51, 234, 1),
                     0 0 90px rgba(147, 51, 234, 0.8);
    }
}

/* Orbital planets */
.orbital-planet {
    position: absolute;
    animation: orbit 20s linear infinite;
}

.planet-1 {
    top: 10%;
    left: 15%;
    animation-duration: 25s;
}

.planet-2 {
    top: 15%;
    right: 20%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.planet-3 {
    top: 50%;
    right: 10%;
    animation-duration: 35s;
}

.planet-4 {
    bottom: 15%;
    left: 10%;
    animation-duration: 28s;
    animation-direction: reverse;
}

.planet-5 {
    bottom: 20%;
    left: 50%;
    animation-duration: 32s;
}

.planet-6 {
    bottom: 10%;
    right: 15%;
    animation-duration: 27s;
    animation-direction: reverse;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(300px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

.planet-striped {
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, 
        rgba(59, 130, 246, 0.8) 0%, 
        rgba(59, 130, 246, 0.8) 30%,
        rgba(255, 255, 255, 0.6) 30%,
        rgba(255, 255, 255, 0.6) 70%,
        rgba(59, 130, 246, 0.8) 70%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.planet-textured {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(59, 130, 246, 0.7) 50%,
        rgba(107, 70, 193, 0.5) 100%);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
    position: relative;
}

.planet-textured::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 20%;
    height: 20%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.planet-crescent {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at 20% 50%, 
        rgba(59, 130, 246, 0.9) 0%,
        rgba(59, 130, 246, 0.5) 50%,
        transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    position: relative;
}

.planet-crescent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30%;
    width: 70%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.planet-dot {
    width: 20px;
    height: 20px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
}

.planet-moon {
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
    animation: moon-orbit 5s linear infinite;
}

.moon-1 {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.moon-2 {
    top: -20px;
    right: -20px;
}

.moon-3 {
    bottom: -20px;
    left: -20px;
}

.moon-4 {
    top: -20px;
    left: -20px;
}

@keyframes moon-orbit {
    from {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Orbital paths */
.orbital-planet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.faq-title-line {
    display: block;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-item.active {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span:first-child {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    flex: 1;
    line-height: 1.5;
}

.faq-item.active .faq-question span:first-child {
    color: #a855f7;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
}

.faq-item.active .faq-icon {
    color: #a855f7;
    transform: rotate(45deg);
    background: rgba(168, 85, 247, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-logo-icon {
    width: auto;
    height: 32px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link:hover {
    color: var(--text-white);
}

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

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

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-language:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.chevron {
    font-size: 0.75rem;
    opacity: 0.7;
}

.language-current {
    font-weight: 500;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: var(--text-white);
}

/* Responsive */
@media (max-width: 1024px) {
    /* Loading Screen - Tablet */
    .loading-title {
        font-size: clamp(4rem, 15vw, 12rem);
        letter-spacing: 0.8rem;
    }
    
    .loading-progress {
        font-size: clamp(3.5rem, 12vw, 10rem);
    }
    
    .loading-dollar {
        font-size: clamp(3.5rem, 12vw, 10rem);
    }
    
    .loading-number {
        font-size: clamp(3.5rem, 12vw, 10rem);
        min-width: 1.2em;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-title {
        font-size: 2.5rem;
    }
    
    .partners-marquee {
        gap: 3rem;
    }
    
    .partner-logo {
        font-size: 1.3rem;
    }
    
    .defi-hub-title {
        font-size: 2.5rem;
    }
    
    .defi-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-value {
        font-size: 2rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .staking-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .staking-yield {
        text-align: left;
    }
    
    .staking-yield-value {
        font-size: 3rem;
    }
    
    /* Earn Section - Tablet */
    .earn-section-title {
        font-size: 3rem;
    }
    
    .earn-slide {
        padding: 3rem 2.5rem;
    }
    
    .earn-slide-icon {
        width: 150px;
        height: 150px;
    }
    
    .earn-slide-title {
        font-size: 2.2rem;
    }
    
    .earn-slide-description {
        font-size: 1.1rem;
    }
    
    .staking-section {
        padding: 2rem;
    }
    
    .staking-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .three-ways-title {
        font-size: 2.5rem;
    }
    
    .three-ways-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .for-whom-section {
        padding: 2rem;
    }
    
    .for-whom-title {
        font-size: 1.5rem;
    }
    
    .for-whom-item {
        font-size: 1rem;
    }
    
    .roadmap-title {
        font-size: 2.5rem;
    }
    
    .roadmap-slide {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
    
    .roadmap-circle {
        min-height: 280px;
        padding: 2rem;
    }
    
    .security-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .security-title {
        font-size: 3rem;
    }
    
    .security-cards-wrapper {
        height: 450px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    
    .moon-landscape {
        height: 250px;
    }
    
    .astronaut {
        left: 10%;
        transform: scale(0.8);
    }
    
    /* Crypto Background - Tablet */
    .hex-text {
        font-size: 1rem;
    }
    
    .crypto-word {
        font-size: 1.5rem;
    }
    
    .glow-particle {
        width: 3px;
        height: 3px;
    }
    
    /* iGaming Elements - Tablet */
    .igaming-card {
        width: 60px;
        height: 84px;
        font-size: 1.2rem;
        opacity: 0.22;
    }
    
    .poker-chip-bg {
        width: 48px;
        height: 48px;
        opacity: 0.18;
    }
    
    .dice-bg {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        opacity: 0.18;
    }
}

@media (max-width: 768px) {
    /* Loading Screen - Mobile */
    .loading-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
        letter-spacing: 0.3rem;
    }
    
    .loading-progress {
        font-size: clamp(2rem, 10vw, 4rem);
        gap: 0.25rem;
    }
    
    .loading-dollar {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    
    .loading-number {
        font-size: clamp(2rem, 10vw, 4rem);
        min-width: 1.2em;
    }
    
    .loading-content {
        gap: 2rem;
        padding: 2rem;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 0.75rem 0;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-container {
        padding: 0 1.25rem;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .nav-actions {
        display: flex !important;
        order: -1;
        margin-right: auto;
        margin-left: 0;
        z-index: 1002;
        position: relative;
    }
    
    .nav-actions .language-selector {
        display: flex !important;
        padding: 0.5rem 0.9rem;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-brand {
        display: none !important;
    }
    
    .nav-divider {
        display: none !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000000;
        z-index: 9999;
        padding: 80px 0 30px;
        display: flex;
        flex-direction: column;
        gap: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9998;
        display: none;
    }
    
    .menu-overlay.active {
        display: block;
    }
    
    .nav-link {
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        padding: 20px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-decoration: none;
        transition: background-color 0.3s ease;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .nav-link:hover,
    .nav-link:active {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        margin-left: auto;
        z-index: 1002;
        position: relative;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: #a855f7;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: #a855f7;
    }
    
    
    /* Hero Mobile */
    .hero {
        padding-top: 70px;
        min-height: 100vh;
        padding-bottom: 3rem;
    }
    
    .hero-content {
        padding: 3rem 1.25rem 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 20vw, 8rem);
        line-height: 1;
        margin-bottom: 1.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .title-line {
        display: block;
    }
    
    .title-line.subtitle {
        display: none;
    }
    
    .hero-tags {
        gap: 0.5rem;
        margin: 2rem 0;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 0.4px;
        padding: 0.5rem 0.75rem;
        background: rgba(139, 92, 246, 0.2);
        border-radius: 6px;
        border: 1px solid rgba(139, 92, 246, 0.3);
    }
    
    .hero-tag-separator {
        font-size: 0.65rem;
        opacity: 0.5;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        margin-top: 2.5rem;
    }
    
    .btn-large {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
        border-radius: 14px;
        font-weight: 700;
    }
    
    /* Network Background - Mobile */
    .network-grid {
        background-size: 40px 40px;
        animation: grid-pulse 8s ease-in-out infinite;
    }
    
    .network-svg {
        transform: scale(2.2);
        opacity: 0.4;
        animation: network-drift-mobile 20s ease-in-out infinite;
    }
    
    @keyframes network-drift-mobile {
        0%, 100% {
            transform: scale(2.2) translate(0, 0);
        }
        25% {
            transform: scale(2.3) translate(1%, 1%);
        }
        50% {
            transform: scale(2.2) translate(0, 0);
        }
        75% {
            transform: scale(2.3) translate(-1%, -1%);
        }
    }
    
    .network-node {
        r: 0.5;
        animation: node-appear 0.8s ease-out forwards, node-glow 2s ease-in-out infinite;
    }
    
    .network-node.node-main {
        r: 0.7;
        animation: node-appear 0.8s ease-out forwards, node-glow-main 1.8s ease-in-out infinite;
    }
    
    .network-line {
        stroke-width: 0.15;
        animation: line-flow 4s linear infinite, line-pulse 3s ease-in-out infinite;
    }
    
    .hero-stats {
        margin: 2.5rem 1.25rem 0;
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
        flex-direction: row;
        gap: 0;
        justify-content: space-around;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .stat-label {
        font-size: 0.8rem;
        opacity: 0.75;
        margin-bottom: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.85rem;
        font-weight: 700;
    }
    
    .stat-divider {
        display: block;
        width: 1px;
        height: 45px;
        background: rgba(255, 255, 255, 0.12);
    }
    
    .stat-item {
        min-width: auto;
        width: auto;
        text-align: center;
        flex: 1;
    }
    
    .features-section {
        padding: 4rem 1.25rem;
    }
    
    .features-section-title {
        font-size: 1.75rem;
        margin-bottom: 3rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .feature-card {
        padding: 2.25rem 1.75rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .feature-number {
        font-size: 1rem;
        top: 1.25rem;
        right: 1.25rem;
    }
    
    .feature-graphic {
        height: 150px;
        margin-bottom: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .partners-section {
        padding: 4rem 1.25rem;
    }
    
    .partners-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .partner-logo {
        font-size: 1rem;
    }
    
    .defi-hub-section {
        padding: 4rem 1.25rem;
    }
    
    .defi-hub-title {
        font-size: 1.75rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 1.75rem;
    }
    
    .defi-hub-description {
        font-size: 1rem;
        line-height: 1.75;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .tokenomics-value {
        font-size: 1.85rem;
    }
    
    .tokenomics-card {
        padding: 2rem 1.75rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .interesting-facts-title {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .fact-card {
        padding: 2rem 1.75rem;
        flex-direction: column;
        text-align: center;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .fact-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 1.5rem;
    }
    
    .fact-text {
        font-size: 1.05rem;
        line-height: 1.75;
    }
    
    .staking-section {
        padding: 3.5rem 1.25rem;
        margin-top: 3rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .staking-title {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .staking-yield-value {
        font-size: 2.75rem;
    }
    
    .igaming-section {
        padding: 4rem 1.25rem;
    }
    
    .igaming-title-main {
        font-size: 1.75rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .igaming-logo-large-d-outline {
        font-size: 6.5rem;
        -webkit-text-stroke: 2px rgba(147, 51, 234, 0.7);
    }
    
    .igaming-hero-icon {
        width: 160px;
        height: 160px;
    }
    
    .igaming-info-cards {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .igaming-info-card {
        padding: 2rem 1.75rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .igaming-features-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .igaming-feature-card {
        padding: 2rem 1.75rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .igaming-launch-label {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
    }
    
    .igaming-launch-date {
        font-size: 1.3rem;
        padding: 0.85rem 1.5rem;
    }
    
    .igaming-games-section {
        padding: 2.5rem 1.5rem;
        overflow: visible;
    }
    
    .igaming-games-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .igaming-games-menu {
        order: 1;
        z-index: 2;
        position: relative;
    }
    
    .igaming-games-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .games-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .game-category-btn {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .igaming-casino-elements {
        order: 2;
        min-height: 200px;
        position: relative;
        z-index: 1;
    }
    
    .casino-cards {
        display: none;
    }
    
    .casino-dice {
        display: none;
    }
    
    .igaming-launch-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        order: 3;
    }
    
    .earn-section {
        padding: 4rem 1.25rem;
    }
    
    .earn-section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
        line-height: 1.3;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .earn-slider-wrapper {
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-direction: row;
        align-items: center;
        position: relative;
        padding: 0;
    }
    
    .earn-slider {
        min-height: 520px;
        flex: 1;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }
    
    .earn-slide {
        padding: 2.5rem 1.75rem;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        min-height: 520px;
    }
    
    .earn-slide-number {
        font-size: 5rem;
        top: 1rem;
        right: 1rem;
        opacity: 0.05;
        font-weight: 900;
    }
    
    .earn-slide-icon {
        width: 130px;
        height: 130px;
        margin-bottom: 2rem;
        padding: 1.75rem;
        flex-shrink: 0;
    }
    
    .earn-slide-title {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .earn-slide-description {
        font-size: 1rem;
        line-height: 1.75;
        text-align: center;
        max-width: 100%;
    }
    
    .earn-slider-arrow {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .earn-slider-arrow:hover:not(.disabled) {
        background: rgba(168, 85, 247, 0.3);
        border-color: rgba(168, 85, 247, 0.6);
        transform: scale(1.1);
    }
    
    .earn-slider-arrow.disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    
    .earn-slider-arrow svg {
        width: 22px;
        height: 22px;
    }
    
    .earn-slider-indicators {
        margin-top: 2rem;
        gap: 0.85rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .earn-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .earn-indicator.active {
        width: 36px;
        border-radius: 5px;
        background: linear-gradient(135deg, #a855f7, #ec4899);
        box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
    }
    
    .security-section {
        padding: 4rem 1.5rem;
    }
    
    .security-title {
        font-size: 1.9rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .security-card {
        padding: 2rem 1.75rem;
        min-height: auto;
        border-radius: 20px;
    }
    
    .security-card-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .three-ways-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }
    
    .three-ways-title {
        font-size: 1.9rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .three-ways-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .for-whom-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .for-whom-title {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
        text-align: center;
    }
    
    .for-whom-item {
        font-size: 1rem;
        padding: 0.85rem 0 0.85rem 1.75rem;
        line-height: 1.6;
        position: relative;
    }
    
    .for-whom-item::before {
        left: 0;
        top: 0.85rem;
        font-size: 1.3rem;
    }
    
    .way-card-right {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .way-card-right img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
    
    .audited-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }
    
    .cosmic-orbit {
        height: 450px;
    }
    
    .central-orb {
        width: 280px;
        height: 280px;
    }
    
    .logo-large-d-outline {
        font-size: 9rem;
        -webkit-text-stroke: 2px rgba(147, 51, 234, 0.7);
    }
    
    .logo-text-neon {
        font-size: 1.6rem;
    }
    
    .orbital-planet::before {
        width: 220px;
        height: 220px;
    }
    
    .faq-section {
        padding: 4rem 1.5rem;
    }
    
    .faq-main-title {
        font-size: 1.9rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
        opacity: 0;
        visibility: hidden;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
        opacity: 1;
        visibility: visible;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .site-footer {
        padding: 3rem 1.5rem;
        background: rgba(10, 10, 26, 0.95);
    }
    
    .footer-container {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 0.75rem;
    }
    
    .footer-logo-icon {
        height: 32px;
    }
    
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1rem;
        width: 100%;
        max-width: 100%;
        justify-items: center;
    }
    
    .footer-nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.75rem;
        white-space: nowrap;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .footer-nav-link:hover {
        background: rgba(168, 85, 247, 0.15);
        color: #a855f7;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1rem;
        margin-top: 0.75rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-language {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        margin-top: 0.75rem;
        border-radius: 10px;
    }
    }
    /* Whitepaper — текстовая ссылка в футере рядом с FAQ */
.footer-nav-link-whitepaper {
    /* наследует .footer-nav-link */
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }
}
    
@media (max-width: 480px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-brand {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        width: 28px;
        height: 20px;
    }
    
    .nav-menu {
        padding: 5rem 1.5rem 2rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1.5rem 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 18vw, 7rem);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .hero-tags {
        max-width: 100%;
    }
    
    .hero-tag {
        font-size: 0.6rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .btn-large {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
        max-width: 280px;
    }
    
    .loading-title {
        font-size: 2rem;
        letter-spacing: 0.25rem;
    }
    
    .loading-progress {
        font-size: 1.6rem;
    }
    
    .loading-dollar, .loading-number {
        font-size: 1.6rem;
    }
    
    .features-section-title {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .earn-section {
        padding: 3.5rem 1rem;
    }
    
    .earn-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .earn-slider-wrapper {
        gap: 0.4rem;
    }
    
    .earn-slider {
        min-height: 480px;
    }
    
    .earn-slide {
        padding: 2rem 1.5rem;
        min-height: 480px;
    }
    
    .earn-slide-number {
        font-size: 4rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .earn-slide-icon {
        width: 110px;
        height: 110px;
        margin-bottom: 1.75rem;
        padding: 1.5rem;
    }
    
    .earn-slide-title {
        font-size: 1.65rem;
        margin-bottom: 1.25rem;
    }
    
    .earn-slide-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .earn-slider-arrow {
        width: 44px;
        height: 44px;
    }
    
    .earn-slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .earn-indicator.active {
        width: 32px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem 0.75rem;
    }
    
    .footer-nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
    }
    
    .site-footer {
        padding: 2.5rem 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .network-svg {
        transform: scale(2.5);
        opacity: 0.35;
    }
}
