body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FFD700; padding: 15px; border-radius: 10px; margin-bottom: 25px; }
        .logo { font-size: 28px; font-weight: bold; color: #FF4500; text-align: center; }
        nav { display: flex; justify-content: space-around; margin: 15px 0; }
        nav a { color: #0066CC; text-decoration: none; font-weight: bold; }
        .mobile-nav { display: none; }
        h1 { color: #FF4500; border-bottom: 3px solid #FFD700; padding-bottom: 10px; }
        h2 { color: #0066CC; margin-top: 30px; }
        h3 { color: #FF8C00; }
        .btn { display: inline-block; padding: 12px 25px; background: #0066CC; color: white; border-radius: 5px; text-decoration: none; margin: 15px 0; }
        .game-img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .table-stats { width: 100%; border-collapse: collapse; margin: 20px 0; }
        .table-stats th, .table-stats td { border: 1px solid #ddd; padding: 12px; text-align: left; }
        .table-stats th { background-color: #FFD700; }
        footer { margin-top: 40px; padding: 20px; background: #333; color: white; text-align: center; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-nav { display: block; text-align: center; }
            .btn { width: 90%; text-align: center; }
        }
