* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00d4ff;
    --secondary: #ff00ff;
    --accent: #ffff00;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --purple: #9945ff;
    --green: #00ff88;
    --error-red: #ff0000;
    --faucet-glow: #00ff88;
    --control-panel-blue: #87ceeb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

.cosmic-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #0a0a0a 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--light), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--primary), transparent),
        radial-gradient(1px 1px at 50px 50px, var(--light), transparent),
        radial-gradient(1px 1px at 80px 10px, var(--light), transparent),
        radial-gradient(2px 2px at 130px 80px, var(--secondary), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float 100s linear infinite;
}

@keyframes float {
    from { transform: translateY(0) translateX(0); }
    to { transform: translateY(-200px) translateX(-200px); }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.faucet-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--green), #00cc77);
    border: none;
    border-radius: 25px;
    color: var(--light);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    animation: faucetPulse 2s ease-in-out infinite;
}

@keyframes faucetPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
        transform: scale(1.02);
    }
}

.faucet-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s ease;
}

.faucet-btn:hover:before {
    left: 100%;
}

.faucet-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.faucet-new-badge {
    background: var(--accent);
    color: var(--dark);
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    animation: newBadgeBlink 1.5s ease-in-out infinite;
}

@keyframes newBadgeBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.trading-button {
    display: flex;
    width: 340px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(139, 92, 246, 0.4);
    text-decoration: none;
}

.trading-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 30px rgba(139, 92, 246, 0.5);
}

.button-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    padding: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.left-half {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.right-half {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

.button-half:hover {
    filter: brightness(1.1);
}

.button-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
}

.button-half:hover::before {
    background: rgba(255, 255, 255, 0.1);
}

.exchanges-dropdown {
    position: relative;
    display: none;
}

.exchanges-btn {
    display: inline-flex;
    width: 100%;
    height: 30px;
    border-radius: 6px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: 1.5px solid rgba(139, 92, 246, 0.4);
    color: white;
    font-weight: 600;
    font-size: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0 15px;
    margin: 0;
}

.exchanges-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 30px rgba(139, 92, 246, 0.5);
}

.exchanges-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 250px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    z-index: 1002;
    margin-top: 5px;
    overflow: hidden;
}

.exchanges-dropdown.active .exchanges-dropdown-content {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.2);
}

.control-panel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.control-panel-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--control-panel-blue), #70c7e3);
    border: none;
    border-radius: 50px;
    color: var(--dark);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.control-panel-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s ease;
}

.control-panel-btn:hover:before {
    left: 100%;
}

.control-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.4);
}

.coming-soon-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.control-panel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.holographic-interface {
    width: 95vw;
    max-width: 1200px;
    height: 85vh;
    max-height: 700px;
    position: relative;
    animation: hologramBoot 0.8s ease-out;
}

@keyframes hologramBoot {
    0% { 
        transform: scale(0.95) translateY(20px);
        opacity: 0;
    }
    50% {
        transform: scale(1.02) translateY(-5px);
    }
    100% { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.holo-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 150, 255, 0.08) 0%, 
        rgba(0, 200, 255, 0.05) 25%,
        rgba(0, 180, 255, 0.1) 50%,
        rgba(0, 220, 255, 0.05) 75%,
        rgba(0, 160, 255, 0.08) 100%);
    border: 2px solid rgba(0, 180, 255, 0.6);
    border-radius: 20px;
    box-shadow: 
        0 0 100px rgba(0, 180, 255, 0.4),
        inset 0 0 80px rgba(0, 200, 255, 0.08),
        0 0 150px rgba(0, 150, 255, 0.25);
    overflow: hidden;
}

.holo-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 200, 255, 0.12) 50%,
        transparent 70%
    );
    animation: holoScan 5s linear infinite;
}

@keyframes holoScan {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.holo-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg,
            transparent,
            transparent 35px,
            rgba(0, 180, 255, 0.04) 35px,
            rgba(0, 180, 255, 0.04) 36px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 35px,
            rgba(0, 180, 255, 0.04) 35px,
            rgba(0, 180, 255, 0.04) 36px);
    pointer-events: none;
}

.holo-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    overflow-y: auto;
}

.holo-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.holo-title {
    font-size: 36px;
    font-weight: bold;
    color: #00b4ff;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 
        0 0 25px rgba(0, 180, 255, 0.9),
        0 0 50px rgba(0, 180, 255, 0.6),
        0 0 75px rgba(0, 180, 255, 0.4);
    margin-bottom: 15px;
    animation: holoPulse 2.5s ease-in-out infinite;
}

@keyframes holoPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 25px rgba(0, 180, 255, 0.9), 0 0 50px rgba(0, 180, 255, 0.6), 0 0 75px rgba(0, 180, 255, 0.4); }
    50% { opacity: 0.85; text-shadow: 0 0 35px rgba(0, 180, 255, 1), 0 0 60px rgba(0, 180, 255, 0.8), 0 0 85px rgba(0, 180, 255, 0.6); }
}

.holo-subtitle {
    font-size: 18px;
    color: rgba(0, 180, 255, 0.8);
    letter-spacing: 3px;
    animation: holoFlicker 4s ease-in-out infinite;
    margin-bottom: 10px;
}

@keyframes holoFlicker {
    0%, 100% { opacity: 0.8; }
    25% { opacity: 0.65; }
    50% { opacity: 0.9; }
    75% { opacity: 0.7; }
}

.sphere-logo {
    width: 120px;
    height: 120px;
    margin: 20px auto;
    position: relative;
    animation: sphereFloat 3s ease-in-out infinite;
}

.sphere-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 180, 255, 0.6));
}

@keyframes sphereFloat {
    0%, 100% { 
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(0, 180, 255, 0.6));
    }
    50% { 
        transform: translateY(-8px);
        filter: drop-shadow(0 8px 30px rgba(0, 180, 255, 0.8));
    }
}

.access-status-panel {
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.08), rgba(255, 150, 0, 0.12));
    border: 2px solid rgba(255, 140, 0, 0.6);
    border-radius: 15px;
    padding: 35px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    animation: statusPulse 2s ease-in-out infinite;
    width: 100%;
    max-width: 800px;
}

@keyframes statusPulse {
    0%, 100% { 
        box-shadow: 0 0 35px rgba(255, 140, 0, 0.4);
        border-color: rgba(255, 140, 0, 0.6);
    }
    50% { 
        box-shadow: 0 0 55px rgba(255, 140, 0, 0.7);
        border-color: rgba(255, 140, 0, 0.9);
    }
}

.access-status-text {
    font-size: 26px;
    font-weight: bold;
    color: #ff8c00;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 25px rgba(255, 140, 0, 0.9);
    margin-bottom: 25px;
    animation: statusBlink 1.8s ease-in-out infinite;
    text-align: center;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.requirement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-top: 30px;
}

.requirement-box {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 180, 255, 0.5);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.requirement-box:hover {
    border-color: rgba(0, 180, 255, 0.8);
    box-shadow: 0 0 25px rgba(0, 180, 255, 0.3);
    transform: translateY(-3px);
}

.requirement-title {
    font-size: 16px;
    color: #00d4ff;
    margin-bottom: 12px;
    text-shadow: 0 0 12px rgba(0, 180, 255, 0.6);
    font-weight: bold;
    line-height: 1.3;
}

.requirement-detail {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    flex: 1;
}

.development-status {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    padding: 20px;
    background: rgba(255, 200, 0, 0.08);
    border: 1px solid rgba(255, 200, 0, 0.5);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
}

.status-led {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffc800;
    box-shadow: 0 0 25px rgba(255, 200, 0, 0.9);
    animation: devStatusBlink 2.5s ease-in-out infinite;
}

@keyframes devStatusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-text {
    font-size: 18px;
    color: #ffc800;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(255, 200, 0, 0.6);
    flex: 1;
}

.holo-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 180, 255, 0.6);
    border-radius: 50%;
    color: #00b4ff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.holo-close-btn:hover {
    background: rgba(255, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.9);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.6);
    color: #ff0000;
}

.scanline {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 180, 255, 0.9) 50%,
        transparent 100%);
    opacity: 0.6;
    animation: scanline 4s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { top: 0%; }
    100% { top: 100%; }
}

.discord-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #7289da;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    backdrop-filter: blur(10px);
    animation: discordFloat 3s ease-in-out infinite;
}

.discord-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(114, 137, 218, 0.4);
    background: rgba(255, 255, 255, 1);
}

.discord-float::before {
    content: '🎮';
}

@keyframes discordFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-5px) scale(1.02);
    }
}

.discord-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.discord-float:hover .discord-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}

.hero-image {
    width: 400px;
    height: 400px;
    margin-bottom: 50px;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.5));
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}

.l2-address {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.l2-address:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.l2-address::after {
    content: 'Click to copy';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.l2-address:hover::after {
    opacity: 1;
    visibility: visible;
}

.l2-address.copied::after {
    content: 'Copied!';
    background: rgba(0, 255, 136, 0.9);
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.token-display-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.token-display {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.token-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: -5px;
}

.bridge-link {
    text-decoration: none;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bridge-tooltip {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 212, 255, 0.5);
    z-index: 1000;
}

.bridge-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.9);
}

.bridge-link:hover .bridge-tooltip {
    opacity: 1;
    visibility: visible;
}

.bridge-link:hover .token-display {
    color: var(--primary);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.bridge-link:hover .token-label {
    color: var(--primary);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.diamond-hand-bar {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 0, 255, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid #FFD700;
    border-radius: 15px;
    margin: 30px auto;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: diamondGlow 2s ease-in-out infinite;
}

@keyframes diamondGlow {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
    }
}

.diamond-hand-bar:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    border-color: var(--accent);
}

.whitepaper-btn {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(153, 69, 255, 0.15));
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 12px;
    margin: 30px auto;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whitepaper-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(153, 69, 255, 0.2));
}

.whitepaper-btn::before {
    content: '📖';
    font-size: 22px;
}

.leaderboard-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.leaderboard-content {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 0, 51, 0.95));
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.whitepaper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.whitepaper-book {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border: 3px solid #d0d0d0;
    border-radius: 15px;
    width: 90vw;
    max-width: 800px;
    height: 80vh;
    max-height: 600px;
    position: relative;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.whitepaper-header {
    background: white;
    color: #333;
    padding: 40px 40px 20px 40px;
    text-align: center;
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #ddd;
}

.whitepaper-main-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.whitepaper-subtitle {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.whitepaper-author {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 5px;
    color: #666;
}

.whitepaper-url {
    font-size: 14px;
    color: #0066cc;
    text-decoration: underline;
    font-family: 'Courier New', monospace;
}

.whitepaper-content {
    flex: 1;
    padding: 40px;
    background: white;
    color: #333;
    overflow-y: auto;
    line-height: 1.8;
    font-size: 16px;
}

.whitepaper-page {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.whitepaper-page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.whitepaper-paragraph {
    margin-bottom: 25px;
    text-align: justify;
    text-indent: 30px;
}

.whitepaper-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.page-nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    position: relative;
}

.page-nav-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.page-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.page-indicator {
    background: rgba(0, 0, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: #666;
}

.nav-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.page-nav-btn:hover .nav-tooltip {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 5px 10px;
    border-radius: 50%;
}

.close-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.leaderboard-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leaderboard-list {
    list-style: none;
    padding: 0;
}

.leaderboard-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateX(5px);
}

.rank-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
    min-width: 60px;
}

.leaderboard-item:nth-child(1) .rank-number::before {
    content: '🥇 ';
}

.leaderboard-item:nth-child(2) .rank-number::before {
    content: '🥈 ';
}

.leaderboard-item:nth-child(3) .rank-number::before {
    content: '🥉 ';
}

.leaderboard-item:nth-child(n+4) .rank-number::before {
    content: '💎 ';
}

.address {
    font-family: 'Courier New', monospace;
    color: var(--light);
    flex: 1;
    font-size: 14px;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

#features {
    padding-top: 150px;
}

h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    
    .features-grid .feature-card:nth-child(1) { grid-column: 1; grid-row: 1; }
    .features-grid .feature-card:nth-child(2) { grid-column: 2; grid-row: 1; }
    .features-grid .feature-card:nth-child(3) { grid-column: 3; grid-row: 1; }
    .features-grid .feature-card:nth-child(4) { grid-column: 4; grid-row: 1; }
    .features-grid .feature-card:nth-child(5) { grid-column: 2; grid-row: 2; }
    .features-grid .feature-card:nth-child(6) { grid-column: 3; grid-row: 2; }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover:before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

#tokenomics {
    text-align: center;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.stat-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
    to { box-shadow: 0 0 30px rgba(255, 0, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.5); }
}

#roadmap {
    padding-top: 100px;
}

.roadmap-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
    position: relative;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-content {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 40px;
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--darker);
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.roadmap-phase {
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.roadmap-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light);
}

.roadmap-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

#whitepaper {
    text-align: center;
    padding-top: 100px;
}

footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.social-links a {
    font-size: 24px;
    color: var(--light);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator:before {
    content: '↓';
    font-size: 30px;
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--light);
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    width: 100%;
    text-align: center;
}

.mobile-nav-link a, .mobile-nav-link button {
    width: 100%;
}

@media (max-width: 768px) {
    nav {
        padding: 10px 20px;
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
    }

    .logo-container {
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .logo {
        font-size: 20px;
    }

    .logo-img {
        height: 35px;
        width: 35px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }

    .trading-button {
        width: 100%;
        max-width: none;
    }

    .exchanges-dropdown {
        display: block;
    }

    .holographic-interface {
        width: 95vw;
        height: 85vh;
        max-height: none;
    }

    .holo-content {
        padding: 20px;
    }

    .holo-title {
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .holo-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .access-status-panel {
        padding: 20px;
        margin: 15px 0;
    }

    .access-status-text {
        font-size: 18px;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .requirement-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .requirement-box {
        padding: 15px;
        min-height: 120px;
    }

    .requirement-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .requirement-detail {
        font-size: 12px;
        line-height: 1.4;
    }

    .sphere-logo {
        width: 60px;
        height: 60px;
        margin: 15px auto;
    }

    .development-status {
        margin-top: 20px;
        padding: 15px;
        max-width: 100%;
    }

    .status-text {
        font-size: 14px;
    }

    #hero {
        padding-top: 180px;
        min-height: calc(100vh - 20px);
    }

    h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .l2-address {
        font-size: 12px;
        padding: 6px 10px;
        margin-bottom: 10px;
    }

    .tagline {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-image {
        width: 250px;
        height: 250px;
        margin-bottom: 30px;
    }

    .token-display-container {
        flex-direction: column;
        gap: 20px;
        margin: 15px 0;
    }

    .token-display {
        font-size: 28px;
    }

    .token-label {
        font-size: 14px;
    }

    .diamond-hand-bar {
        font-size: 16px;
        padding: 15px;
        margin: 20px auto;
    }

    .whitepaper-btn {
        font-size: 16px;
        padding: 12px;
        margin: 20px auto;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 16px;
        min-width: 200px;
    }

    section {
        padding: 60px 20px;
    }

    h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }

    .discord-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .discord-tooltip {
        bottom: 60px;
        font-size: 12px;
    }

    .roadmap-content {
        margin: 0 20px;
        padding: 25px 20px;
    }

    .roadmap-title {
        font-size: 20px;
    }

    .roadmap-description {
        font-size: 14px;
    }

    .token-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-box {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 16px;
    }

    .leaderboard-content, .whitepaper-book {
        padding: 20px;
        width: 95vw;
        height: 85vh;
    }

    .whitepaper-content {
        padding: 20px;
        font-size: 14px;
    }

    .whitepaper-header {
        font-size: 20px;
        padding: 15px;
    }

    .leaderboard-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .leaderboard-item {
        padding: 15px;
        gap: 15px;
    }

    .rank-number {
        font-size: 18px;
        min-width: 40px;
    }

    .address {
        font-size: 12px;
    }
}
