:root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --accent-color: #ffd166;
            --dark-color: #2d3047;
            --light-color: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #fff;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
            border-radius: 0 0 20px 20px;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-outline-light {
            border-width: 2px;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
        }
        .btn-outline-light:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .section-title {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .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: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 2rem 0;
        }
        .tag {
            display: inline-block;
            background-color: #f0f0f0;
            color: #555;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin: 0.2rem;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        .game-type {
            display: inline-block;
            background-color: var(--dark-color);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin: 0.2rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .game-type:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
            margin: 1.5rem 0;
        }
        .rating-stars {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                text-align: center;
            }
            .section-title {
                font-size: 1.5rem;
            }
        }
