 
        :root {
    --bg-primary: #0A0A0B;
    --bg-secondary: #111113;
    --bg-tertiary: #1A1A2E;
    --accent-violet: #7B61FF;
    --accent-cyan: #00F5FF;
    --accent-pink: #FF2E9C;
    --accent-gold: #FFD700;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B7D6;
    --text-tertiary: #8A94C4;
    --glass-bg: rgba(30, 30, 46, 0.25);
    --glass-border: rgba(123, 97, 255, 0.3);
    --neon-glow: 0 0 20px rgba(123, 97, 255, 0.4);
    
    /* New gradient backgrounds */
    --gradient-primary: linear-gradient(135deg, #0A0A0B 0%, #1A1A2E 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
    --gradient-radial: radial-gradient(circle at 50% 0%, rgba(123, 97, 255, 0.15) 0%, transparent 50%);
}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        body {
    /* Add a subtle background pattern */
    background: 
        var(--gradient-primary),
        radial-gradient(circle at 20% 80%, rgba(123, 97, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Add grid pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(123, 97, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 97, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}
        
        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Glass Card Effect */
        .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 
        var(--neon-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Add inner glow */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
}
        
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(123, 97, 255, 0.7);
            border-color: rgba(123, 97, 255, 0.4);
        }
        
        /* Button Styles */
        .btn {
            padding: 14px 32px;
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .btn-primary {
            background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan));
            color: white;
            border: none;
            box-shadow: 0 0 15px rgba(123, 97, 255, 0.5);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(123, 97, 255, 0.8);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--accent-cyan);
            border: 1px solid var(--accent-cyan);
        }
        
        .btn-secondary:hover {
            background: rgba(0, 245, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .toast-copy {
            position: fixed;
            left: 50%;
            bottom: 32px;
            transform: translateX(-50%) translateY(20px);
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(5, 10, 30, 0.95);
            border: 1px solid rgba(123, 97, 255, 0.6);
            color: #ffffff;
            font-size: 0.85rem;
            font-family: 'Outfit', sans-serif;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
            z-index: 1100;
        }
        
        .toast-copy.toast-visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(10, 10, 11, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(123, 97, 255, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 48px;
            height: 48px;
            background: transparent;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 20px;
            box-shadow: 0 0 15px rgba(123, 97, 255, 0.5);
        }
        
        .logo-text {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 24px;
            background: linear-gradient(to right, var(--accent-violet), var(--accent-cyan));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--accent-violet), var(--accent-cyan));
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            gap: 16px;
        }
        
        /* Hero Section */
        .hero {
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(123, 97, 255, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(to right, #fff, var(--accent-cyan));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 500px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        /* 3D Token Visualization */
        .token-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .token-3d {
            width: 280px;
            height: 280px;
            position: relative;
            transform-style: preserve-3d;
            animation: rotate 20s infinite linear;
        }
        
        @keyframes rotate {
            0% { transform: rotateY(0deg) rotateX(10deg); }
            100% { transform: rotateY(360deg) rotateX(10deg); }
        }
        
        .token-front, .token-back {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backface-visibility: hidden;
        }
        
        /* .token-front {
            background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
            box-shadow: 0 0 60px rgba(123, 97, 255, 0.7);
        }
        
        .token-back {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
            transform: rotateY(180deg);
            box-shadow: 0 0 60px rgba(0, 245, 255, 0.7);
        } */

        .token-front {
            background: rgba(0, 0, 0, 0.85);
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
        }

        .token-back {
            background: rgba(0, 0, 0, 0.85);
            transform: rotateY(180deg);
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
        }

        
        .token-text {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 3rem;
            color: white;
        }
        
        .neon-glow {
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(123, 97, 255, 0.2) 0%, transparent 70%);
            filter: blur(20px);
            z-index: -1;
        }
        
        .live-stats {
            padding: 80px 0;
        }
        
        .live-stats-card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 40px 48px;
            position: relative;
            overflow: hidden;
            gap: 40px;
        }
        
        .live-stats-card::before {
            content: '';
            position: absolute;
            top: -60px;
            left: 50%;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.04);
            background: radial-gradient(circle at 30% 30%, rgba(123, 97, 255, 0.5), transparent 60%);
            transform: translateX(-50%);
            opacity: 0.7;
        }
        
        .live-stats-left {
            position: relative;
            z-index: 1;
            max-width: 40%;
        }
        
        .live-stats-title {
            font-size: 2.8rem;
            margin-bottom: 18px;
        }
        
        .live-stats-text {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 1rem;
        }
        
        .live-stats-holder {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-top: 12px;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }
        
        .live-stats-holder-value {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            color: #ffffff;
        }
        
        .live-stats-right {
            position: relative;
            z-index: 1;
            flex: 1;
            margin-left: 60px;
        }
        
        .contract-label {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }
        
        .contract-row {
            display: flex;
            align-items: stretch;
            gap: 12px;
            margin-bottom: 26px;
        }
        
        .contract-address {
            flex: 1;
            padding: 16px 20px;
            border-radius: 999px;
            border: 1px solid var(--glass-border);
            background: rgba(8, 15, 40, 0.95);
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .contract-copy {
            white-space: nowrap;
        }
        
        .supply-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        
        .supply-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
        }
        
        .supply-value {
            margin-left: 6px;
            font-weight: 700;
            color: #ffffff;
        }
        
        /* Tokenomics Section */
        .tokenomics {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 16px;
            background: linear-gradient(to right, var(--accent-violet), var(--accent-cyan));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .tokenomics-visual {
            position: relative;
            max-width: 900px;
            margin: 40px auto 0;
            padding: 80px 40px 120px;
        }
        
        .tokenomics-visual::before {
            content: '';
            position: absolute;
            inset: -10%;
            background:
                radial-gradient(circle at 50% 15%, rgba(123, 97, 255, 0.35), transparent 60%),
                radial-gradient(circle at 50% 80%, rgba(0, 245, 255, 0.25), transparent 65%);
            opacity: 0.7;
            filter: blur(4px);
            z-index: -1;
        }
        
        .tokenomics-card {
            padding: 28px 32px;
            border-radius: 32px;
        }
        
        .tokenomics-center {
            position: relative;
            max-width: 420px;
            margin: 0 auto;
            text-align: center;
        }
        
        .tokenomics-center-value {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 6px;
        }
        
        .tokenomics-center-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        .tokenomics-center-text {
            margin-top: 14px;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        .tokenomics-node {
            position: absolute;
            width: 220px;
            border-radius: 28px;
            padding: 20px 24px;
        }
        
        .tokenomics-node-top-right {
            top: 12%;
            right: 6%;
        }
        
        .tokenomics-node-bottom-left {
            bottom: 10%;
            left: 4%;
        }
        
        .tokenomics-node-bottom-center {
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 50%);
        }
        
        .tokenomics-node-bottom-right {
            bottom: 10%;
            right: 4%;
        }
        
        .tokenomics-percentage {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 6px;
            background: linear-gradient(to right, var(--accent-violet), var(--accent-cyan));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .tokenomics-card h3 {
            font-size: 1.1rem;
            margin-bottom: 6px;
        }
        
        .tokenomics-amount {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        .tokenomics-note {
            margin-top: 32px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        /* Roadmap Section */
        .roadmap {
            padding: 100px 0;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent-violet), var(--accent-cyan));
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) {
            justify-content: flex-start;
            padding-right: 50%;
        }
        
        .timeline-item:nth-child(even) {
            justify-content: flex-end;
            padding-left: 50%;
        }
        
        .timeline-content {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid var(--glass-border);
            width: 90%;
            position: relative;
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 30px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(to right, var(--accent-violet), var(--accent-cyan));
            box-shadow: 0 0 15px rgba(123, 97, 255, 0.7);
        }
        
        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -40px;
        }
        
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -40px;
        }
        
        .timeline-phase {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--accent-cyan);
        }
        
        .timeline-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .timeline-list {
            list-style: none;
        }
        
        .timeline-list li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .timeline-list li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--accent-violet);
            font-size: 12px;
        }
        
        /* Whitepaper Section */
        .whitepaper-section {
            padding: 100px 0;
        }
        
        .whitepaper-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .whitepaper-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .whitepaper-list {
            list-style: none;
            margin-top: 30px;
        }
        
        .whitepaper-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .whitepaper-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
            font-weight: bold;
        }
        
        .whitepaper-download {
            text-align: center;
            padding: 60px 40px;
        }
        
        .whitepaper-download i {
            font-size: 5rem;
            margin-bottom: 30px;
            background: linear-gradient(to right, var(--accent-violet), var(--accent-cyan));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent-violet), var(--accent-cyan));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .network-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .feature-item {
            padding: 20px;
            border-radius: 12px;
            background: rgba(123, 97, 255, 0.05);
            border: 1px solid rgba(123, 97, 255, 0.1);
        }
        
        .feature-item i {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--accent-cyan);
        }
        
        /* Footer */
        footer {
            background: var(--bg-secondary);
            padding: 80px 0 30px;
            border-top: 1px solid rgba(123, 97, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--accent-violet), var(--accent-cyan));
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        
        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(123, 97, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-cyan);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: rgba(123, 97, 255, 0.2);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        /* Floating Spheres */
        .floating-sphere {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(123, 97, 255, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .sphere-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation: float 15s infinite ease-in-out;
        }
        
        .sphere-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            right: 8%;
            animation: float 18s infinite ease-in-out reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content, .about-content, .whitepaper-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .live-stats-card {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .live-stats-right {
                margin-left: 0;
                width: 100%;
            }
            
            .tokenomics-visual {
                padding: 60px 20px 100px;
            }
            
            .tokenomics-node {
                width: 200px;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding: 0 0 0 80px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            nav ul {
                display: none;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .network-features {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .live-stats-card {
                padding: 32px 24px;
            }
            
            .live-stats-left {
                max-width: 100%;
                margin-bottom: 24px;
            }
            
            .live-stats-right {
                margin-left: 0;
                width: 100%;
            }
            
            .supply-row {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .tokenomics-visual {
                margin-top: 24px;
                padding: 0;
            }
            
            .tokenomics-center {
                max-width: 100%;
            }
            
            .tokenomics-node {
                position: static;
                width: 100%;
                margin-top: 16px;
                transform: none;
            }
            
            .tokenomics-note {
                margin-top: 24px;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    