:root {
            --primary-color: #ff6b35;
            --secondary-color: #1a5276;
            --accent-color: #f39c12;
            --text-color: #2c3e50;
            --light-bg: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .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);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(255, 107, 53, 0.8)), url('https://via.placeholder.com/1600x900') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-bottom: 30px;
        }
        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-top: 2rem;
        }
        .key-feature {
            background: var(--light-bg);
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            border-left: 4px solid var(--accent-color);
            transition: transform 0.3s ease;
        }
        .key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .nav-pills .nav-link.active {
            background-color: var(--primary-color);
            font-weight: 600;
        }
        .nav-pills .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
        }
        .table-custom {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .table-custom th {
            background-color: var(--secondary-color);
            color: white;
        }
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .highlight {
            background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 25px;
            }
        }
        .content-section p {
            margin-bottom: 1.5rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--secondary-color);
            font-weight: 600;
        }
