:root {
            --primary-color: #8B4513;
            --secondary-color: #FFD700;
            --accent-color: #DC143C;
            --text-dark: #2C1810;
            --text-light: #F5F5F5;
            --bg-light: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
        }
        .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);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        .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;
        }
        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 3rem 0 1.5rem 0;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--accent-color);
            margin: 2rem 0 1rem 0;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 3rem;
            margin: 2rem 0;
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-color);
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: scale(1.05);
            text-decoration: none;
            color: white;
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        footer {
            background: linear-gradient(135deg, var(--primary-color), #5D4037);
            color: var(--text-light);
            padding: 3rem 0 1rem 0;
        }
        .footer-links a {
            color: var(--secondary-color);
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 2rem 1.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
        .content-paragraph {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
        }
        .rating-stars {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
