:root {
            --primary-color: #ff6b35;
            --secondary-color: #2e86ab;
            --accent-color: #f9c74f;
            --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%);
        }
        .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;
        }
        .logo-text {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 3.5rem;
            color: var(--accent-color);
            text-shadow: 3px 3px 0 var(--primary-color);
            margin-bottom: 20px;
        }
        .nav-custom {
            background-color: var(--dark-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-custom .navbar-brand {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.5rem;
        }
        .nav-custom .nav-link {
            color: white;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-custom .nav-link:hover {
            color: var(--accent-color);
        }
        .content-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        h1, h2, h3 {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
        }
        h2 {
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
        }
        h3 {
            color: var(--primary-color);
        }
        .highlight-text {
            background-color: rgba(255, 107, 53, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(255, 107, 53, 0.3);
        }
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-secondary-custom:hover {
            background-color: #1f6a8a;
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(46, 134, 171, 0.3);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 8px 15px;
            border-radius: 50px;
            margin: 5px;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s;
        }
        .tag-badge:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
        }
        .footer-section {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .stat-box {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 20px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .rating-stars {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
