/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Map Styles */
.map-section {
    margin-bottom: 30px;
}

#events-map {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card {
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* User location marker styles */
.user-location-marker {
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.user-location-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5) !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(59, 130, 246, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    }
}

.venue-marker {
    transition: all 0.3s ease;
}

.venue-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}

/* Custom popup styles */
.leaflet-popup-content-wrapper {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.leaflet-popup-tip {
    background: white;
}

.leaflet-popup-content {
    margin: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Dubai Colors */
:root {
    --dubai-gold: #D4AF37;
    --dubai-dark: #1a1a1a;
    --dubai-blue: #0066cc;
}

/* Container Max Width - using Bootstrap container */

/* Hero Section Styles */
.gradient-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
}

.text-dubai-gold {
    color: #D4AF37;
}

.text-dubai-dark {
    color: #1a1a1a;
}

/* Responsive text sizes */
@media (min-width: 640px) {
    .sm\:text-5xl {
        font-size: 3rem;
    }

    .sm\:text-xl {
        font-size: 1.25rem;
    }

    .sm\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sm\:text-lg {
        font-size: 1.125rem;
    }

    .sm\:flex-row {
        flex-direction: row;
    }
}

/* Header Styles */
.header-bg {
    background: linear-gradient(135deg, #1e1e1e 0%, #292929 100%);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    position: relative;
    z-index: 2;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-right-buttons {
    display: flex;
    align-items: center;
    justify-content: end;
}

.new-event-btn {
    background: transparent !important;
    color: white !important;
    border: 1px solid var(--dubai-gold) !important;
    margin-right: 10px;
}

/* Ticket Code Display Styles */
.ticket-code-display {
    perspective: 1000px;
    overflow: hidden;
    max-width: 100%;
}

.ticket-code-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    transform: rotateY(-5deg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.ticket-code-bg:hover {
    transform: rotateY(0deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.ticket-code-header {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-code-main {
    text-align: center;
    margin-bottom: 15px;
}

.ticket-code-text {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.ticket-code-footer {
    text-align: center;
    font-size: 11px;
    opacity: 0.9;
}

.ticket-code-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Ticket Card Styles */
.ticket-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.ticket-card .card-body {
    position: relative;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 20px 0 0;
}

/* Info Box Styles */
.info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.info-box:hover::before {
    transform: translateX(100%);
}

.info-box-icon {
    margin-bottom: 10px;
    font-size: 20px;
}

.info-box-value {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-box-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Info Box Color Variants */
.date-box .info-box-icon {
    color: #007bff;
}

.date-box .info-box-value {
    color: #007bff;
}

.category-box .info-box-icon {
    color: #28a745;
}

.category-box .info-box-value {
    color: #28a745;
}

.level-box .info-box-icon {
    color: #17a2b8;
}

.level-box .info-box-value {
    color: #17a2b8;
}

.price-box .info-box-icon {
    color: #ffc107;
}

.price-box .info-box-value {
    color: #ffc107;
}

/* Responsive adjustments for ticket code */
@media (max-width: 768px) {
    .ticket-code-bg {
        width: 100%;
        max-width: 280px;
        transform: rotateY(0deg);
    }

    .ticket-code-display {
        perspective: none;
    }

    .info-box {
        padding: 12px;
    }

    .info-box-value {
        font-size: 16px;
    }

    .info-box-icon {
        font-size: 18px;
    }
}

.logo-container {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container svg {
    width: 32px;
    height: 32px;
}

.nav-link {
    color: white !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--dubai-gold) !important;
}

.login-btn {
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    color: #1a1a1a !important;
    border: none;
    border-radius: 25px;
    padding: 8px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.language-selector {
    background: transparent;
    color: white;
    border: 1px solid var(--dubai-gold);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
}

.language-selector:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.language-selector option {
    background: #1a1a1a;
    color: white;
}

.hero-section .display-4 {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-warning {
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-warning {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background: linear-gradient(135deg, #ffbf00, #ffd24c);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Stats Section */
.stats-section {
    background: #ffffff;
    padding: 40px 0 30px;
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Sports Menu */

.category-item {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    cursor: pointer;
    border-radius: 0.8rem;
}

.category-item:hover {
    border-color: #ffc91c;
}

.category-item.active {
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    color: #1a1a1a;
    transform: translateY(-2px);
    border-color: #ffc91c;
}

.category-item .small.text-muted {
    font-size: 0.8rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e1e1e 0%, #292929 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 0 70px;
}

/* Match Card Styles */
.match-header h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
}

.match-card {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.match-card:hover {
    transform: translateY(-2px);
}

.match-attribute {
    padding: 0.5rem;
}

.match-attribute i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.match-attribute .fw-bold {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.facilities-icons .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.4rem;
}

.btn-outline-warning {
    border-color: var(--dubai-gold);
    color: var(--dubai-gold);
}

.btn-outline-warning:hover {
    background-color: var(--dubai-gold);
    border-color: var(--dubai-gold);
    color: #1a1a1a;
}

.btn-warning {
    background-color: var(--dubai-gold);
    border-color: var(--dubai-gold);
    color: #1a1a1a;
}

.btn-warning:hover {
    background-color: #c19b2e;
    border-color: #c19b2e;
    color: #1a1a1a;
}

/* Responsive adjustments for match card */
@media (max-width: 768px) {
    .match-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .match-card .row {
        text-align: center;
    }

    .match-attribute {
        margin-bottom: 1rem;
    }

    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

.sports-menu-section {
    /* background: #E8EDF3; */
    background: #f0f4f9;
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}

.sports-menu-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 20px;
}

.sports-menu-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.sports-menu-scroll {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sports-menu-scroll::-webkit-scrollbar {
    display: none;
}

.sports-menu-scroll:active {
    cursor: grabbing;
}

.sports-menu-scroll.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Scrollbar hidden for all browsers */

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-arrow:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.scroll-arrow.left {
    left: 10px;
}

.scroll-arrow.right {
    right: 10px;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.8);
    transition: all 0.3s ease;
    visibility: hidden;
}

.scroll-arrow i {
    color: #64748b;
    font-size: 16px;
}

.scroll-arrow:hover i {
    color: #475569;
}

/* Smooth scroll behavior */
.sports-menu-scroll {
    scroll-behavior: smooth;
}

/* Auto-scroll on hover - removed for better UX */

/* Available Sports Section */
.available-sports {
    background: #f0f4f9;
    padding: 80px 0;
}

.available-sports h2 {
    color: #1a1a1a;
}

.sport-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--dubai-gold);
}

.sport-icon {
    transition: transform 0.3s ease;
}

.sport-card:hover .sport-icon {
    transform: scale(1.1);
}

.sport-stats {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

.sport-stats>div {
    flex: 1;
}

.sport-stats .fw-bold {
    color: var(--dubai-gold);
    font-size: 1.1rem;
}

.sport-stats small {
    font-size: 0.75rem;
}

/* Responsive adjustments for sports section */
@media (max-width: 768px) {
    .sport-card {
        margin-bottom: 1rem;
    }

    .sport-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sport-stats>div {
        margin-bottom: 0.5rem;
    }
}

/* About Section */
.about-section {
    background: #f0f4f9;
    padding: 80px 0;
}

.about-section h2 {
    color: #1a1a1a;
}

.about-content {
    padding-right: 30px;
}

.about-content h3 {
    color: #1a1a1a;
}

.about-content p {
    line-height: 1.6;
}

.about-stats-card {
    transition: all 0.3s ease;
}

.stats-card {
    background: linear-gradient(135deg, #ffd24c, #ffbf00) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.stats-card .display-1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.stats-card .h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stats-card .small {
    font-size: 0.875rem;
    opacity: 0.75;
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .stats-card .display-1 {
        font-size: 3rem;
    }

    .stats-card .h4 {
        font-size: 1.25rem;
    }
}

/* Features Section */
.features-section {
    background: #f0f4f9;
    padding: 80px 0;
}

.features-section h2 {
    color: #1a1a1a;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--dubai-gold);
}

.icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd24c, #ffbf00) !important;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-container {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.feature-card h4 {
    color: #1a1a1a;
}

.feature-card p {
    line-height: 1.6;
}

/* Responsive adjustments for features section */
@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 1rem;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

    .icon-container .display-6 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    padding: 80px 0;
}

.contact-section h2 {
    color: #1a1a1a;
}

.contact-section h3 {
    color: #1a1a1a;
}

.contact-info .contact-item {
    transition: all 0.3s ease;
}

.contact-info .contact-item:hover {
    transform: translateX(5px);
}

.contact-icon .icon-container {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffd24c, #ffbf00) !important;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.contact-item:hover .icon-container {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-item h5 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    line-height: 1.6;
}

.contact-form {
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background: #f0f4f9;
}

.contact-form h4 {
    color: #1a1a1a;
}

.form-label {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--dubai-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-warning {
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ffbf00 0%, #ffd24c 100%);
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-info .contact-item {
        margin-bottom: 1.5rem;
    }

    .contact-icon .icon-container {
        width: 40px;
        height: 40px;
    }

    .contact-form {
        margin-top: 2rem;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #404040;
    margin-top: 50px;
}

.footer-brand .logo-container {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-brand .logo-container svg {
    width: 32px;
    height: 32px;
}

.footer-brand h4 {
    color: #ffffff;
}

.footer-section h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--dubai-gold) !important;
    transform: translateX(5px);
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--dubai-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: var(--dubai-gold);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-contact i {
    color: var(--dubai-gold);
    width: 16px;
}

.footer-contact p {
    line-height: 1.5;
}

.border-secondary {
    border-color: #404040 !important;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-section .row>div {
        margin-bottom: 2rem;
    }

    .footer-brand .logo-container {
        width: 40px;
        height: 40px;
    }

    .footer-brand .logo-container svg {
        width: 28px;
        height: 28px;
    }

    .social-links .social-link {
        width: 35px;
        height: 35px;
    }

    .bottom-footer .row>div {
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Matches Grid */
.matches-grid {
    min-height: 200px;
}

#matches-loading {
    color: var(--dubai-gold);
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Match Card Hover Effects */
.match-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Load More Button */
#load-more-btn {
    transition: all 0.3s ease;
}

#load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive adjustments for matches */
@media (max-width: 768px) {
    .match-card .row>div {
        margin-bottom: 1rem;
    }

    .match-card .col-md-2 {
        text-align: center;
    }

    .match-attribute {
        margin-bottom: 1rem;
    }
}

/* Venue Link Styles */
.venue-link {
    transition: all 0.3s ease;
    border-bottom: 1px dotted #6c757d;
}

.venue-link:hover {
    color: #ffc107 !important;
    border-bottom-color: #ffc107;
    text-decoration: none !important;
}

/* Event Details Page Styles */
.text-pink {
    color: #e91e63 !important;
}

.bg-light-green {
    background-color: #e8f5e8 !important;
}

.bg-light-yellow {
    background-color: #fff3cd !important;
}

/* Event Details Cards */
.event-details-card {
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Back Button */
.btn-link {
    text-decoration: none;
}

.btn-link:hover {
    opacity: 0.8;
}

/* Badge Styles */
.badge.rounded-pill {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Action Button */
.btn-warning.rounded-pill {
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.btn-warning.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Mobile App Footer Menu Styles */
.mobile-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 2px solid var(--dubai-gold);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
}

.mobile-footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.mobile-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #9ca3af;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
}

.mobile-footer-item i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-footer-item span {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.mobile-footer-item:hover {
    color: var(--dubai-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.mobile-footer-item.active {
    color: var(--dubai-gold);
    background: rgba(212, 175, 55, 0.15);
}

.mobile-footer-item.active i {
    transform: scale(1.1);
}

/* Add bottom padding to body when mobile footer is present */
body.has-mobile-footer {
    padding-bottom: 80px;
}

/* Responsive adjustments for mobile footer */
@media (max-width: 480px) {
    .mobile-footer-item {
        min-width: 50px;
        padding: 6px 8px;
    }

    .mobile-footer-item i {
        font-size: 18px;
    }

    .mobile-footer-item span {
        font-size: 9px;
    }
}

/* Konum Kartı Stilleri */
.location-section {
    margin-top: 2rem;
}

.location-card {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.location-icon {
    color: rgba(255, 255, 255, 0.9);
}

.location-card h4 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#mobileLocationInfo p {
    font-size: 1.1rem;
    font-weight: 500;
}

#mobileLocationInfo .text-success {
    color: #28a745 !important;
}


/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Event Card */
.event-card {
    background: #efefef;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.card-content {
    position: relative;
    padding: 16px;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mobile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: white;
}

.mobile-title h4 {
    font-size: 18px;
    font-weight: bold;
    color: #292929;
    margin: 0;
}

.badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 9999px;
    font-weight: 600;
}

.badge.popular {
    background: #dcfce7;
    color: #166534;
}

.badge.fast {
    background: #fecaca;
    color: #991b1b;
}

.badge.award {
    background: #fef3c7;
    color: #92400e;
}

.mobile-price {
    text-align: right;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #292929;
}

.price-label {
    font-size: 12px;
    color: #6b7280;
}

/* Desktop Layout */
.desktop-layout {
    display: none;
}

.event-info {
    flex: 1;
}

.event-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.event-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    color: white;
}

.event-details {
    flex: 1;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.title-row h4 {
    font-size: 24px;
    font-weight: bold;
    color: #292929;
    margin: 0;
}

.description {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.info-item {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    max-width: 190px;
}

.info-icon {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 8px;
}

.info-label {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 4px 0;
}

.info-value {
    font-weight: bold;
    color: #292929;
    margin: 0;
}

.info-sub {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.info-price {
    font-size: 24px;
    font-weight: bold;
    color: #292929;
    margin: 0;
}

.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.facility {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
}

.facility.green {
    background: #10b981;
}

.facility.blue {
    background: #3b82f6;
}

.facility.purple {
    background: #8b5cf6;
}

.facility.yellow {
    background: #eab308;
}

/* Action Section */
.action-section {
    width: 600px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-card .info-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.info-card .info-label {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 8px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card .info-value {
    font-size: 16px;
    font-weight: bold;
    color: #292929;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.info-card .info-sub {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.2;
}

/* Date Card */
.date-card .info-icon {
    color: #3b82f6;
}

/* Location Card */
.location-card .info-icon {
    color: #ef4444;
}

.price-card {
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    border-radius: 16px;
    padding: 20px 0 10px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 0;
    min-width: 170px;
    position: relative;
}

.price-display {
    color: #292929;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
}

.price-unit {
    font-size: 14px;
}

.join-btn {
    width: 100%;
    background: #292929;
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #1f2937;
    transform: scale(1.05);
}

/* Mobile Content */
.mobile-content {
    display: block;
}

.mobile-description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.mobile-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-info-item {
    background: #f9fafb;
    border-radius: 8px;
    padding: 12px;
}

.mobile-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-icon {
    color: #ffc107;
}

.mobile-label {
    font-size: 12px;
    color: #6b7280;
}

.mobile-value {
    font-weight: bold;
    font-size: 14px;
    color: #292929;
    margin: 0;
}

.mobile-sub {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.mobile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.mobile-tag {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.mobile-facility {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
}

.mobile-facility.green {
    background: #10b981;
}

.mobile-facility.blue {
    background: #3b82f6;
}

.mobile-facility.purple {
    background: #8b5cf6;
}

.mobile-facility.yellow {
    background: #eab308;
}

.mobile-join-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    color: #292929;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-spots {
    text-align: center;
    font-size: 12px;
    margin: 8px 0 0 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }

    .card-content {
        padding: 32px;
    }

    .mobile-header,
    .mobile-content {
        display: none;
    }

    .desktop-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .action-section {
        width: 500px;
        flex-direction: row;
        gap: 12px;
    }

    .info-card {
        padding: 16px;
        flex: 1;
    }

    .price-card {
        flex: 1;
    }

    .info-card .info-value {
        font-size: 14px;
    }

    .info-card .info-sub {
        font-size: 11px;
    }
}

@media (min-width: 1024px) {
    .desktop-layout {
        flex-direction: row;
    }

    .action-section {
        width: 600px;
        gap: 16px;
    }

    .info-card {
        padding: 20px;
        flex: 1;
    }

    .price-card {
        flex: 1;
    }

    .info-card .info-value {
        font-size: 16px;
    }

    .info-card .info-sub {
        font-size: 12px;
    }
}

/* Events Section Styles */

/* Events List */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Event Card */
.event-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    border-left: 5px solid;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0fdf4;
    opacity: 0.5;
}

.orange-bg {
    background: #fff7ed;
}

.blue-bg {
    background: #eff6ff;
}

.card-content {
    position: relative;
    padding: 16px;
}

/* Mobile Header */
.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.mobile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.event-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    line-height: 1;
}

.mobile-title a {
    text-decoration: none;
}

.mobile-title h4 {
    font-size: 18px;
    font-weight: bold;
    color: #292929;
    margin: 0;
}

.badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 9999px;
    font-weight: 600;
}

.badge.popular {
    background: #dcfce7;
    color: #166534;
}

.badge.fast {
    background: #fecaca;
    color: #991b1b;
}

.badge.award {
    background: #fef3c7;
    color: #92400e;
}

.mobile-price {
    text-align: right;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #292929;
}

.price-label {
    font-size: 12px;
    color: #6b7280;
}

/* Desktop Layout */
.desktop-layout {
    display: none;
}

.event-info {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1;
}

.event-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    color: white;
}

.event-details {
    flex: 1;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.title-row a {
    text-decoration: none;
}

.title-row h4 {
    font-size: 24px;
    font-weight: bold;
    color: #292929;
    margin: 0;
}

.description {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    flex-shrink: 0;
    width: 100%;
}

.info-item {
    background: #f1f4f7;
    border-radius: 0.5rem;
    padding: 16px;
}

.info-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.info-label {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 4px 0;
}

.info-value {
    font-weight: bold;
    color: #292929;
    margin: 0;
}

.info-sub {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.info-price {
    font-size: 24px;
    font-weight: bold;
    color: #292929;
    margin: 0;
}

.facility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.facility {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
}

.facility.green {
    background: #10b981;
}

.facility.blue {
    background: #3b82f6;
}

.facility.purple {
    background: #8b5cf6;
}

.facility.yellow {
    background: #eab308;
}

/* Action Section */
.action-section {
    width: 192px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-card {
    background: linear-gradient(135deg, #ffc107, #ffcd38);
    border-radius: 0.5rem;
    padding: 35px 20px 20px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.price-card .price-bubbles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
}

.price-card .price-bubble {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}

.price-display {
    color: #292929;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
}

.price-unit {
    font-size: 14px;
}

.join-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-decoration: none;
    background: #292929;
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #1f2937;
}

.join-btn.disabled {
    background: #c99700 !important;
    color: #e0e2e7 !important;
    cursor: not-allowed !important;
    opacity: 0.5;
    pointer-events: none;
}

.join-btn.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.spots-left {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.5;
    margin: 0;
}

.more-info {
    font-size: 14px;
    font-weight: 500;
    color: #292929;
    margin: 8px 0 0 0;
    opacity: 0.75;
    text-decoration: underline;
    display: inline-block;
}

/* Mobile Content */
.mobile-content {
    display: block;
}

.mobile-description {
    color: #6b7280;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.mobile-info-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.mobile-info-item {
    background: #eef3f7;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.mobile-info-header {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 110px;
    flex-shrink: 0;
}

.mobile-icon {
    color: #ffc107;
}

.mobile-label {
    font-size: 12px;
    color: #6b7280;
}

.mobile-value {
    font-weight: bold;
    font-size: 14px;
    color: #292929;
    margin: 0;
}

.mobile-sub {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    margin-left: 5px;
    font-weight: 400;
}

.mobile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.mobile-facility {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
}

.mobile-facility.green {
    background: #10b981;
}

.mobile-facility.blue {
    background: #3b82f6;
}

.mobile-facility.purple {
    background: #8b5cf6;
}

.mobile-facility.yellow {
    background: #eab308;
}

.mobile-join-btn {
    background: linear-gradient(135deg, #ffd24c, #ffbf00);
    color: #292929;
    padding: 12px;
    border-radius: 12px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: block;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    position: relative;
}

.mobile-join-btn .mobile-price-bubbles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
}

.mobile-join-btn .mobile-price-bubble {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}

.mobile-join-btn.disabled {
    background: #9ca3af !important;
    color: #6b7280 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
    box-shadow: none !important;
}

.mobile-join-btn.disabled:hover {
    background: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
}

.mobile-spots {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    margin: 2px 0 0 0;
    opacity: 0.7;
}

.mobile-more-info-container {
    display: flex;
    justify-content: center;
}

.mobile-more-info {
    font-size: 12px;
    font-weight: 400;
    color: #292929;
    margin: 8px 0 0 0;
    opacity: 0.75;
    text-decoration: underline;
    display: inline-block;
}

/* Responsive Design for Events */
@media (min-width: 1200px) {
    .desktop-layout {
        display: flex;
        flex-direction: row;
        gap: 24px;
    }

    .card-content {
        padding: 32px;
    }

    .mobile-header,
    .mobile-content {
        display: none;
    }

    .event-info {
        flex-direction: row;
        gap: 20px;
    }

    .info-grid {
        width: auto;
    }
}




@media (max-width: 768px) {
    .sports-menu-section {
        padding: 20px 0;
    }

    .sports-menu-container {
        margin-bottom: 15px;
    }

    .sports-menu-scroll {
        gap: 10px;
    }
}