:root {
            --primary-orange: #ff6b35;
            --secondary-black: #1a1a1a;
            --accent-gold: #ffd700;
            --text-light: #f8f9fa;
            --bg-dark: #2c2c2c;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary-orange), var(--accent-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary-orange) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-orange);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .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;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
        }
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-orange), #ff8c42);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }
        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px);
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        h1, h2, h3 {
            color: var(--primary-orange);
            margin-bottom: 20px;
            font-weight: 700;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 3px solid var(--primary-orange);
            padding-bottom: 10px;
            display: inline-block;
        }
        h2 {
            font-size: 2rem;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
        }
        .highlight-text {
            color: var(--accent-gold);
            font-weight: 600;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-orange);
            margin-bottom: 15px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            display: block;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
            margin-bottom: 20px;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: rgba(255, 107, 53, 0.2);
            color: var(--primary-orange);
            padding: 8px 15px;
            border-radius: 50px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 53, 0.3);
        }
        .tag-badge:hover {
            background: rgba(255, 107, 53, 0.4);
            transform: translateY(-2px);
            text-decoration: none;
            color: var(--primary-orange);
        }
        .footer {
            background: var(--secondary-black);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid var(--primary-orange);
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--primary-orange);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.7);
        }
        .rating-stars {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        .player-review {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-orange);
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
        .content-paragraph {
            margin-bottom: 25px;
            text-align: justify;
        }
        .key-feature {
            background: rgba(255, 107, 53, 0.1);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-orange);
        }
