:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #4a90e2;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
            --border-radius: 8px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-outline-light {
            border-width: 2px;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s;
        }
        .btn-outline-light:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        .feature-card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            overflow: hidden;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .review-card {
            background-color: var(--bg-light);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-color);
        }
        .rating {
            color: #ffc107;
        }
        .tag {
            display: inline-block;
            background-color: #e9ecef;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            margin: 0.25rem;
            font-size: 0.875rem;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #bdc3c7;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .copyright {
            border-top: 1px solid #34495e;
            padding-top: 1rem;
            margin-top: 2rem;
            font-size: 0.875rem;
            color: #95a5a6;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
            margin: 1.5rem 0;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
