/* assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #f5c518;
    --primary-dark: #e6b800;
    --primary-light: #ffd966;
    --dark: #0a0f1e;
    --dark-light: #1a1f2f;
    --dark-lighter: #2a2f3f;
    --gray: #8892b0;
    --light: #b0b8d1;
    --white: #ffffff;
    --danger: #ff4d4d;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 30px rgba(245, 197, 24, 0.2);
}

body {
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Navigation */
.navbar {
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 2px 20px rgba(245, 197, 24, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--primary));
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.7rem;
    display: block;
    color: var(--gray);
    -webkit-text-fill-color: var(--gray);
    letter-spacing: 1px;
    font-weight: 400;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}

.book-btn {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 800 !important;
    border: 2px solid var(--primary);
}

.book-btn:hover {
    background: transparent;
    color: var(--primary) !important;
}

.book-btn::after {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23f5c518" stroke-width="2"/><circle cx="50" cy="50" r="10" fill="none" stroke="%23f5c518" stroke-width="2"/></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.bgmi-text {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
    display: block;
    font-size: 3.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    display: inline-block;
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow);
}

/* Match Types Section */
.match-types {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-title h2 span {
    color: var(--primary);
    text-decoration: underline;
}

.section-title p {
    color: var(--light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.match-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 2px solid rgba(245, 197, 24, 0.2);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(5px);
}

.match-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.match-card.selected {
    border-color: var(--primary);
    background: rgba(245, 197, 24, 0.1);
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.2);
}

.match-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.match-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.match-card .match-type {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.match-card .players-count {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.booking-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem;
    border-radius: 25px;
    margin: 0.8rem 0;
}

.booking-amount small {
    font-size: 0.7rem;
    color: var(--gray);
    display: block;
}

.card-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: var(--primary);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Booking Section */
.booking-section {
    padding: 3rem 1rem 4rem;
    background: var(--dark);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(245, 197, 24, 0.2);
    backdrop-filter: blur(10px);
}

.selected-match-info {
    background: rgba(245, 197, 24, 0.1);
    padding: 1.2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
}

.selected-match-info h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.selected-match-info p {
    font-size: 0.95rem;
    color: var(--light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary);
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(245, 197, 24, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
    font-size: 0.9rem;
}

.form-control.error {
    border-color: var(--danger);
}

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
}

.time-slot {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(245, 197, 24, 0.2);
    border-radius: 12px;
    padding: 0.8rem 0.3rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.time-slot:hover {
    background: rgba(245, 197, 24, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.time-slot small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 2px;
}

/* Pro Package */
.pro-package {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.1) 0%, rgba(10, 15, 30, 0.9) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid var(--primary);
}

.pro-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.pro-icon {
    font-size: 2rem;
}

.pro-header h4 {
    font-size: 1.2rem;
    color: var(--primary);
}

.pro-features {
    list-style: none;
    margin-bottom: 1.2rem;
}

.pro-features li {
    color: var(--light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.pro-check {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pro-check input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.pro-check label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
}

.pro-check small {
    color: var(--primary);
    font-size: 0.8rem;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Policy Note */
.policy-note {
    background: rgba(255, 77, 77, 0.1);
    border-left: 4px solid var(--danger);
    padding: 1.2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--light);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.policy-note i {
    color: var(--danger);
    font-size: 1.3rem;
}

.policy-note strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

/* Booking Summary */
.booking-summary {
    background: var(--dark-light);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--gray);
    font-size: 0.95rem;
}

.summary-value {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    padding-top: 1rem;
}

.total-row .summary-value {
    color: var(--primary);
    font-size: 1.3rem;
}

.per-ball-note {
    text-align: center;
    color: var(--light);
    font-size: 0.9rem;
    margin: 1.2rem 0;
    padding: 0.8rem;
    background: rgba(245, 197, 24, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.per-ball-note i {
    color: var(--primary);
}

.btn-book {
    width: 100%;
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-book:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-book:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Features Section */
.features-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(245, 197, 24, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 4rem 1rem;
    background: var(--dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.step p {
    color: var(--light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 3rem 1rem;
    border-top: 2px solid var(--primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p, .footer-col a {
    color: var(--light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col i {
    margin-right: 8px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(245, 197, 24, 0.2);
    color: var(--gray);
    font-size: 0.85rem;
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.loading-spinner.active {
    display: flex;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--dark-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-spinner p {
    color: var(--white);
    font-size: 1.1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark-light);
    border-radius: 24px;
    padding: 2rem;
    max-width: 450px;
    width: 100%;
    border: 2px solid var(--primary);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-icon {
    font-size: 4rem;
    color: var(--success);
    text-align: center;
    margin-bottom: 1rem;
}

.modal h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.modal-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.modal-details p {
    margin-bottom: 0.8rem;
    color: var(--light);
    font-size: 0.95rem;
}

.modal-details strong {
    color: var(--white);
}

.modal-note {
    background: rgba(255, 77, 77, 0.1);
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--light);
    margin: 1.5rem 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.modal-note i {
    color: var(--danger);
    font-size: 1.2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    flex: 1;
    padding: 12px;
    font-size: 0.95rem;
}

/* My Bookings Page */
.bookings-page {
    padding: 3rem 1rem;
    min-height: 60vh;
}

.bookings-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bookings-header h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.bookings-header p {
    color: var(--light);
}

.bookings-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow-x: auto;
}

.bookings-table table {
    width: 100%;
    border-collapse: collapse;
}

.bookings-table th {
    background: var(--dark-light);
    color: var(--primary);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.bookings-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(245, 197, 24, 0.1);
    color: var(--light);
}

.bookings-table tr:hover td {
    background: rgba(245, 197, 24, 0.05);
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bg-success { background: var(--success); color: var(--white); }
.bg-warning { background: var(--warning); color: var(--dark); }
.bg-danger { background: var(--danger); color: var(--white); }
.bg-primary { background: var(--primary); color: var(--dark); }
.bg-secondary { background: var(--gray); color: var(--white); }

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .bgmi-text {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 62px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 15, 30, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        transition: 0.3s;
        gap: 1.5rem;
        border-bottom: 2px solid var(--primary);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .bgmi-text {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .match-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-container {
        padding: 1.5rem;
    }

    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .bgmi-text {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .match-grid {
        grid-template-columns: 1fr;
    }

    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .booking-container {
        padding: 1rem;
    }

    .pro-check {
        flex-direction: column;
        align-items: flex-start;
    }

    .pro-check small {
        margin-left: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .modal-content {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-muted { color: var(--gray); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-center { text-align: center; }

.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Print Styles */
@media print {
    .navbar, .hero-buttons, .btn-book, .footer {
        display: none;
    }
}