:root {
            --primary-color: #8B0000;
            --secondary-color: #FF9933;
            --accent-color: #138808;
            --text-dark: #333333;
            --text-light: #FFFFFF;
            --bg-light: #F8F9FA;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--bg-light) 0%, #E8F4F8 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .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 no-repeat;
            color: var(--text-light);
            padding: 100px 0;
            text-align: center;
        }
        .game-feature {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .download-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
        }
        .login-btn {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 28px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .login-btn:hover {
            background: var(--primary-color);
            color: var(--text-light);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        .tag-badge {
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.85rem;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag-badge:hover {
            transform: scale(1.05);
            color: white;
            text-decoration: none;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .review-card {
            border-left: 4px solid var(--secondary-color);
            background: white;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 15px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        footer {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: var(--text-light);
            padding: 40px 0 20px;
        }
        .game-type-link {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: var(--text-light);
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .navbar-brand {
                font-size: 1.4rem;
            }
            .stats-number {
                font-size: 2rem;
            }
        }
