        :root {
            --yellow: #f4c025;
            --orange: #d15610;
            --bg-dark: #1a1a1b;
            --bg-darker: #0d0d0d;
            --neon-green: #39ff14;
            --neon-red: #ff073a;
            --neon-blue: #00d4ff;
            --text-main: #e0e0e0;
            --border: 3px solid #000;
            --shadow: 8px 8px 0px #000;
        }

        body {
            background: var(--bg-darker);
            color: var(--text-main);
            font-family: 'Share Tech Mono', monospace;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 50% 50%, transparent 60%, rgba(0,0,0,0.9) 100%),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px);
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
            pointer-events: none;
            z-index: 1000;
        }

        h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; margin: 0; }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .top-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .brand-nav {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            margin-left: auto;
        }

        .brand-tag {
            font-family: 'Oswald', sans-serif;
            background: #0b1318;
            color: var(--neon-blue);
            border: var(--border);
            box-shadow: 4px 4px 0 #000;
            padding: 10px 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1;
        }

        .hero {
            position: relative;
            background: var(--bg-dark);
            border: var(--border);
            box-shadow: var(--shadow);
            padding: 3rem 2rem;
            margin-bottom: 3rem;
            transform: rotate(0.8deg);
            overflow: hidden;
        }

        .hero::before {
            content: "LOCAL VALUE";
            position: absolute;
            top: 20px;
            right: -40px;
            background: var(--neon-blue);
            color: #000;
            font-weight: bold;
            padding: 5px 50px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            letter-spacing: 2px;
        }

        .brand-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 2rem;
        }

        .brand-logo {
            width: 80px;
            height: 80px;
            background: #000;
            border: 2px solid var(--neon-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--neon-blue);
            font-weight: bold;
            box-shadow: 4px 4px 0 var(--neon-blue);
        }

        .brand-title-wrap h1 {
            font-size: 3.5rem;
            color: var(--neon-blue);
            text-shadow: 3px 3px 0 #000;
            line-height: 1;
        }

        .brand-tagline {
            color: #888;
            font-style: italic;
            font-size: 1.1rem;
            margin-top: 5px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            border-top: 2px solid #333;
            padding-top: 2rem;
        }

        .stat-box {
            background: rgba(0,0,0,0.4);
            border-left: 4px solid var(--neon-blue);
            padding: 1rem;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #666;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .stat-value {
            font-size: 1.2rem;
            color: #fff;
            font-family: 'Oswald', sans-serif;
        }

        .gamified-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .card {
            background: #111;
            border: 2px solid #000;
            box-shadow: 6px 6px 0 #000;
            padding: 1.5rem;
        }

        .card h2 {
            font-size: 1.4rem;
            color: var(--neon-green);
            margin-bottom: 1rem;
            border-bottom: 1px solid #333;
            padding-bottom: 0.5rem;
        }

        .rating-bar {
            height: 12px;
            background: #222;
            margin-bottom: 15px;
            position: relative;
            border: 1px solid #000;
        }

        .rating-fill {
            height: 100%;
            background: var(--neon-green);
            box-shadow: 0 0 10px var(--neon-green);
        }

        .rating-text {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            margin-top: 4px;
            color: #888;
        }

        .content-section {
            background: #151515;
            border: 2px solid #222;
            padding: 2rem;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .content-section h2 {
            color: var(--neon-blue);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .content-section h2::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--neon-blue);
        }

        .content-section p {
            margin-bottom: 1.5rem;
            color: #ccc;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #222;
            padding-bottom: 1rem;
        }

        .faq-q {
            color: #fff;
            font-weight: bold;
            margin-bottom: 5px;
            display: block;
        }

        .faq-a {
            color: #aaa;
        }

        .stockist-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1rem;
        }

        .stockist-tag {
            background: #000;
            border: 1px solid var(--neon-blue);
            color: var(--neon-blue);
            padding: 5px 15px;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .nav-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 4rem;
            border-top: 2px solid #333;
            padding-top: 2rem;
        }

        .back-btn {
            font-family: 'Oswald', sans-serif;
            background: var(--bg-dark);
            color: var(--yellow);
            border: var(--border);
            padding: 10px 25px;
            text-decoration: none;
            box-shadow: 4px 4px 0 #000;
            transition: 0.1s;
        }

        .back-btn[aria-disabled="true"] {
            opacity: 0.4;
            pointer-events: none;
        }

        .back-btn:hover {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 #000;
        }

        @media (max-width: 600px) {
            .brand-header { flex-direction: column; text-align: center; }
            .brand-title-wrap h1 { font-size: 2.5rem; }
            .hero-grid { grid-template-columns: 1fr; }
        }
