:root {
            --primary-color: #8B4513;
            --secondary-color: #FFD700;
            --accent-color: #228B22;
            --text-dark: #2C1810;
            --text-light: #F5F5DC;
            --bg-light: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--bg-light) 0%, #F0E68C 100%);
            color: var(--text-dark);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.9)), url('https://via.placeholder.com/1200x600') center/cover;
            color: var(--text-light);
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin: 30px 0;
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1em 0;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), #A0522D);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .tag {
            background: var(--secondary-color);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            margin: 20px 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        footer {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 40px 0 20px;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 20px;
            }
        }
