/* Force light theme globally - prevent automatic dark mode */
:root {
  color-scheme: light only;
}

*, *::before, *::after {
  color-scheme: light only;
}

html {
  font-size: 14px;
  color-scheme: light only;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Event Banner Styles */
.event-banner {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.event-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.event-banner-default {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.event-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.8), rgba(200, 35, 51, 0.9));
    display: flex;
    align-items: center;
    padding: 2rem;
    color: white;
}

.event-banner-content {
    z-index: 2;
}

.event-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.event-banner-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.event-detail-item i {
    opacity: 0.9;
}

.event-banner-status {
    z-index: 2;
}

.event-banner-status .badge {
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Event Banner */
@media (max-width: 768px) {
    .event-banner {
        height: 250px;
    }
    
    .event-banner-overlay {
        padding: 1.5rem;
    }
    
    .event-banner-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .event-banner-details {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .event-detail-item {
        font-size: 1rem;
    }
    
    .event-banner-status {
        margin-top: 1rem;
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .event-banner {
        height: 200px;
    }
    
    .event-banner-title {
        font-size: 1.5rem;
    }
    
    .event-detail-item {
        font-size: 0.9rem;
    }
}

/* Professional Event Details Styling */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    color: #212529;
    font-weight: 600;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.7;
}

.pricing-info {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}

.detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.section-header .icon-circle {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.ticket-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #dc3545;
}

.betting-offer-card {
    border: 2px solid #ffc107;
    background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.betting-offer-header {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #212529;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.card.border-0.shadow-sm {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

.card.border-0.shadow-sm:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px);
}

.sticky-top {
    position: sticky;
    top: 2rem;
    z-index: 1020;
}

.event-status-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.share-section .btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-header .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-info {
        padding: 0.75rem;
    }
    
    .sticky-top {
        position: relative;
        top: auto;
    }
    
    .ticket-card:hover {
        transform: none;
    }
    
    .card.border-0.shadow-sm:hover {
        transform: none;
    }
}