:root {
            --primary-color: #ff6b35;
            --secondary-color: #2a9d8f;
            --accent-color: #e9c46a;
            --dark-color: #264653;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 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);
        }
        .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: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
        }
        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 25px;
            font-weight: 700;
        }
        h1 {
            color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 15px;
        }
        h2 {
            color: var(--secondary-color);
            padding-left: 15px;
            border-left: 5px solid var(--primary-color);
        }
        h3 {
            color: var(--dark-color);
            font-size: 1.4rem;
        }
        .key-feature {
            background: var(--light-color);
            border-left: 4px solid var(--primary-color);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(255, 107, 53, 0.4);
        }
        .btn-secondary {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: #238a7d;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(42, 157, 143, 0.4);
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            display: inline-block;
            background: var(--accent-color);
            color: var(--dark-color);
            padding: 8px 15px;
            margin: 5px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
        }
        .stat-box {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin: 15px 0;
            transition: all 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .rating-stars {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-links a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: none;
        }
        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        .nav-pills .nav-link.active {
            background: var(--primary-color);
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 25px;
            }
        }
