:root {
            --primary-color: #ff6b35;
            --secondary-color: #004e98;
            --accent-color: #ffd166;
            --text-dark: #2d3142;
            --text-light: #f7f7f7;
            --bg-light: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .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);
        }
        .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-custom {
            background-color: var(--primary-color);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: #003e7a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
        }
        h2 {
            font-size: 2rem;
            border-left: 5px solid var(--primary-color);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        .highlight-text {
            background-color: var(--accent-color);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
            display: inline-block;
            margin: 0.5rem 0;
        }
        .stat-box {
            text-align: center;
            padding: 1.5rem;
            border-radius: 10px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .stat-box:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-dark);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin: 0.2rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            text-decoration: none;
            color: white;
        }
        .footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .footer a {
            color: var(--accent-color);
            transition: all 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
