/* assets/css/style.css - Complete Optimized Version */

/* Base Imports */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

/* CSS Variables */
: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);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

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); }

/* ========== ANIMATIONS ========== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(245,197,24,0.3); }
    50% { box-shadow: 0 0 40px rgba(245,197,24,0.6); }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ========== PREMIUM EFFECTS ========== */

/* Floating Orbs */
.floating-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,197,24,0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.orb-1 { top: 10%; left: 5%; animation-delay: 0s; }
.orb-2 { bottom: 10%; right: 5%; width: 400px; height: 400px; 
         background: radial-gradient(circle, rgba(245,197,24,0.15) 0%, transparent 70%);
         animation-delay: -4s; }

/* 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;
    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::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.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;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    /*border-radius: 20px;*/
    /*border: 3px solid var(--primary);*/
    /*box-shadow: var(--shadow);*/
}

.live-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(245,197,24,0.9);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.trust-item { text-align: center; }
.trust-number { font-size: 1.5rem; color: var(--primary); }
.trust-label { font-size: 0.8rem; color: var(--gray); }

/* Quick Stats */
.quick-stats {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1000px;
    border: 1px solid rgba(245,197,24,0.1);
}

.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { color: var(--light); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* 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);
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.match-card:hover::before { left: 100%; }
.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); animation: glow 2s infinite; }

.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;
    position: relative;
    overflow: hidden;
}

.booking-amount small { font-size: 0.7rem; color: var(--gray); display: block; }

.booking-amount::after {
    content: '🔥';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 1.5rem;
    opacity: 0;
    transform: rotate(20deg);
    transition: top 0.3s, right 0.3s, opacity 0.3s;
}

.match-card:hover .booking-amount::after { top: 5px; right: 5px; opacity: 0.5; }

.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;
    animation: pulse 2s infinite;
}

.card-tooltip {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    white-space: nowrap;
    pointer-events: none;
}

.match-card:hover .card-tooltip { opacity: 1; bottom: -5px; }

/* 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);
    position: relative;
    overflow: hidden;
    width: 70vw;
}

.booking-container::before {
    content: '⚔️';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    opacity: 0.03;
    transform: rotate(15deg);
    pointer-events: none;
}

.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);
    transform-origin: left;
}

.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); }

/* Progress Bar */
.progress-container { margin: 2rem 0; position: relative; }
.progress-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.progress-header span { color: var(--gray); font-size: 0.8rem; }
.progress-header span:last-child { color: var(--primary); }
.progress-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
#progressBar { width: 0%; height: 100%; background: var(--primary); border-radius: 2px; transition: width 0.3s; }

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.form-group:focus-within { transform: translateX(10px); }

.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);
    transform: scale(1.02);
}

.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-slots-grid.loading {
    position: relative;
    min-height: 100px;
}

.time-slots-grid.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(245,197,24,0.3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

.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);
    animation: pulse 1s;
}

.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);
    position: relative;
    overflow: hidden;
}

.pro-package::before {
    content: 'PRO';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.2;
}

.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 i { color: var(--primary); }

.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;
    animation: slideIn 0.5s ease-out;
}

.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);
}

.booking-summary h4 { color: var(--primary); margin-bottom: 1rem; }

.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 */
.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); }

/* Book Button */
.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;
    position: relative;
    overflow: hidden;
}

.btn-book::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-book:active::after { width: 300px; height: 300px; }
.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; }

/* Payment Badges */
.payment-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.payment-badges span {
    color: var(--gray);
    font-size: 0.8rem;
}

.payment-badges i { color: var(--primary); }

/* 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);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(245,197,24,0.1), transparent);
    transition: height 0.3s;
    z-index: -1;
    border-radius: 20px;
}

.feature-card:hover::after { height: 100%; }
.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);
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: -1;
}

.step:hover .step-number::after { width: 80px; height: 80px; }

.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; }

/* ========== MODERN TESTIMONIALS SECTION ========== */

.testimonials-modern {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Header */
.testimonials-modern .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.testimonials-modern .section-tagline {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245,197,24,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(245,197,24,0.3);
    margin-bottom: 1rem;
}

.testimonials-modern .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.testimonials-modern .section-title span {
    color: var(--primary);
    position: relative;
}

.testimonials-modern .section-description {
    color: var(--light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Container */
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Testimonial Card */
.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245,197,24,0.15);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(245,197,24,0.15);
    background: rgba(255, 255, 255, 0.05);
}

/* Featured Card */
.testimonial-card-modern.featured {
    border: 2px solid var(--primary);
    background: rgba(245,197,24,0.05);
    transform: scale(1.02);
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: var(--primary);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-tag i {
    font-size: 0.6rem;
}

/* Quote Icon */
.testimonial-quote-icon {
    margin-bottom: 1.5rem;
}

.testimonial-quote-icon i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

/* Content */
.testimonial-content {
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-content p {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

/* Author */
.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.2rem;
}

.author-rating i {
    color: var(--primary);
    font-size: 0.8rem;
}

.author-rating span {
    color: var(--gray);
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.author-date {
    color: var(--gray);
    font-size: 0.7rem;
}

/* Verified Badge */
.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 0.75rem;
    background: rgba(245,197,24,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    width: fit-content;
}

.testimonial-badge i {
    font-size: 0.7rem;
}

/* Stats Section */
.testimonial-stats {
    max-width: 800px;
    margin: 4rem auto 2rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.02);
    border-radius: 50px;
    padding: 2rem;
    border: 1px solid rgba(245,197,24,0.1);
}

.testimonial-stats .stat-item {
    text-align: center;
}

.testimonial-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.testimonial-stats .stat-stars {
    margin: 0.3rem 0;
}

.testimonial-stats .stat-stars i {
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-stats .stat-label {
    color: var(--gray);
    font-size: 0.85rem;
}

/* CTA Section */
.testimonial-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-cta p {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 12px 30px;
    font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-card-modern.featured {
        transform: scale(1);
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .testimonials-modern .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-stats {
        gap: 2rem;
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .testimonial-stats .stat-number {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .testimonial-card-modern.featured {
        grid-column: span 1;
    }
    
    .testimonial-card-modern {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-wrap: wrap;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.2rem;
    }
    
    .featured-tag {
        top: 0.8rem;
        right: 1rem;
        padding: 0.2rem 0.8rem;
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 360px) {
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-rating {
        justify-content: center;
    }
    
    .testimonial-badge {
        margin: 0 auto;
    }
}

/* ========== END MODERN TESTIMONIALS SECTION ========== */
/* Newsletter Section */
.newsletter-section {
    padding: 4rem 1rem;
    background: var(--dark);
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form .form-control { flex: 1; }

/* ========== COMPACT FOOTER STYLES ========== */

.footer-compact {
    background: linear-gradient(135deg, #0a0f1e 0%, #030614 100%);
    border-top: 2px solid var(--primary);
    position: relative;
}

.footer-compact::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Main Footer */
.footer-main {
    padding: 2.5rem 1rem;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Brand Column */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--primary));
}

.footer-site-name {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-tagline {
    color: var(--primary);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Social Icons - Compact */
.footer-social {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Footer Titles */
.footer-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary);
}

/* Links Grid - Compact */
.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-grid a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links-grid a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* Contact - Compact */
.footer-contact p {
    color: var(--light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
    font-size: 0.8rem;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0,0,0,0.4);
    padding: 1rem;
    border-top: 1px solid rgba(245,197,24,0.1);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--gray);
    font-size: 0.8rem;
}

.payment-badges-mini {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.payment-badges-mini i {
    color: var(--light);
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.payment-badges-mini i:hover {
    color: var(--primary);
}

/* ========== RESPONSIVE FIXES ========== */

/* Tablet */
@media screen and (max-width: 768px) {
    .footer-main .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .brand-col {
        grid-column: span 2;
    }
    
    .footer-brand {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .footer-main {
        padding: 2rem 1rem;
    }
    
    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-col {
        grid-column: span 1;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        display: block;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .footer-links-grid {
        align-items: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 0.8rem;
    }
    
    .payment-badges-mini {
        justify-content: center;
    }
}

/* Small Mobile */
@media screen and (max-width: 360px) {
    .footer-logo {
        height: 35px;
    }
    
    .footer-site-name {
        font-size: 0.9rem;
    }
    
    .footer-tagline {
        font-size: 0.6rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .footer-links-grid a {
        font-size: 0.8rem;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
    
    .payment-badges-mini i {
        font-size: 1rem;
    }
}

/* ========== END COMPACT FOOTER STYLES ========== */



/* 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;
}

.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;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.modal.active .modal-content {
    transform: scale(1);
    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;
    animation: bounceIn 0.5s;
}

.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 Styles */
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.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); }
.bg-info { background: var(--info); color: var(--white); }

/* Mobile Floating Action Button */
.mobile-fab a {
    display: flex;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-hover);
    color: var(--dark);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-fab a:hover { transform: scale(1.1); }

/* 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; }

/* ========== 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; }
    .trust-badges { gap: 1rem; }

    .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; }
    .quick-stats { flex-wrap: wrap; gap: 1rem; }
    .stat-item { flex: 1 1 40%; }
}

@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; }
    .payment-badges { flex-direction: column; align-items: center; gap: 0.5rem; }
    
    .booking-container { width: 100vw; }
}

/* Print Styles */
@media print {
    .navbar, .hero-buttons, .btn-book, .footer,
    .floating-orb, .mobile-fab, .loading-spinner {
        display: none;
    }
}


/* ========== FIXES FOR ALIGNMENT & MOBILE RESPONSIVENESS ========== */

/* Match Card Fixes */
.match-card {
    padding: 1.5rem 0.8rem;
}

.match-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.match-card .match-type {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.3rem;
}

.match-card .players-count {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.booking-amount {
    font-size: 1.1rem;
    padding: 0.3rem;
    margin: 0.6rem 0;
}

.booking-amount small {
    font-size: 0.65rem;
}

/* Fix for Popular Badge */
.card-badge {
    position: absolute;
    top: -8px;
    right: 5px;
    background: var(--primary);
    color: var(--dark);
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 10;
    white-space: nowrap;
}

.card-badge i {
    font-size: 0.55rem;
}

/* Fix for Click to Select Tooltip */
.card-tooltip {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.6rem;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    white-space: nowrap;
    pointer-events: none;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 3px;
}

.card-tooltip i {
    font-size: 0.55rem;
}

.match-card:hover .card-tooltip {
    opacity: 1;
    bottom: -2px;
}

/* Success Modal Mobile Fixes */
@media screen and (max-width: 480px) {
    .modal-content {
        padding: 1.2rem;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .modal-details {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .modal-details p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        display: flex;
        flex-wrap: wrap;
    }
    
    .modal-details p strong {
        min-width: 100px;
        display: inline-block;
    }
    
    .modal-note {
        padding: 0.8rem;
        margin: 1rem 0;
        font-size: 0.8rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .modal-icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-close {
        top: 8px;
        right: 10px;
        font-size: 1.5rem;
    }
}

/* Fix for Pro Package indicator in modal */
.modal-details p:last-child {
    color: var(--primary);
    font-weight: 600;
}

.modal-details p:last-child strong {
    color: var(--white);
}

/* Time Slots Grid - Better Mobile Alignment */
@media screen and (max-width: 480px) {
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        max-height: 250px;
    }
    
    .time-slot {
        padding: 0.6rem 0.2rem;
        font-size: 0.85rem;
    }
    
    .time-slot small {
        font-size: 0.6rem;
    }
}

/* Form Elements on Mobile */
@media screen and (max-width: 480px) {
    .form-control {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .selected-match-info h3 {
        font-size: 1.1rem;
    }
    
    .selected-match-info p {
        font-size: 0.85rem;
    }
}

/* Pro Package on Mobile */
@media screen and (max-width: 480px) {
    .pro-package {
        padding: 1rem;
    }
    
    .pro-header h4 {
        font-size: 1rem;
    }
    
    .pro-features li {
        font-size: 0.8rem;
    }
    
    .pro-check {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pro-check small {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

/* Booking Summary on Mobile */
@media screen and (max-width: 480px) {
    .booking-summary {
        padding: 1rem;
    }
    
    .summary-row {
        padding: 0.6rem 0;
    }
    
    .summary-label {
        font-size: 0.85rem;
    }
    
    .summary-value {
        font-size: 0.9rem;
    }
    
    .total-row .summary-value {
        font-size: 1.1rem;
    }
}

/* Quick Stats on Mobile */
@media screen and (max-width: 480px) {
    .quick-stats {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Hero Section Mobile Fixes */
@media screen and (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .bgmi-text {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    .trust-badges {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .trust-number {
        font-size: 1.2rem;
    }
    
    .trust-label {
        font-size: 0.7rem;
    }
}

/* Feature Cards on Mobile */
@media screen and (max-width: 480px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.8rem;
    }
}

/* Steps on Mobile */
@media screen and (max-width: 480px) {
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.8rem;
    }
}

/* Testimonials on Mobile */
@media screen and (max-width: 480px) {
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-header img {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-header h4 {
        font-size: 0.95rem;
    }
    
    .rating {
        font-size: 0.85rem;
    }
    
    .testimonial-card p {
        font-size: 0.85rem;
    }
}

/* Newsletter on Mobile */
@media screen and (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn-primary {
        width: 100%;
    }
}

/* Footer on Mobile */
@media screen and (max-width: 480px) {
    .footer-col h3 {
        font-size: 1rem;
    }
    
    .footer-col p, .footer-col a {
        font-size: 0.85rem;
    }
    
    .footer-tagline {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    
    .footer-tagline i {
        margin: 0 3px;
    }
}

/* Fix for Payment Badges on Mobile */
@media screen and (max-width: 480px) {
    .payment-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .payment-badges span {
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
        padding: 0.3rem;
        background: rgba(255,255,255,0.03);
        border-radius: 20px;
    }
}

/* Fix for Per Ball Note on Mobile */
@media screen and (max-width: 480px) {
    .per-ball-note {
        font-size: 0.8rem;
        padding: 0.6rem;
        flex-wrap: wrap;
        text-align: center;
    }
}

/* Fix for Policy Note on Mobile */
@media screen and (max-width: 480px) {
    .policy-note {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .policy-note i {
        font-size: 1.1rem;
    }
}

/* Fix for Progress Bar on Mobile */
@media screen and (max-width: 480px) {
    .progress-container {
        margin: 1.5rem 0;
    }
    
    .progress-header span {
        font-size: 0.75rem;
    }
}

/* Floating Orb adjustments for Mobile */
@media screen and (max-width: 768px) {
    .floating-orb {
        width: 150px;
        height: 150px;
        filter: blur(30px);
    }
    
    .orb-2 {
        width: 200px;
        height: 200px;
    }
}

/* Ensure text doesn't overflow */
.match-type, .players-count {
    word-break: keep-all;
}

/* Better spacing for booking amount */
.booking-amount {
    line-height: 1.3;
}

/* Fix for modal content on very small screens */
@media screen and (max-width: 360px) {
    .modal-content {
        padding: 1rem;
    }
    
    .modal-details p {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .modal-details p strong {
        min-width: auto;
    }
    
    .modal-note {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-note i {
        margin-bottom: 0.3rem;
    }
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .time-slot,
    .btn-primary,
    .btn-secondary,
    .match-card,
    .footer-col a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-col a {
        justify-content: flex-start;
        padding: 8px 0;
    }
}

/* Fix for popular badge on different screen sizes */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .card-badge {
        right: 5px;
        padding: 3px 6px;
        font-size: 0.55rem;
    }
}

/* Ensure consistent card heights */
.match-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.booking-amount {
    margin-top: auto;
    width: 200px;
}

/* ========== AGGRESSIVE MOBILE FIXES ========== */

/* Force modal to fit on small screens */
@media screen and (max-width: 480px) {
    .modal {
        padding: 8px !important;
        align-items: flex-start !important;
        overflow-y: auto !important;
    }
    
    .modal-content {
        max-width: 100% !important;
        width: 100% !important;
        margin: 10px auto !important;
        padding: 16px 12px !important;
        border-radius: 16px !important;
        transform: scale(1) !important;
        max-height: 95vh !important;
        overflow-y: auto !important;
    }
    
    .modal-details {
        padding: 12px 10px !important;
        margin: 12px 0 !important;
    }
    
    .modal-details p {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        display: block !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
    }
    
    .modal-details p strong {
        display: inline-block !important;
        min-width: 90px !important;
        margin-right: 5px !important;
        color: var(--white) !important;
    }
    
    /* For very small screens, stack label and value */
    @media screen and (max-width: 360px) {
        .modal-details p strong {
            display: block !important;
            margin-bottom: 3px !important;
        }
    }
    
    .modal-icon {
        font-size: 40px !important;
        margin-bottom: 8px !important;
    }
    
    .modal h3 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    .modal-note {
        padding: 10px !important;
        margin: 12px 0 !important;
        font-size: 13px !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .modal-note i {
        font-size: 18px !important;
        margin-top: 2px !important;
    }
    
    .modal-actions {
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 16px !important;
    }
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: 100% !important;
        padding: 14px !important;
        font-size: 15px !important;
        margin: 0 !important;
    }
    
    .modal-close {
        top: 8px !important;
        right: 12px !important;
        font-size: 24px !important;
    }
}

/* Fix for match cards on very small screens */
@media screen and (max-width: 400px) {
    .match-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .match-card {
        padding: 16px 12px !important;
    }
    
    .match-card h3 {
        font-size: 18px !important;
    }
    
    .match-card .match-type {
        font-size: 14px !important;
        white-space: normal !important;
    }
    
    .booking-amount {
        font-size: 16px !important;
        padding: 6px !important;
    }
    
    .card-badge {
        top: -5px !important;
        right: 5px !important;
        padding: 3px 8px !important;
        font-size: 10px !important;
    }
}

/* Fix for time slots on small screens */
@media screen and (max-width: 400px) {
    .time-slots-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    
    .time-slot {
        padding: 10px 5px !important;
        font-size: 14px !important;
    }
}

/* Fix for booking form on small screens */
@media screen and (max-width: 400px) {
    .booking-container {
        padding: 16px 12px !important;
    }
    
    .form-control {
        padding: 12px !important;
        font-size: 15px !important;
    }
    
    .selected-match-info h3 {
        font-size: 18px !important;
    }
    
    .selected-match-info p {
        font-size: 13px !important;
    }
    
    .summary-row {
        padding: 8px 0 !important;
    }
    
    .summary-label {
        font-size: 13px !important;
    }
    
    .summary-value {
        font-size: 14px !important;
    }
    
    .total-row .summary-value {
        font-size: 18px !important;
    }
    
    .btn-book {
        padding: 14px !important;
        font-size: 16px !important;
    }
}

/* Fix for hero section on small screens */
@media screen and (max-width: 400px) {
    .hero-text h1 {
        font-size: 24px !important;
    }
    
    .bgmi-text {
        font-size: 28px !important;
    }
    
    .hero-text p {
        font-size: 14px !important;
    }
    
    .trust-number {
        font-size: 18px !important;
    }
    
    .trust-label {
        font-size: 11px !important;
    }
}

/* Fix for quick stats on small screens */
@media screen and (max-width: 400px) {
    .quick-stats {
        padding: 12px !important;
        gap: 8px !important;
    }
    
    .stat-number {
        font-size: 20px !important;
    }
    
    .stat-label {
        font-size: 10px !important;
    }
}

/* Fix for testimonials on small screens */
@media screen and (max-width: 400px) {
    .testimonial-card {
        padding: 16px !important;
    }
    
    .testimonial-header img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .testimonial-header h4 {
        font-size: 15px !important;
    }
    
    .testimonial-card p {
        font-size: 13px !important;
    }
}

/* Fix for footer on small screens */
@media screen and (max-width: 400px) {
    .footer-col h3 {
        font-size: 16px !important;
    }
    
    .footer-col p,
    .footer-col a {
        font-size: 13px !important;
    }
    
    .footer-tagline {
        font-size: 11px !important;
    }
}

/* Ensure no horizontal scroll */
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Fix for all containers */
.container, 
.hero-container, 
.booking-container,
.match-grid,
.features-grid,
.steps-grid,
.testimonials-grid,
.footer-container {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Fix for images */
/*img {*/
/*    max-width: 100% !important;*/
/*    height: auto !important;*/
}

/* Fix for text overflow */
h1, h2, h3, h4, p, span, a {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Fix for floating orbs on mobile */
@media screen and (max-width: 768px) {
    .floating-orb {
        display: none !important;
    }
}

/* Alternative - More Prominent Badge */
.card-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary) 0%, #ffd700 100%);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 30px 30px 30px 5px; /* Asymmetric shape */
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 20 !important;
    box-shadow: 0 6px 15px rgba(245, 197, 24, 0.6);
    border: 2px solid var(--white);
    transform: rotate(-3deg);
    animation: badgeWiggle 3s infinite;
}

@keyframes badgeWiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(0deg) scale(1.05); }
}

/* ========== FIX FOR POPULAR BADGE OVERLAY ========== */

/* Allow badge to show outside card */
.match-card {
    overflow: visible !important;
    position: relative;
}

/* Popular Badge Overlay - Clean version */
.card-badge {
    position: absolute !important;
    top: -12px !important;
    right: -8px !important;
    background: var(--primary) !important;
    color: var(--dark) !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 10px rgba(245, 197, 24, 0.5) !important;
    border: 2px solid var(--white) !important;
    white-space: nowrap !important;
    letter-spacing: 0.3px;
}

.match-grid {
    padding-top: 17px;
}

.card-badge i {
    font-size: 0.65rem !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .card-badge {
        top: -10px !important;
        right: -5px !important;
        padding: 5px 12px !important;
        font-size: 0.7rem !important;
    }
    
    .card-badge i {
        font-size: 0.6rem !important;
    }
}

@media screen and (max-width: 480px) {
    .card-badge {
        top: -8px !important;
        right: -3px !important;
        padding: 4px 10px !important;
        font-size: 0.65rem !important;
    }
}

/* Make sure the click to select tooltip doesn't interfere */
.card-tooltip {
    z-index: 10000 !important;
    bottom: -5px !important;
}

/* ========== END OF FIX ========== */

/* ========== REMOVE SCROLLBAR FROM MATCH CARDS SECTION ========== */

/* Remove the scrollbar from match grid container */
.match-grid {
    overflow: visible !important; /* Remove scrolling */
    max-height: none !important; /* Remove max-height restriction */
    height: auto !important; /* Let it be auto height */
}

/* If the scroll is coming from a parent container */
.match-types {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

/* If there's a specific container with scroll */
.match-cards-container {
    overflow: visible !important;
    max-height: none !important;
}

/* Ensure all cards are visible without scrolling */
.match-card {
    margin-bottom: 1rem; /* Add spacing between cards if needed */
}

/* ========== END ========== */


/* ========== AGGRESSIVE FIX FOR CURSOR SHAKING ========== */

/* Force all cards to have exactly the same dimensions */
.match-card {
    width: 100% !important;
    height: auto !important;
    min-height: 220px !important; /* Set a fixed minimum height */
    box-sizing: border-box !important;
    
    /* Critical: Prevent any layout shift */
    border: 2px solid rgba(245, 197, 24, 0.2) !important; /* Fixed border */
    padding: 1.5rem 1rem !important; /* Fixed padding */
    margin: 0 !important; /* No margins */
    
    /* Smooth transitions */
    transition: transform 0.2s ease, 
                box-shadow 0.2s ease, 
                background-color 0.2s ease !important;
    
    /* Performance optimizations */
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    will-change: transform !important;
    
    /* Cursor */
    cursor: pointer !important;
}

/* Hover state - ONLY change transform and shadow, nothing else */
.match-card:hover {
    transform: translateY(-3px) translateZ(0) !important;
    box-shadow: 0 15px 30px rgba(245, 197, 24, 0.2) !important;
    background: rgba(245, 197, 24, 0.1) !important;
    
    /* IMPORTANT: Keep border exactly the same */
    border: 2px solid var(--primary) !important;
    
    /* Keep padding exactly the same */
    padding: 1.5rem 1rem !important;
}

/* Active state (while clicking) */
.match-card:active {
    transform: translateY(-1px) scale(0.98) translateZ(0) !important;
    transition: transform 0.1s ease !important;
}

/* Remove any pseudo-elements that might cause shifts */
.match-card::before,
.match-card::after {
    display: none !important;
}

/* Fix for the card content */
.match-card > * {
    position: relative;
    z-index: 2;
}

/* ========== END ========== */
/* ========== CUSTOM SVG MAP SECTION ========== */

.map-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-hover);
    background: var(--dark-light);
    transition: all 0.3s ease;
}

.battleground-map {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    cursor: grab;
}

.battleground-map.zoomed {
    transform: scale(1.8);
    cursor: move;
}

/* Hotspot Icons */
.hotspot-icon {
    cursor: pointer;
    transition: all 0.2s ease;
}

.hotspot-icon:hover {
    filter: drop-shadow(0 0 10px var(--primary));
    transform: scale(1.2);
}

.hotspot-icon circle,
.hotspot-icon rect,
.hotspot-icon polygon {
    transition: all 0.2s ease;
}

.hotspot-icon:hover circle,
.hotspot-icon:hover rect,
.hotspot-icon:hover polygon {
    filter: brightness(1.2);
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    background: var(--dark-light);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 10px 15px;
    color: var(--white);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 100;
    box-shadow: var(--shadow-hover);
    min-width: 150px;
    opacity: 0;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(5px);
}

.map-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
}

.map-tooltip .tooltip-title {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 4px;
    display: block;
}

.map-tooltip .tooltip-desc {
    color: var(--light);
    font-size: 0.8rem;
    display: block;
}

/* Map Controls */
.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 50;
}

.map-btn {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.map-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
}

/* Map Info Panel */
.map-info-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(245, 197, 24, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}

.panel-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.panel-header h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.panel-stats {
    margin-bottom: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.stat-value {
    color: var(--primary);
    font-weight: 600;
}

.panel-legend {
    margin-bottom: 1.5rem;
}

.panel-legend h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
    font-size: 0.85rem;
}

.legend-marker {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.panel-tactical {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.panel-tactical h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-tactical ul {
    list-style: none;
}

.panel-tactical li {
    color: var(--light);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.panel-tactical li i {
    color: var(--primary);
    font-size: 0.5rem;
    margin-top: 0.4rem;
}

/* Map Features */
.map-features {
    margin-top: 3rem !important;
}

.map-feature {
    background: rgba(245, 197, 24, 0.05) !important;
    border-color: var(--primary) !important;
}

.map-feature:hover {
    background: rgba(245, 197, 24, 0.1) !important;
}

/* Responsive */
@media screen and (max-width: 968px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-info-panel {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .legend-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .map-controls {
        bottom: 10px;
        right: 10px;
    }
    
    .map-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .legend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .legend-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-header h3 {
        font-size: 1rem;
    }
    
    .stat-row {
        font-size: 0.8rem;
    }
    
    .map-tooltip {
        min-width: 120px;
        padding: 8px 10px;
    }
    
    .map-tooltip .tooltip-title {
        font-size: 0.9rem;
    }
    
    .map-tooltip .tooltip-desc {
        font-size: 0.7rem;
    }
}

/* Zoom animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ========== END MAP SECTION ========== */

/* ========== LOGO STYLES ========== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 5rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary));
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--primary));
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .logo-image {
        height: 5rem;
    }
    
    .logo {
        gap: 8px;
    }
}

@media screen and (max-width: 480px) {
    .logo-image {
        height: 5rem;
    }
}

/* ========== END LOGO STYLES ========== */

/* Add this at the end of your style.css */

/* Update the highlight text class */
.highlight-text {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
    display: block;
    font-size: 3.5rem;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
    .highlight-text {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .highlight-text {
        font-size: 2rem;
    }
}


/* ========== ENHANCED HERO SECTION STYLES - FIXED ========== */

/* Hero Section Base */
.hero {
    min-height: 100vh;
    height: auto; /* Changed from fixed height */
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden !important; /* Force hide overflow */
    padding: 80px 1rem 40px; /* Reduced padding */
    display: flex;
    align-items: center;
    margin: 0; /* Remove any margins */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0; /* Remove padding */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Reduced gap */
    align-items: center;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(245,197,24,0.05) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(245,197,24,0.05) 0%, transparent 30%);
    animation: particlesFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlesFloat {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Geometric Shapes */
.hero-shape {
    position: absolute;
    background: rgba(245,197,24,0.03);
    border-radius: 50%;
    filter: blur(60px);
    animation: shapeFloat 15s ease-in-out infinite;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

/* Pre-heading */
.hero-pre-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem; /* Reduced margin */
    animation: slideInDown 0.8s ease;
}

.pre-heading-line {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.pre-heading-text {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Main Heading */
.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem; /* Reduced margin */
    text-transform: uppercase;
}

.heading-line {
    display: block;
    overflow: hidden;
    animation: revealText 1s ease forwards;
}

.heading-line:first-child {
    animation-delay: 0.2s;
}

.heading-line:last-child {
    animation-delay: 0.4s;
}

@keyframes revealText {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.highlight-wrapper {
    margin-top: 0.3rem; /* Reduced margin */
}

.highlight-text {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(245, 197, 24, 0.5);
    font-size: 3.5rem;
    display: inline-block;
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
}

.glitch::before {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch::after {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Description */
.hero-description-wrapper {
    margin: 1.5rem 0 2rem; /* Reduced margins */
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light);
    line-height: 1.6;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.description-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    animation: underlineExpand 1.5s ease infinite;
}

@keyframes underlineExpand {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 200px; opacity: 1; }
}

/* Enhanced Buttons */
.hero-buttons {
    display: flex;
    gap: 1.2rem; /* Reduced gap */
    flex-wrap: wrap;
    margin-bottom: 2rem; /* Reduced margin */
}

.btn-primary, .btn-secondary {
    padding: 14px 32px; /* Slightly reduced padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    position: relative;
}

.btn-primary .btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

/* Glow Effect */
.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(245,197,24,0.3); }
    50% { box-shadow: 0 0 40px rgba(245,197,24,0.6); }
}

/* Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255,255,255,0.3);
    transform: rotate(35deg);
    transition: all 0.6s ease;
}

.btn-shine:hover::after {
    left: 120%;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Trust Badges with Counter */
.trust-badges {
    display: flex;
    gap: 2.5rem; /* Reduced gap */
    margin: 1.5rem 0 1rem; /* Reduced margins */
}

.trust-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.6s; }
.trust-item:nth-child(2) { animation-delay: 0.8s; }
.trust-item:nth-child(3) { animation-delay: 1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-number {
    font-size: 1.6rem; /* Slightly reduced */
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Counter Animation */
.counter {
    display: inline-block;
    animation: countUp 2s ease forwards;
}

/* Featured Badge */
.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.3);
    border-radius: 50px;
    padding: 6px 15px; /* Reduced padding */
    margin-top: 0.5rem; /* Reduced margin */
    backdrop-filter: blur(5px);
    animation: slideInLeft 0.8s ease 1.2s both;
}

.featured-badge i {
    color: var(--primary);
    font-size: 0.9rem; /* Slightly reduced */
}

.featured-badge span {
    color: var(--light);
    font-size: 0.85rem;
    font-weight: 500;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Image Enhancements */
.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.image-frame img {
    width: 100%;
    max-width: 500px;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245,197,24,0.2) 0%, transparent 100%);
    pointer-events: none;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(245,197,24,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.image-frame:hover .image-glow {
    opacity: 1;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px; /* Reduced gap */
    background: rgba(26, 31, 47, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245,197,24,0.3);
    border-radius: 50px;
    padding: 8px 15px; /* Reduced padding */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap; /* Prevent text wrapping */
}

.badge-1 {
    top: 15%; /* Adjusted position */
    left: -15px; /* Adjusted position */
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: -15px; /* Adjusted position */
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    right: -5px; /* Adjusted position */
    animation-delay: 2s;
}

.floating-badge i {
    font-size: 1rem; /* Reduced size */
    color: var(--primary);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-value {
    font-size: 0.9rem; /* Reduced size */
    font-weight: 700;
    color: var(--white);
}

.badge-label {
    font-size: 0.6rem; /* Reduced size */
    color: var(--gray);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Live Badge Enhancement */
.live-badge {
    position: absolute;
    bottom: 20px; /* Adjusted position */
    right: 20px; /* Adjusted position */
    background: rgba(245,197,24,0.95);
    color: var(--dark);
    padding: 6px 16px; /* Reduced padding */
    border-radius: 50px;
    font-size: 0.85rem; /* Reduced size */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px; /* Reduced gap */
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(245,197,24,0.3);
    z-index: 10;
}

.live-dot {
    width: 6px; /* Reduced size */
    height: 6px; /* Reduced size */
    background: #ff4d4d;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px; /* Moved up */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Reduced gap */
    opacity: 0.7;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
    z-index: 5;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    color: var(--gray);
    font-size: 0.65rem; /* Reduced size */
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px; /* Thinner */
    height: 40px; /* Shorter */
    background: linear-gradient(180deg, var(--primary), transparent);
}

.scroll-arrow {
    color: var(--primary);
    font-size: 1rem; /* Reduced size */
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ========== FIXED RESPONSIVE STYLES ========== */

/* Desktop Large */
@media screen and (min-width: 1200px) {
    .hero {
        padding: 100px 1rem 60px;
    }
}

/* Desktop */
@media screen and (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 100px 1rem 80px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .highlight-text {
        font-size: 3.2rem;
    }
}

/* Tablet Landscape */
@media screen and (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 100px 1rem 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .highlight-text {
        font-size: 3rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .description-underline {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .featured-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on tablet */
    }
    
    .scroll-indicator {
        display: none; /* Hide scroll indicator on tablet */
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Tablet Portrait */
@media screen and (max-width: 768px) {
    .hero {
        padding: 80px 1rem 50px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .highlight-text {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .trust-number {
        font-size: 1.4rem;
    }
    
    .trust-label {
        font-size: 0.7rem;
    }
    
    .trust-badges {
        gap: 2rem;
    }
    
    .hero-pre-heading {
        gap: 10px;
    }
    
    .pre-heading-text {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .pre-heading-line {
        flex: 0 0 30px;
    }
    
    .live-badge {
        bottom: 15px;
        right: 15px;
        padding: 5px 12px;
        font-size: 0.8rem;
    }
}

/* Mobile Large */
@media screen and (max-width: 480px) {
    .hero {
        padding: 70px 0.8rem 40px;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .highlight-text {
        font-size: 2rem;
    }
    
    .hero-description-wrapper {
        margin: 1rem 0 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .trust-badges {
        gap: 1rem;
        margin: 1rem 0 0.8rem;
    }
    
    .trust-number {
        font-size: 1.2rem;
    }
    
    .trust-label {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .hero-pre-heading {
        gap: 8px;
        margin-bottom: 0.8rem;
    }
    
    .pre-heading-text {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .pre-heading-line {
        flex: 0 0 15px;
    }
    
    .featured-badge {
        padding: 4px 10px;
    }
    
    .featured-badge i {
        font-size: 0.8rem;
    }
    
    .featured-badge span {
        font-size: 0.7rem;
    }
    
    .live-badge {
        bottom: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .live-dot {
        width: 4px;
        height: 4px;
    }
    
    .image-frame {
        border-radius: 15px;
    }
}

/* Mobile Small */
@media screen and (max-width: 360px) {
    .hero {
        padding: 60px 0.5rem 30px;
    }
    
    .hero-text h1 {
        font-size: 1.4rem;
    }
    
    .highlight-text {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .trust-number {
        font-size: 1rem;
    }
    
    .trust-label {
        font-size: 0.55rem;
    }
    
    .trust-badges {
        gap: 0.8rem;
    }
    
    .hero-pre-heading-text {
        font-size: 0.6rem;
    }
    
    .pre-heading-line {
        flex: 0 0 10px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* Fix for any overflow issues */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

section {
    overflow: hidden !important;
}

/* Ensure no horizontal scroll on any device */
.hero,
.hero-container,
.hero-content,
.hero-text,
.hero-image {
    max-width: 100vw;
    overflow: hidden !important;
}

/* ========== END ENHANCED HERO SECTION STYLES ========== */

/* ========== ARENA FEATURES SECTION ========== */

.arena-features {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-tagline {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(245,197,24,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(245,197,24,0.3);
    margin-bottom: 1.5rem;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.header-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.header-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.header-description {
    color: var(--light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245,197,24,0.1);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245,197,24,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(245,197,24,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
    background: var(--primary);
    transform: rotate(10deg) scale(1.1);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper i {
    color: var(--dark);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245,197,24,0.4) 0%, transparent 70%);
    border-radius: 20px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover .icon-glow {
    opacity: 1;
}

.feature-card-modern h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.feature-card-modern p {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-stats span {
    color: var(--gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-stats i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* Stats Counter Row */
.stats-counter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(245,197,24,0.1);
    backdrop-filter: blur(10px);
}

.stat-item-large {
    text-align: center;
    position: relative;
}

.stat-item-large:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(245,197,24,0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-counter-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item-large:not(:last-child)::after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-counter-row {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .header-title {
        font-size: 1.5rem;
    }
    
    .header-description {
        font-size: 0.95rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .feature-card-modern h3 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ========== END ARENA FEATURES SECTION ========== */

/* ========== MODERN HOW IT WORKS SECTION ========== */

.how-it-works-modern {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 5 L55 30 L30 55 L5 30 L30 5" fill="none" stroke="%23f5c518" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tagline {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245,197,24,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(245,197,24,0.3);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245,197,24,0.2);
    border-radius: 4px;
    z-index: -1;
}

.section-description {
    color: var(--light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Steps */
.steps-timeline {
    position: relative;
    margin: 3rem 0;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(245,197,24,0.5) 0%,
        rgba(245,197,24,0.3) 50%,
        rgba(245,197,24,0.5) 100%);
    border-radius: 3px;
}

.timeline-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: relative;
    width: 80px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #ffd700 100%);
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    border: 3px solid var(--white);
    box-shadow: 0 0 30px rgba(245,197,24,0.5);
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(245,197,24,0.5); transform: scale(1); }
    50% { box-shadow: 0 0 50px rgba(245,197,24,0.8); transform: scale(1.05); }
}

.step-connector {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% - 20px);
    background: linear-gradient(180deg, 
        var(--primary) 0%,
        rgba(245,197,24,0.3) 100%);
}

.timeline-step:last-child .step-connector {
    display: none;
}

.step-content-wrapper {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(245,197,24,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.step-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245,197,24,0.05), transparent);
    transition: left 0.5s ease;
}

.step-content-wrapper:hover::before {
    left: 100%;
}

.step-content-wrapper:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.step-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(245,197,24,0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-content-wrapper:hover .step-icon-wrapper {
    background: var(--primary);
    transform: rotate(5deg) scale(1.1);
}

.step-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.step-content-wrapper:hover .step-icon-wrapper i {
    color: var(--dark);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step-features span {
    color: var(--gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.step-features i {
    color: var(--primary);
    font-size: 0.75rem;
}

/* Bottom CTA */
.steps-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    border: 1px solid rgba(245,197,24,0.1);
    backdrop-filter: blur(10px);
}

.cta-badge {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(245,197,24,0.1);
    border-radius: 50px;
    border: 1px solid rgba(245,197,24,0.3);
}

.cta-badge i {
    margin-right: 0.5rem;
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-note {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .steps-timeline::before {
        left: 25px;
    }
    
    .step-marker {
        width: 60px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .step-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .step-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .step-features {
        gap: 1rem;
    }
    
    .step-features span {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .step-content-wrapper {
        padding: 1rem;
    }
    
    .step-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .steps-cta {
        padding: 1.5rem;
    }
    
    .btn-pulse {
        width: 100%;
    }
}

/* ========== END MODERN HOW IT WORKS SECTION ========== */


/* ========== FIXED MOBILE FOOTER STYLES ========== */

/* Base Footer */
.footer-compact {
    background: linear-gradient(135deg, #0a0f1e 0%, #030614 100%);
    border-top: 2px solid var(--primary);
    position: relative;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Main Footer */
.footer-main {
    padding: 2rem 1rem;
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Brand Column */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-site-name {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-tagline {
    color: var(--primary);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

/* Footer Titles */
.footer-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary);
}

/* Links Grid */
.footer-links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links-grid a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links-grid a:hover {
    color: var(--primary);
}

/* Contact */
.footer-contact p {
    color: var(--light);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--primary);
    width: 16px;
    font-size: 0.8rem;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0,0,0,0.4);
    padding: 1rem;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--gray);
    font-size: 0.8rem;
}

.payment-badges-mini {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.payment-badges-mini i {
    color: var(--light);
    font-size: 1.2rem;
}

/* ========== FIXED MOBILE RESPONSIVE ========== */

/* Mobile (480px and below) - FIXED */
@media screen and (max-width: 480px) {
    .footer-main {
        padding: 1.2rem 0.8rem;
    }
    
    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    /* Brand - Left aligned */
    .brand-col {
        margin-bottom: 0.3rem;
    }
    
    .footer-brand {
        justify-content: flex-start;
        margin-bottom: 0.6rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-site-name {
        font-size: 1rem;
    }
    
    .footer-tagline {
        font-size: 0.65rem;
    }
    
    .footer-social {
        justify-content: flex-start;
        gap: 0.6rem;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
    }
    
    /* Quick Links - 2 column grid for better space usage */
    .footer-col:nth-child(2) .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
    }
    
    /* Titles - Left aligned with underline */
    .footer-title {
        text-align: left;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
        width: 30px;
    }
    
    /* Links - Left aligned */
    .footer-links-grid a {
        text-align: left;
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    /* Contact - Left aligned */
    .footer-contact {
        align-items: flex-start;
    }
    
    .footer-contact p {
        justify-content: flex-start;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-contact i {
        width: 18px;
    }
    
    /* Policies - 2 column grid */
    .footer-col:last-child .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
    }
    
    /* Bottom bar */
    .footer-bottom {
        padding: 0.8rem;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .copyright {
        font-size: 0.75rem;
        text-align: left;
    }
    
    .payment-badges-mini {
        justify-content: flex-start;
        gap: 0.8rem;
    }
}

/* Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
    .footer-main {
        padding: 1rem 0.6rem;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .footer-site-name {
        font-size: 0.95rem;
    }
    
    .footer-tagline {
        font-size: 0.6rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-title {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links-grid a {
        font-size: 0.8rem;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
}

/* ========== END FIXED MOBILE FOOTER STYLES ========== */

/* ========== GRADIENT SOCIAL ICONS ========== */

.footer-social {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--dark-light);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover::after {
    background: var(--primary);
}

.social-icon:hover i {
    color: var(--dark);
}

/* Individual icon colors on hover */
.social-icon:hover i {
    color: var(--dark);
}

/* Mobile optimized */
@media screen and (max-width: 480px) {
    .footer-social {
        gap: 0.6rem;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 5rem !important;
    }
    
}

/* ========== END GRADIENT SOCIAL ICONS ========== */

/* ========== FIX FONT AWESOME ICONS ON MOBILE ========== */

/* Force icon font loading */
.fa, .fas, .far, .fab, .fal, .fad, .fat {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

/* Fix for social icons */
.social-icon i {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Mobile specific icon fixes */
@media screen and (max-width: 768px) {
    .social-icon i {
        font-size: 1.3rem;
    }
    
    .footer-contact i {
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .social-icon i {
        font-size: 1.4rem;
    }
    
    .footer-contact i {
        font-size: 1.2rem;
        width: 28px;
    }
}

/* Ensure icons are visible */
.footer-contact i,
.social-icon i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ========== END FIX ========== */

/* ========== UPDATED MATCH TYPES & BOOKING STYLES ========== */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tagline {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(245,197,24,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(245,197,24,0.3);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-description {
    color: var(--light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Row for better layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Selected Match Info - Enhanced */
.selected-match-info {
    background: linear-gradient(135deg, rgba(245,197,24,0.1) 0%, rgba(245,197,24,0.05) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.info-content h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.info-content p {
    color: var(--light);
    font-size: 0.9rem;
    margin: 0;
}

/* Pro Package - Updated (No Price) */
.pro-package {
    background: linear-gradient(135deg, rgba(245,197,24,0.08) 0%, rgba(10,15,30,0.9) 100%);
    border-radius: 20px;
    padding: 1.8rem;
    margin: 2rem 0;
    border: 1px solid rgba(245,197,24,0.3);
    position: relative;
    overflow: hidden;
}

.pro-package::before {
    content: 'PRO';
    position: absolute;
    top: 10px;
    right: -25px;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.15;
}

.pro-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.pro-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(245,197,24,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pro-header h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.pro-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pro-features li {
    color: var(--light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pro-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.pro-check {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.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;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.venue-note {
    color: var(--primary);
    font-size: 0.8rem;
    background: rgba(245,197,24,0.15);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-weight: 400;
}

.pro-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pro-note i {
    color: var(--primary);
}

/* Booking Summary - Updated */
.booking-summary {
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: 1.8rem;
    margin: 2rem 0;
    border: 1px solid rgba(245,197,24,0.2);
}

.booking-summary h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 0.8rem;
    border-bottom: 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.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.highlight-row .summary-value {
    color: var(--primary);
    font-weight: 700;
}

.pro-row {
    background: rgba(245,197,24,0.05);
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.venue-pay {
    color: var(--primary);
    font-style: italic;
    font-size: 0.9rem;
}

.total-row {
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
    border-top: 2px solid rgba(245,197,24,0.3);
}

.total-row .summary-value {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.3rem;
}

/* Venue Payment Note */
.venue-payment-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(245,197,24,0.05);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light);
    font-size: 0.9rem;
    border: 1px dashed rgba(245,197,24,0.3);
}

.venue-payment-note i {
    color: var(--primary);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pro-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .selected-match-info {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .pro-package {
        padding: 1.2rem;
    }
    
    .pro-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .pro-check {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .venue-payment-note {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
    }
    
    .summary-row {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    
    .total-row {
        flex-direction: row;
        align-items: center;
    }
}

/* ========== END UPDATED STYLES ========== */

/* Footer link hover effects */
.footer-contact a:hover {
    color: var(--primary) !important;
    text-decoration: underline !important;
}

/* Social icons container */
.footer-social {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* Social placeholder */
.social-placeholder {
    opacity: 0.7;
    font-style: italic;
}

/* Address styling */
.footer-address {
    line-height: 1.4;
    max-width: 250px;
}


/* ========== COMPACT MATCH GRID FOR MOBILE ========== */

.match-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 400px;
    margin: 0 auto;
    padding: 0.5rem;
}

.match-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.match-card-compact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem 0.8rem;
    text-align: center;
    border: 2px solid rgba(245, 197, 24, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.match-card-compact:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(245, 197, 24, 0.1);
    box-shadow: 0 10px 20px rgba(245, 197, 24, 0.2);
}

.match-card-compact .match-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.match-card-compact h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.match-card-compact .match-type {
    font-size: 0.75rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.2rem;
}

.match-card-compact .players-count {
    font-size: 0.7rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0.5rem;
}

.match-card-compact .players-count i {
    font-size: 0.6rem;
    color: var(--primary);
}

.match-card-compact .booking-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem;
    border-radius: 20px;
    margin: 0.3rem 0;
    line-height: 1.2;
}

.match-card-compact .booking-amount small {
    font-size: 0.55rem;
    color: var(--gray);
    display: block;
}

.select-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.3rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.match-card-compact:hover .select-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile specific */
@media screen and (max-width: 480px) {
    .match-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0.3rem;
    }
    
    .match-card-compact {
        padding: 0.8rem 0.5rem;
    }
    
    .match-card-compact .match-icon {
        font-size: 1.8rem;
    }
    
    .match-card-compact h3 {
        font-size: 1rem;
    }
    
    .match-card-compact .match-type {
        font-size: 0.65rem;
    }
    
    .match-card-compact .players-count {
        font-size: 0.6rem;
    }
    
    .match-card-compact .booking-amount {
        font-size: 0.8rem;
    }
    
    .card-badge {
        top: -8px;
        right: -5px;
        padding: 3px 8px;
        font-size: 0.55rem;
    }
}

@media screen and (max-width: 360px) {
    .match-grid-compact {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
}

/* ========== PREMIUM MATCH TYPES SECTION - PC & MOBILE OPTIMIZED ========== */

.match-types-premium {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.match-types-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.match-types-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-tagline {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(245, 197, 24, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(245, 197, 24, 0.3);
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 197, 24, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.section-description {
    color: var(--light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Match Grid */
.match-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.match-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Premium Match Card */
.match-card-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 197, 24, 0.15);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 197, 24, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.match-card-premium:hover .card-glow {
    opacity: 1;
}

/* Hover Particles */
.hover-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23f5c518" opacity="0.2"/></svg>');
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.match-card-premium:hover .hover-particles {
    opacity: 1;
}

/* Popular Badge */
.card-badge-premium {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ffd700 100%);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-badge-premium i {
    font-size: 0.65rem;
}

/* Card Header */
.card-header-premium {
    margin-bottom: 1rem;
    position: relative;
}

.match-icon-premium {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    filter: drop-shadow(0 5px 15px rgba(245, 197, 24, 0.3));
}

.match-icon-premium i {
    font-size: 1.8rem;
    background: rgba(245, 197, 24, 0.1);
    padding: 0.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.match-card-premium:hover .match-icon-premium i {
    transform: scale(1.1);
    background: rgba(245, 197, 24, 0.2);
}

/* Card Content */
.card-content-premium {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.match-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.match-display-name {
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Player Info */
.player-info {
    margin-bottom: 1rem;
}

.player-count-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.player-count-badge i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Capacity Bar */
.capacity-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.capacity-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffd700);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Price Section */
.price-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    border: 1px solid rgba(245, 197, 24, 0.2);
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.1), transparent);
    transition: left 0.5s ease;
}

.match-card-premium:hover .price-section::before {
    left: 100%;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.price-label {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

/* Match Features */
.match-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--light);
    font-size: 0.7rem;
}

.feature-item i {
    color: var(--primary);
    font-size: 0.65rem;
}

/* Action Button */
.card-action {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.match-card-premium:hover .card-action {
    opacity: 1;
    transform: translateY(0);
}

.select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, #ffd700 100%);
    color: var(--dark);
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.select-btn i {
    transition: transform 0.3s ease;
}

.match-card-premium:hover .select-btn i {
    transform: translateX(5px);
}

/* Stats Row */
.match-stats-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-chip {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 197, 24, 0.15);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    color: var(--light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-chip:hover {
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.stat-chip i {
    color: var(--primary);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Desktop (1024px and above) */
@media screen and (min-width: 1025px) {
    .match-grid-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Small Desktop / Tablet Landscape (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .match-grid-premium {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Tablet Portrait (481px - 768px) */
@media screen and (max-width: 768px) {
    .match-types-premium {
        padding: 4rem 1rem;
    }
    
    .match-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .match-card-premium {
        padding: 1.2rem;
    }
    
    .match-name {
        font-size: 1.2rem;
    }
    
    .match-display-name {
        font-size: 0.75rem;
    }
    
    .amount {
        font-size: 1.5rem;
    }
    
    .match-icon-premium i {
        font-size: 1.5rem;
        padding: 0.4rem;
    }
    
    .card-action {
        opacity: 1;
        transform: translateY(0);
    }
    
    .select-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .card-badge-premium {
        top: 0.8rem;
        right: 0.8rem;
        padding: 0.3rem 0.8rem;
        font-size: 0.65rem;
    }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .match-types-premium {
        padding: 3rem 0.8rem;
    }
    
    .match-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .section-tagline {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .match-card-premium {
        padding: 1rem;
    }
    
    .match-name {
        font-size: 1rem;
    }
    
    .match-display-name {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }
    
    .match-icon-premium i {
        font-size: 1.2rem;
        padding: 0.3rem;
    }
    
    .player-count-badge {
        font-size: 0.7rem;
    }
    
    .price-section {
        padding: 0.6rem;
        margin: 0.5rem 0;
    }
    
    .amount {
        font-size: 1.2rem;
    }
    
    .currency {
        font-size: 0.8rem;
    }
    
    .price-label {
        font-size: 0.55rem;
    }
    
    .feature-item {
        font-size: 0.6rem;
    }
    
    .select-btn {
        padding: 0.5rem;
        font-size: 0.7rem;
        border-radius: 8px;
    }
    
    .card-badge-premium {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.2rem 0.6rem;
        font-size: 0.55rem;
    }
    
    .card-badge-premium i {
        font-size: 0.5rem;
    }
    
    .match-stats-row {
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .stat-chip {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
    .match-grid-premium {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    
    .match-card-premium {
        padding: 1.2rem;
    }
    
    .match-name {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 1.4rem;
    }
}

/* Animation for cards */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.match-card-premium:nth-child(odd) {
    animation: cardFloat 6s ease-in-out infinite;
}

.match-card-premium:nth-child(even) {
    animation: cardFloat 6s ease-in-out infinite reverse;
}

/* Hover state for desktop */
@media (hover: hover) {
    .match-card-premium:hover {
        transform: scale(1.05);
        border-color: var(--primary);
        box-shadow: 0 20px 40px rgba(245, 197, 24, 0.2);
    }
}

/* Touch devices */
@media (hover: none) {
    .match-card-premium:active {
        transform: scale(0.98);
        border-color: var(--primary);
        background: rgba(245, 197, 24, 0.1);
    }
    
    .card-action {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Quick Select Dropdown for Mobile */
.quick-select-mobile {
    margin: 1rem 0;
    display: none;
}

.quick-match-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5c518' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.quick-match-select option {
    background: var(--dark-light);
    color: var(--white);
    padding: 10px;
}

/* Mobile specific */
@media screen and (max-width: 480px) {
    .quick-select-mobile {
        display: block;
    }
    
    .hero-buttons {
        margin-bottom: 0.5rem;
    }
}

/* Pick & Drop Announcement Strip */
    .pickup-announcement-strip {
        background: linear-gradient(135deg, #f5c518 0%, #ff8c00 100%);
        position: relative;
        overflow: hidden;
        z-index: 100;
    }
    
    .pickup-announcement-strip::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: shine 3s infinite;
    }
    
    @keyframes shine {
        0% { left: -100%; }
        20% { left: 100%; }
        100% { left: 100%; }
    }
    
    .strip-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 8px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .strip-content {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        flex: 1;
    }
    
    .strip-icon {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
        animation: bounce 1s ease infinite;
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-3px); }
    }
    
    .strip-text {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .strip-badge {
        background: rgba(255,255,255,0.25);
        padding: 4px 10px;
        border-radius: 30px;
        font-size: 11px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.5px;
    }
    
    .strip-message {
        color: #1a1f2f;
        font-size: 13px;
        font-weight: 600;
    }
    
    .strip-locations {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.15);
        padding: 6px 14px;
        border-radius: 30px;
        cursor: pointer;
        position: relative;
        font-size: 12px;
        font-weight: 500;
        color: #1a1f2f;
        transition: all 0.3s ease;
    }
    
    .strip-locations:hover {
        background: rgba(255,255,255,0.25);
    }
    
    .strip-locations i {
        color: #fff;
    }
    
    .location-tooltip {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 10px;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .strip-locations:hover .location-tooltip {
        visibility: visible;
        opacity: 1;
    }
    
    .tooltip-content {
        background: #1a1f2f;
        border: 2px solid #f5c518;
        border-radius: 12px;
        padding: 12px 16px;
        min-width: 250px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .tooltip-content strong {
        color: #f5c518;
        display: block;
        margin-bottom: 8px;
        font-size: 12px;
    }
    
    .tooltip-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .tooltip-content li {
        color: #fff;
        font-size: 11px;
        padding: 4px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .tooltip-content li:last-child {
        border-bottom: none;
    }
    
    .tooltip-content::before {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #f5c518;
    }
    
    .strip-cta {
        background: #1a1f2f;
        color: #f5c518;
        padding: 8px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .strip-cta:hover {
        background: #0a0f1e;
        transform: scale(1.02);
        color: #ffd700;
    }
    
    .strip-close {
        background: rgba(255,255,255,0.2);
        border: none;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #1a1f2f;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .strip-close:hover {
        background: rgba(255,255,255,0.4);
        transform: rotate(90deg);
    }
    
    /* Mobile Responsive */
    @media screen and (max-width: 768px) {
        .strip-container {
            padding: 10px 15px;
            flex-direction: column;
            align-items: stretch;
        }
        
        .strip-content {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
        }
        
        .strip-text {
            justify-content: center;
            text-align: center;
        }
        
        .strip-message {
            font-size: 11px;
        }
        
        .strip-locations {
            justify-content: center;
            width: fit-content;
            margin: 0 auto;
        }
        
        .strip-cta {
            justify-content: center;
            padding: 10px 20px;
        }
        
        .strip-close {
            position: absolute;
            top: 5px;
            right: 10px;
        }
        
        .strip-icon {
            display: none;
        }
        
        .location-tooltip {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 300px;
            z-index: 2000;
        }
        
        .strip-locations:hover .location-tooltip {
            visibility: visible;
            opacity: 1;
        }
    }
    
    /* Desktop hover tooltip */
    @media screen and (min-width: 769px) {
        .location-tooltip {
            width: auto;
            white-space: nowrap;
        }
    }
    
    /* Hidden state */
    .pickup-announcement-strip.hidden {
        display: none;
    }
    
     /* Floating Pickup Badge for Mobile */
    .floating-pickup-badge {
        position: fixed;
        bottom: 80px;
        right: 16px;
        background: linear-gradient(135deg, #f5c518, #ff8c00);
        color: #1a1f2f;
        padding: 10px 16px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(245,197,24,0.4);
        animation: slideInRight 0.3s ease, pulse 2s infinite;
        white-space: nowrap;
    }
    
    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }
    
    .floating-pickup-badge i {
        font-size: 14px;
    }
    
    @media screen and (min-width: 769px) {
        .floating-pickup-badge {
            display: none;
        }
    }
