/* NEXUS Market V3 - Ultra Enhanced Styles */

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-color: #00ff88;
    --accent-secondary: #ff0066;
    --accent-tertiary: #00aaff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 40px rgba(0, 255, 136, 0.4);
    --shadow-pink: 0 0 40px rgba(255, 0, 102, 0.4);
    --shadow-blue: 0 0 40px rgba(0, 170, 255, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--accent-color), var(--accent-secondary), var(--accent-tertiary));
    --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #0a1a0a 50%, #1a1a0a 75%, #0a0a0a 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background: var(--gradient-bg);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 102, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 170, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Animated Background Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 20s infinite linear;
    filter: blur(0.5px);
}

.particle:nth-child(1) { 
    left: 10%; 
    width: 6px; 
    height: 6px; 
    background: var(--accent-color); 
    animation-delay: 0s; 
    animation-duration: 15s; 
    box-shadow: 0 0 10px var(--accent-color);
}
.particle:nth-child(2) { 
    left: 20%; 
    width: 4px; 
    height: 4px; 
    background: var(--accent-secondary); 
    animation-delay: 3s; 
    animation-duration: 22s; 
    box-shadow: 0 0 8px var(--accent-secondary);
}
.particle:nth-child(3) { 
    left: 30%; 
    width: 8px; 
    height: 8px; 
    background: var(--accent-tertiary); 
    animation-delay: 6s; 
    animation-duration: 18s; 
    box-shadow: 0 0 12px var(--accent-tertiary);
}
.particle:nth-child(4) { 
    left: 40%; 
    width: 5px; 
    height: 5px; 
    background: var(--accent-color); 
    animation-delay: 9s; 
    animation-duration: 25s; 
    box-shadow: 0 0 10px var(--accent-color);
}
.particle:nth-child(5) { 
    left: 50%; 
    width: 7px; 
    height: 7px; 
    background: var(--accent-secondary); 
    animation-delay: 12s; 
    animation-duration: 16s; 
    box-shadow: 0 0 14px var(--accent-secondary);
}
.particle:nth-child(6) { 
    left: 60%; 
    width: 3px; 
    height: 3px; 
    background: var(--accent-tertiary); 
    animation-delay: 15s; 
    animation-duration: 20s; 
    box-shadow: 0 0 6px var(--accent-tertiary);
}
.particle:nth-child(7) { 
    left: 70%; 
    width: 9px; 
    height: 9px; 
    background: var(--accent-color); 
    animation-delay: 18s; 
    animation-duration: 24s; 
    box-shadow: 0 0 18px var(--accent-color);
}
.particle:nth-child(8) { 
    left: 80%; 
    width: 4px; 
    height: 4px; 
    background: var(--accent-secondary); 
    animation-delay: 21s; 
    animation-duration: 14s; 
    box-shadow: 0 0 8px var(--accent-secondary);
}
.particle:nth-child(9) { 
    left: 90%; 
    width: 6px; 
    height: 6px; 
    background: var(--accent-tertiary); 
    animation-delay: 24s; 
    animation-duration: 21s; 
    box-shadow: 0 0 12px var(--accent-tertiary);
}
.particle:nth-child(10) { 
    left: 95%; 
    width: 5px; 
    height: 5px; 
    background: var(--accent-color); 
    animation-delay: 27s; 
    animation-duration: 19s; 
    box-shadow: 0 0 10px var(--accent-color);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
        transform: translateY(90vh) rotate(36deg) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(-10vh) rotate(324deg) scale(1);
    }
    100% {
        transform: translateY(-20vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Ultra Enhanced Floating Navigation */
.floating-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    backdrop-filter: blur(25px) saturate(180%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    padding: 12px 35px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: navFloat 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-nav:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 255, 136, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@keyframes navFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 35px;
}

.logo-container .logo {
    height: 45px;
    width: auto;
    filter: brightness(1.3) drop-shadow(0 0 10px var(--accent-color));
    transition: all 0.3s ease;
}

.logo-container .logo:hover {
    filter: brightness(1.5) drop-shadow(0 0 20px var(--accent-color));
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

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

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Ultra Enhanced Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 80px;
    position: relative;
    z-index: 10;
    background: 
        radial-gradient(ellipse at top, rgba(0, 255, 136, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(255, 0, 102, 0.05) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 0.85;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

.title-line {
    display: block;
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.title-line:nth-child(1) {
    animation-delay: 0s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes titleGlow {
    from { 
        filter: drop-shadow(0 0 20px var(--accent-color));
        transform: translateX(0px);
    }
    to { 
        filter: drop-shadow(0 0 40px var(--accent-secondary));
        transform: translateX(5px);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.9;
    animation: fadeInUp 1.2s ease-out 0.8s both;
    max-width: 600px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--accent-color),
        transparent,
        var(--accent-secondary),
        transparent,
        var(--accent-tertiary),
        transparent
    );
    animation: rotate 8s linear infinite;
    opacity: 0.1;
}

.floating-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--primary-bg);
    border-radius: 38px;
    z-index: 1;
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    33% { 
        transform: translateY(-25px) rotate(1deg) scale(1.02); 
    }
    66% { 
        transform: translateY(-10px) rotate(-1deg) scale(0.98); 
    }
}

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

.hero-logo {
    width: 220px;
    height: auto;
    filter: brightness(1.4) drop-shadow(0 0 30px var(--accent-color));
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hero-logo:hover {
    filter: brightness(1.6) drop-shadow(0 0 50px var(--accent-color));
    transform: scale(1.05);
}

/* Ultra Enhanced Stats Container */
.stats-container {
    display: flex;
    gap: 80px;
    margin-top: 100px;
    animation: fadeInUp 1.2s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.8s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 136, 0.2);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    animation: countUp 2.5s ease-out;
}

@keyframes countUp {
    from { 
        opacity: 0; 
        transform: scale(0.3) rotate(-10deg); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Ultra Enhanced Section Styles */
.section {
    padding: 120px 20px;
    position: relative;
    z-index: 10;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlide 1.2s ease-out;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: lineExpand 1s ease-out 0.5s both;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.section-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Ultra Enhanced Mirror Cards */
.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.mirror-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.8s ease-out;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mirror-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.15), transparent);
    transition: left 1s ease;
}

.mirror-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-color), transparent);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mirror-card:hover::before {
    left: 100%;
}

.mirror-card:hover::after {
    opacity: 0.05;
}

.mirror-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 255, 136, 0.3);
    border-color: var(--accent-color);
}

.mirror-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.status-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    animation: pulse 2.5s infinite;
    position: relative;
}

.status-indicator::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: ripple 2.5s infinite;
}

.status-indicator.online {
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
    color: var(--accent-color);
}

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

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.status-text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.mirror-link {
    margin-bottom: 20px;
}

.mirror-url {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
    word-break: break-all;
    transition: all 0.3s ease;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mirror-url:hover {
    color: var(--accent-color);
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.copy-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    padding: 12px 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    width: 100%;
}

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

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

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.copy-btn:active {
    transform: translateY(-1px);
}

/* Ultra Enhanced DDoS Protection */
.ddos-protection {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.ddos-protection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 102, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ddos-protection:hover::before {
    opacity: 1;
}

.protection-icon {
    flex-shrink: 0;
}

.ddos-img {
    width: 100px;
    height: 100px;
    filter: brightness(1.3) drop-shadow(0 0 20px var(--accent-color));
    animation: protectionSpin 10s linear infinite;
}

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

.protection-content h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.protection-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Ultra Enhanced Access Steps */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.access-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.access-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 102, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.access-step:hover::before {
    opacity: 1;
}

.access-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 136, 0.2);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.step-content h3 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Ultra Enhanced Token Section */
.token-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.token-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: conic-gradient(from 0deg, var(--accent-color), var(--accent-secondary), var(--accent-tertiary), var(--accent-color));
    border-radius: 50%;
    animation: rotate 8s linear infinite;
    opacity: 0.3;
    filter: blur(20px);
}

.token-img {
    width: 100%;
    max-width: 350px;
    filter: brightness(1.3) drop-shadow(0 0 30px var(--accent-color));
    animation: tokenFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

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

.token-steps {
    margin: 40px 0;
}

.token-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.token-step:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(15px);
    border-color: var(--accent-color);
}

.step-num {
    background: var(--accent-color);
    color: black;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--accent-color);
}

.step-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.warning-box {
    background: rgba(255, 0, 102, 0.1);
    border: 2px solid var(--accent-secondary);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
    color: var(--accent-secondary);
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 102, 0.1), transparent);
    animation: warningSlide 3s ease-in-out infinite;
}

@keyframes warningSlide {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Ultra Enhanced Vendor Cards */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.vendor-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vendor-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-color), transparent, var(--accent-secondary), transparent);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vendor-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--primary-bg);
    border-radius: 23px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vendor-card:hover::before {
    opacity: 0.15;
}

.vendor-card:hover::after {
    opacity: 0.9;
}

.vendor-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 255, 136, 0.3);
}

.vendor-card > * {
    position: relative;
    z-index: 2;
}

.vendor-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

.vendor-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 700;
}

.vendor-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.vendor-requirement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid var(--accent-color);
}

.requirement-label {
    font-weight: 600;
}

.requirement-value {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.2rem;
}

/* Ultra Enhanced Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.security-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 102, 0.05), rgba(0, 170, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.security-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 255, 136, 0.3);
}

.security-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: securityPulse 4s ease-in-out infinite;
}

@keyframes securityPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.security-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 700;
}

.security-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Ultra Enhanced Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 102, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-item:hover::before {
    opacity: 1;
}

.timeline-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 255, 136, 0.3);
}

.timeline-number {
    background: var(--gradient-primary);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 25px;
    animation: numberPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes numberPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 25px rgba(0, 255, 136, 0);
        transform: scale(1.05);
    }
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.dispute-info {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dispute-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.05), rgba(0, 170, 255, 0.05));
    opacity: 0.5;
}

.dispute-info h3 {
    color: var(--accent-secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.dispute-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Ultra Enhanced Finance Grid */
.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.finance-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.finance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 170, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.finance-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 255, 136, 0.3);
}

.finance-card h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.crypto-list {
    margin-bottom: 40px;
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.crypto-item:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: translateX(15px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.crypto-symbol {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 800;
    text-shadow: 0 0 10px var(--accent-color);
}

.crypto-details {
    flex: 1;
}

.crypto-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.crypto-conf {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    padding-left: 10px;
    background: rgba(0, 255, 136, 0.05);
    margin: 0 -25px;
    padding-left: 35px;
    padding-right: 35px;
    border-radius: 10px;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
}

.info-value {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Ultra Enhanced Buying Steps */
.buying-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.buying-step {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.buying-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 102, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.buying-step:hover::before {
    opacity: 1;
}

.buying-step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 255, 136, 0.3);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: stepFloat 4s ease-in-out infinite;
}

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

.buying-step h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.buying-step p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Ultra Enhanced FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.05), rgba(255, 0, 102, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 255, 136, 0.2);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Ultra Enhanced Rules Section */
.rules-content {
    max-width: 900px;
    margin: 0 auto;
}

.prohibited-section, .enforcement-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.prohibited-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.05), rgba(255, 0, 102, 0.02));
    opacity: 0.8;
}

.enforcement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.05), rgba(0, 170, 255, 0.02));
    opacity: 0.8;
}

.prohibited-section h3, .enforcement-section h3 {
    color: var(--accent-secondary);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.prohibited-section p, .enforcement-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.prohibited-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.prohibited-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 0, 102, 0.1);
    border-left: 4px solid var(--accent-secondary);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.prohibited-list li:hover {
    background: rgba(255, 0, 102, 0.15);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.2);
}

/* Ultra Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.15), transparent);
    transition: left 1s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(0, 255, 136, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: featureGlow 3s ease-in-out infinite alternate;
}

@keyframes featureGlow {
    from { 
        filter: drop-shadow(0 0 10px var(--accent-color));
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 0 30px var(--accent-secondary));
        transform: scale(1.05);
    }
}

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Ultra Enhanced Gallery */
.gallery-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 25px;
}

.gallery-image {
    flex-shrink: 0;
    width: 850px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-prev {
    left: 25px;
}

.gallery-next {
    right: 25px;
}

.gallery-prev:hover, .gallery-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

/* Ultra Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(255, 0, 102, 0.15), rgba(0, 170, 255, 0.15));
    border-radius: 40px;
    margin: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--accent-color), var(--accent-secondary), var(--accent-tertiary), var(--accent-color));
    animation: rotate 12s linear infinite;
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    padding: 100px 50px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 25px 50px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.5);
}

/* Ultra Enhanced Footer */
.footer {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(25px) saturate(180%);
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 102, 0.05));
    opacity: 0.5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.footer-logo-img {
    height: 50px;
    filter: brightness(1.3) drop-shadow(0 0 15px var(--accent-color));
}

.footer-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-status {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Ultra Enhanced Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 25px 20px;
        border-radius: 25px;
        padding: 15px 25px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .token-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .ddos-protection {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 80px 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 15px;
    }
    
    .hero-section {
        padding: 120px 15px 60px;
    }
    
    .mirrors-grid,
    .vendor-grid,
    .security-grid,
    .finance-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-prev, .gallery-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-content {
        padding: 60px 30px;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Additional Ultra Enhancements */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Enhanced focus states for accessibility */
.nav-link:focus,
.copy-btn:focus,
.cta-button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.1);
        --glass-border: rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

