 
        :root {
            /* Brand palette from the supplied Logo */
            --bg-dark-outback: #000000; /* pure black */
            --cyber-gold: #D4AF37; /* gold from logo */
            --cyber-ochre: #fb8500;
            --neon-amber: #ffca3a;
            --neon-cyan: #00f0ff;
            --matrix-green: #2ECC71; /* green from logo */
            --text-light: #FFFFFF; /* white text */
            --text-muted-cyber: #94a3b8;

            /* Premium Dark Glass Variables */
            --dark-glass-bg: rgba(10, 10, 10, 0.85);
            --dark-glass-border: rgba(212, 175, 55, 0.18);
            --glass-blur: blur(20px);
        }

        /* Prevent Horizontal Overflow Globally */
        * {
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden !important;
            position: relative;
        }

        /* Continuous High-Energy Animations */
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(0.5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        @keyframes pulse-glow {
            0% { filter: drop-shadow(0 0 12px var(--cyber-gold)) drop-shadow(0 0 20px rgba(255, 183, 3, 0.2)); }
            50% { filter: drop-shadow(0 0 25px var(--neon-cyan)) drop-shadow(0 0 35px rgba(0, 240, 255, 0.2)); }
            100% { filter: drop-shadow(0 0 12px var(--cyber-gold)) drop-shadow(0 0 20px rgba(255, 183, 3, 0.2)); }
        }

        @keyframes gradient-bg {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes border-dance {
            0% { border-color: var(--cyber-gold); box-shadow: 0 0 15px rgba(255, 183, 3, 0.4); }
            50% { border-color: var(--neon-cyan); box-shadow: 0 0 15px rgba(0, 240, 255, 0.4); }
            100% { border-color: var(--cyber-gold); box-shadow: 0 0 15px rgba(255, 183, 3, 0.4); }
        }

        @keyframes text-glitch {
            0% { text-shadow: 2px 2px var(--cyber-gold), -2px -2px var(--neon-cyan); }
            50% { text-shadow: -2px 2px var(--neon-cyan), 2px -2px var(--cyber-ochre); }
            100% { text-shadow: 2px 2px var(--cyber-gold), -2px -2px var(--neon-cyan); }
        }

        @keyframes ticker-scroll {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* Vivid Layout Structural Mesh & Grid Systems */
        .bg-grid {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(to right, rgba(255, 183, 3, 0.03) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(251, 133, 0, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -2;
            pointer-events: none;
        }

        body {
            font-family: 'Space Mono', monospace;
            color: var(--text-light);
            background-color: var(--bg-dark-outback);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(251, 133, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
            line-height: 1.6;
        }

        /* Custom Dynamic Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark-outback); }
        ::-webkit-scrollbar-thumb { 
            background: linear-gradient(var(--cyber-gold), var(--cyber-ochre)); 
            border-radius: 4px;
        }

        /* Dark Cyber Glass Navigation Bar */
        .navbar {
            background-color: rgba(10, 12, 10, 0.9);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border-bottom: 2px solid var(--cyber-gold);
            box-shadow: 0 4px 30px rgba(255, 183, 3, 0.1);
            padding: 0.8rem 0;
            z-index: 1030;
        }
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            color: var(--text-light) !important;
            letter-spacing: 2px;
            animation: text-glitch 5s infinite linear;
            text-decoration: none;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0 12px;
            transition: all 0.3s ease;
            letter-spacing: 1.5px;
            font-size: 0.85rem;
        }
        .nav-link:hover { 
            color: var(--cyber-gold) !important; 
            text-shadow: 0 0 8px rgba(255, 183, 3, 0.6);
            transform: translateY(-1px);
        }

        /* Ticker Tape System */
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            background: #000;
            border-bottom: 1px solid rgba(255, 183, 3, 0.3);
            padding: 10px 0;
            position: relative;
        }
        .ticker {
            display: inline-block;
            white-space: nowrap;
            padding-right: 100%;
            animation: ticker-scroll 25s linear infinite;
        }
        .ticker-item {
            display: inline-block;
            padding: 0 2rem;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .ticker-item span {
            color: var(--matrix-green);
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 140px 15px 60px;
            position: relative;
        }
        
        .hero-character-frame {
            width: clamp(240px, 28vw, 320px);
            height: clamp(240px, 28vw, 320px);
            border-radius: 24px;
            border: 4px solid var(--cyber-gold);
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(255, 183, 3, 0.25);
            animation: pulse-glow 4s infinite ease-in-out, float 5s infinite ease-in-out;
            margin-bottom: 30px;
            display: inline-block;
        }

        .site-logo {
            width: clamp(120px, 16vw, 180px);
            height: auto;
            display: block;
            margin-bottom: 18px;
            border-radius: 12px;
            border: 2px solid var(--cyber-gold);
            box-shadow: 0 8px 20px rgba(212,175,55,0.12);
            object-fit: contain;
            background: rgba(255,255,255,0.02);
        }

        .hero-cta .cta-btn { padding: 12px 22px; }

        .hero-description { color: var(--text-muted-cyber); max-width: 900px; }

        .section-panel { border-top: 1px solid rgba(212,175,55,0.06); }

        .main-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: clamp(3.5rem, 9vw, 7rem);
            background: linear-gradient(45deg, var(--text-light), var(--cyber-gold), var(--cyber-ochre), var(--neon-cyan));
            background-size: 300% 300%;
            animation: gradient-bg 8s ease infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 4px;
            margin-bottom: 10px;
        }
        .hero-subtitle {
            font-size: clamp(0.95rem, 2vw, 1.3rem);
            color: var(--cyber-gold);
            text-shadow: 0 0 8px rgba(255, 183, 3, 0.3);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 25px;
            font-weight: bold;
        }

        /* Clickable CA Token Bar Elements */
        .ca-container-bar {
            background: rgba(0, 0, 0, 0.6);
            border: 2px dashed var(--cyber-gold);
            padding: 12px 20px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            max-width: 100%;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .ca-container-bar:hover {
            background: rgba(255, 183, 3, 0.1);
            border-style: solid;
        }
        .ca-text-hash {
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: clamp(0.7rem, 2.2vw, 0.95rem);
            color: var(--matrix-green);
            letter-spacing: 1px;
            word-break: break-all;
        }

        /* Professional Content Terminal Cards */
        .cyber-card {
            background: var(--dark-glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 2px solid var(--dark-glass-border);
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
        }
        .cyber-card:hover {
            border-color: var(--cyber-gold);
            box-shadow: 0 10px 25px rgba(255, 183, 3, 0.15);
            transform: translateY(-2px);
        }
        .card-accent-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 1.3rem;
            color: var(--text-light);
            letter-spacing: 1.5px;
            border-bottom: 2px solid rgba(255, 183, 3, 0.2);
            padding-bottom: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* How to Buy Pipeline Elements */
        .step-node {
            position: relative;
            padding-left: 55px;
            margin-bottom: 25px;
        }
        .step-node:last-child { margin-bottom: 0; }
        .step-number {
            position: absolute;
            left: 0; top: 0;
            width: 38px; height: 38px;
            background: linear-gradient(135deg, var(--cyber-gold), var(--cyber-ochre));
            color: #000;
            border-radius: 10px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(255, 183, 3, 0.3);
        }
        .step-title {
            font-weight: 700;
            color: var(--cyber-gold);
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        .step-text {
            font-size: 0.88rem;
            color: var(--text-muted-cyber);
            margin-bottom: 0;
        }

        /* Live Utility Display Data Metrics */
        .metric-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px dashed rgba(255, 183, 3, 0.15);
        }
        .metric-row:last-child { border-bottom: none; }
        .metric-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            color: var(--text-muted-cyber);
            letter-spacing: 1px;
        }
        .metric-value {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-light);
        }
        .metric-value.highlight {
            color: var(--matrix-green);
            text-shadow: 0 0 6px rgba(57, 255, 20, 0.3);
        }

        /* Interactive Terminal Form Components */
        .cyber-input-group {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--cyber-gold);
            border-radius: 10px;
            padding: 5px 15px;
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .cyber-input {
            background: transparent;
            border: none;
            color: var(--matrix-green);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            width: 100%;
            outline: none;
            padding: 8px 0;
        }
        .cyber-input::placeholder { color: rgba(148, 163, 184, 0.4); }

        /* Premium Visual Media Hub Grid */
        .section-hub-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            background: linear-gradient(90deg, var(--cyber-gold), var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 3px;
            text-align: center;
        }
        .comic-frame {
            background: var(--dark-glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 2px solid var(--dark-glass-border);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
            height: 100%;
            position: relative;
        }
        .comic-frame:hover {
            transform: scale(1.02) translateY(-4px);
            animation: border-dance 2.5s infinite linear;
        }
        .comic-img-wrapper {
            position: relative;
            background: #000;
            overflow: hidden;
            aspect-ratio: 1/1;
        }
        .comic-img-wrapper img {
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .comic-frame:hover .comic-img-wrapper img {
            transform: scale(1.05);
        }
        .solution-infographic {
            border: 2px solid rgba(212,175,55,0.12);
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            max-height: 520px;
            object-fit: contain;
        }
        .panel-badge {
            position: absolute;
            top: 15px; left: 15px;
            background: linear-gradient(45deg, var(--cyber-gold), var(--cyber-ochre));
            color: #000;
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            box-shadow: 0 4px 10px rgba(255, 183, 3, 0.3);
            z-index: 10;
            letter-spacing: 1px;
        }
        .comic-caption {
            padding: 18px 15px;
            background: rgba(10, 12, 10, 0.95);
            border-top: 2px solid var(--cyber-gold);
            font-size: 0.9rem;
            font-weight: 700;
            text-align: center;
            color: var(--text-light);
        }

        /* Roadmap Architecture Timeline Components */
        .roadmap-node-card {
            border-left: 3px solid var(--cyber-gold);
            padding-left: 20px;
            position: relative;
            margin-bottom: 30px;
        }
        .roadmap-node-card::before {
            content: '';
            position: absolute;
            left: -8px; top: 0;
            width: 13px; height: 13px;
            background: var(--cyber-gold);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--cyber-gold);
        }
        .roadmap-node-card.active-phase {
            border-left-color: var(--neon-cyan);
        }
        .roadmap-node-card.active-phase::before {
            background: var(--neon-cyan);
            box-shadow: 0 0 10px var(--neon-cyan);
        }

        /* Fact items */
        .fact-item {
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        .fact-tag {
            display: block;
            font-weight: bold;
            color: var(--cyber-gold);
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        /* Rules list custom layout */
        .rules-list {
            list-style: none;
            padding-left: 0;
        }
        .rules-list li {
            margin-bottom: 12px;
            font-size: 0.9rem;
            display: flex;
            align-items: start;
            gap: 8px;
        }
        .text-neon-green { color: var(--matrix-green); }

        /* Accordion Core Styling overrides */
        .accordion-item {
            background: rgba(15, 18, 15, 0.6) !important;
            border: 1px solid var(--dark-glass-border) !important;
            border-radius: 12px !important;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .accordion-button {
            background: transparent !important;
            color: var(--text-light) !important;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            box-shadow: none !important;
            padding: 20px;
        }
        .accordion-button:not(.collapsed) {
            color: var(--cyber-gold) !important;
            border-bottom: 1px solid rgba(255, 183, 3, 0.2);
        }
        .accordion-button::after {
            filter: invert(1);
        }
        .accordion-body {
            color: var(--text-muted-cyber);
            font-size: 0.9rem;
            background: rgba(0, 0, 0, 0.2);
        }

        /* Social Interface Handles System */
        .social-buttons-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .social-svg-link {
            width: 60px; height: 60px;
            display: flex;
            justify-content: center; align-items: center;
            border-radius: 50%;
            background: rgba(15, 18, 15, 0.8);
            border: 2px solid var(--cyber-gold);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 183, 3, 0.1);
        }
        .social-svg-link svg {
            width: 26px; height: 26px;
            fill: var(--text-light);
            transition: all 0.3s ease;
        }
        .social-svg-link.x-link:hover {
            border-color: var(--neon-cyan);
            background: rgba(0, 240, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 240, 255, 0.3);
        }
        .social-svg-link.x-link:hover svg { fill: var(--neon-cyan); }
        
        .social-svg-link.tg-link:hover {
            border-color: var(--cyber-gold);
            background: rgba(255, 183, 3, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 183, 3, 0.3);
        }
        .social-svg-link.tg-link:hover svg { fill: var(--cyber-gold); }

        /* Actions System Core CTAs */
        .cta-btn {
            background: linear-gradient(45deg, var(--bg-dark-outback), rgba(251, 133, 0, 0.3));
            color: #fff;
            padding: 16px 32px;
            border-radius: 14px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 183, 3, 0.1);
            letter-spacing: 2px;
            border: 2px solid var(--cyber-gold);
            text-transform: uppercase;
        }
        .cta-btn:hover {
            transform: translateY(-2px);
            background: linear-gradient(45deg, var(--cyber-gold), var(--cyber-ochre));
            color: #000;
            box-shadow: 0 8px 25px rgba(255, 183, 3, 0.35);
        }

        footer {
            padding: 50px 15px;
            border-top: 2px solid var(--cyber-gold);
            text-align: center;
            background: rgba(5, 6, 5, 0.95);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--bg-dark-outback);
                padding: 20px;
                border-radius: 14px;
                border: 2px solid var(--cyber-gold);
                margin-top: 15px;
            }
            .nav-link {
                margin: 10px 0;
                display: block;
            }
        }

        .language-switcher{
    display:flex;
    gap:8px;
    margin-left:20px;
}

.language-btn{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.2);
    color:white;
    padding:6px 12px;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
    font-size:14px;
    font-weight:700;
}

.language-btn:hover{
    background:rgba(0,240,255,0.15);
}

.language-btn.active{
    background:#00f0ff;
    color:#000;
    border-color:#00f0ff;
}
    