:root {
            --primary-color: #8B4513;
            --secondary-color: #FFD700;
            --accent-color: #228B22;
            --dark-bg: #2F4F4F;
            --light-bg: #F5F5DC;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light-bg);
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--secondary-color) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(47, 79, 79, 0.8), rgba(47, 79, 79, 0.9)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
        }
        .btn-download, .btn-login {
            padding: 12px 30px;
            font-size: 1.2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin: 10px;
        }
        .btn-download {
            background-color: var(--accent-color);
            border: none;
        }
        .btn-download:hover {
            background-color: #1e7a1e;
            transform: scale(1.05);
        }
        .btn-login {
            background-color: var(--secondary-color);
            color: #333;
            border: none;
        }
        .btn-login:hover {
            background-color: #e6c200;
            transform: scale(1.05);
        }
        .content-section {
            padding: 60px 0;
        }
        .section-title {
            color: var(--primary-color);
            border-bottom: 3px solid var(--secondary-color);
            padding-bottom: 10px;
            margin-bottom: 30px;
            font-weight: bold;
        }
        .highlight-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        .highlight-box:hover {
            transform: translateY(-5px);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 20px 0;
            width: 100%;
        }
        .tag {
            display: inline-block;
            background-color: var(--primary-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(--accent-color);
            transform: scale(1.05);
            text-decoration: none;
            color: white;
        }
        .game-stat {
            text-align: center;
            padding: 20px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }
        .footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 50px 0 20px;
        }
        .footer a {
            color: var(--secondary-color);
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .game-type-link {
            color: var(--secondary-color);
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
