:root {
            --primary-color: #ff6b35;
            --secondary-color: #4ecdc4;
            --accent-color: #45b7d1;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
            --gold-color: #f39c12;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.9)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .section-title {
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin: 40px 0 25px;
            font-weight: 700;
            color: var(--text-dark);
        }
        .content-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-color), #ff8e53);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 107, 53, 0.4);
        }
        .btn-secondary-custom {
            background: linear-gradient(45deg, var(--secondary-color), #56d4c2);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
        }
        .btn-secondary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(78, 205, 196, 0.4);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .tag {
            display: inline-block;
            background: #e0f7fa;
            color: #00695c;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: #b2ebf2;
            transform: scale(1.05);
            text-decoration: none;
            color: #00695c;
        }
        .game-type {
            display: inline-block;
            background: #fff3e0;
            color: #e65100;
            padding: 8px 20px;
            border-radius: 50px;
            margin: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background: #ffe0b2;
            transform: scale(1.05);
            text-decoration: none;
            color: #e65100;
        }
        .rating-stars {
            color: var(--gold-color);
            font-size: 1.2rem;
        }
        .review-card {
            border-left: 4px solid var(--secondary-color);
            background: #f8f9fa;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 0 8px 8px 0;
        }
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer a {
            color: #bdc3c7;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #4a5f7a;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        .img-fluid {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .img-fluid:hover {
            transform: scale(1.02);
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
