:root {
            --primary-color: #8B4513;
            --secondary-color: #CD853F;
            --accent-color: #D2691E;
            --text-dark: #2F4F4F;
            --text-light: #F5F5DC;
            --bg-light: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.7;
        }
        .hero-section {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(205, 133, 63, 0.8)), url('https://via.placeholder.com/1920x600') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-custom {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-custom .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-custom .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .btn-custom {
            background-color: var(--accent-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-custom:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .content-section {
            padding: 60px 0;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 20px;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        h1, h2, h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
        }
        .highlight {
            background-color: rgba(210, 105, 30, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .tag {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }
        .footer {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 40px 0 20px;
        }
        .footer a {
            color: var(--secondary-color);
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--text-light);
        }
        .stats-box {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .stats-box:hover {
            transform: translateY(-5px);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
        }
