:root {
            --primary-spice: #d35400;
            --secondary-mustard: #f39c12;
            --accent-coriander: #27ae60;
            --dark-bg: #2c3e50;
            --light-text: #ecf0f1;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .logo-brand {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--secondary-mustard), var(--accent-coriander));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-custom {
            background: rgba(44, 62, 80, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--primary-spice);
        }
        .nav-link {
            color: var(--light-text) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.8rem 1.2rem !important;
        }
        .nav-link:hover {
            color: var(--secondary-mustard) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://via.placeholder.com/1200x600') center/cover;
            padding: 6rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        h1, h2, h3 {
            color: var(--secondary-mustard);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-spice);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-coriander);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--primary-spice) 0%, var(--secondary-mustard) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-mustard);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .strategy-card {
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--accent-coriander);
            transition: all 0.3s ease;
        }
        .strategy-card:hover {
            transform: translateX(10px);
            background: rgba(255,255,255,0.12);
        }
        footer {
            background: var(--dark-bg);
            padding: 3rem 0;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-spice);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .hero-section { padding: 4rem 0; }
            .content-section { padding: 1.5rem; }
        }
        .emoji-divider {
            text-align: center;
            font-size: 2rem;
            margin: 2rem 0;
            opacity: 0.7;
        }
        .table-custom {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        .table-custom th {
            background: var(--primary-spice);
            color: white;
            padding: 1rem;
        }
        .table-custom td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
