.title {
    color: green;
}



        /* --- CSS VARIABLES (BRAND COLORS) --- */
        :root {
            --brand-bg: #0b0c15; /* Dark background from logo depth */
            --brand-purple: #6a0dad; /* Primary Logo Purple */
            --brand-purple-light: #9d4edd;
            --brand-neon-green: #39ff14; /* The 'G' and cubes */
            --brand-orange: #ff9100; /* The pencil */
            --text-white: #ffffff;
            --card-bg: #151621;
            
            --font-heading: 'Fredoka', sans-serif; /* Friendly, rounded, readable */
            --font-accent: 'Press Start 2P', cursive; /* Retro gamer vibe for small accents */
        }

        /* --- GLOBAL RESET & TYPOGRAPHY --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--brand-bg);
            color: var(--text-white);
            font-family: var(--font-heading);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(106, 13, 173, 0.2) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(57, 255, 20, 0.1) 0%, transparent 20%);
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- HEADER & NAVIGATION --- */
        header {
            background: rgba(11, 12, 21, 0.95);
            border-bottom: 2px solid var(--brand-purple);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 0 15px rgba(106, 13, 173, 0.5);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr; /* Ensures Logo is dead center */
            align-items: center;
        }

        /* Navigation Links */
        .nav-link {
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--brand-neon-green);
            text-shadow: 0 0 8px var(--brand-neon-green);
        }

        /* Alignment helpers */
        .nav-left { text-align: left; }
        .nav-right { text-align: right; }

        /* Logo Styling */
        .logo-container {
            text-align: center;
            position: relative;
        }

        .brand-logo {
            height: 180px; /* Adjustable based on actual logo file aspect ratio */
            width: auto;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
        }

        .brand-logo:hover {
            transform: scale(1.1) rotate(-2deg);
        }

        /* --- HERO SECTION --- */
        .hero {
            text-align: center;
            padding: 4rem 1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .highlight-green { color: var(--brand-neon-green); }
        .highlight-orange { color: var(--brand-orange); }

        .hero p {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--brand-purple);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            border: 3px solid var(--brand-purple-light);
            box-shadow: 0 0 15px var(--brand-purple);
            transition: all 0.2s;
        }

        .cta-button:hover {
            background-color: var(--brand-neon-green);
            border-color: #fff;
            color: var(--brand-bg);
            box-shadow: 0 0 25px var(--brand-neon-green);
            transform: translateY(-3px);
            cursor: pointer;
        }

        /* --- PRODUCTS GRID (WooCommerce Simulation) --- */
        .products-section {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            border-left: 5px solid var(--brand-orange);
            padding-left: 1rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        /* Product Card */
        .product-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            border-color: var(--brand-neon-green);
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        .product-image-placeholder {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, #222, #333);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            font-size: 3rem;
        }

        .product-info {
            padding: 1.5rem;
            text-align: center;
        }

        .product-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .product-price {
            font-family: var(--font-accent);
            color: var(--brand-orange);
            font-size: 1rem;
            margin-bottom: 1rem;
            display: block;
        }

        .add-to-cart {
            width: 100%;
            padding: 0.8rem;
            background: transparent;
            border: 2px solid var(--brand-neon-green);
            color: var(--brand-neon-green);
            font-family: var(--font-heading);
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }

        .add-to-cart:hover {
            background: var(--brand-neon-green);
            color: var(--brand-bg);
        }

        /* --- FOOTER --- */
        footer {
            margin-top: 4rem;
            padding: 2rem;
            background-color: #000;
            text-align: center;
            border-top: 1px solid #333;
        }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 768px) {
            .nav-container {
                grid-template-columns: 1fr;
                gap: 1rem;
                text-align: center;
            }
            
            .nav-left, .nav-right {
                text-align: center;
            }
            
            .brand-logo {
                height: 60px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
        }
 