/* =============================================================================
   WBFF Premium Page Styles
   Consolidated styles for all redesigned pages
   Version: 2.0 - Optimized & De-duplicated
   ============================================================================= */

/* =============================================================================
   Common Variables & Utilities
   ============================================================================= */
:root {
    --gold-primary: #ffd000;
    --gold-light: #ffe44d;
    --gold-dark: rgba(255, 208, 0, 0.8);
    --red-primary: #dc3545;
    --red-light: #ff6b7a;
    --green-primary: #4ade80;
    --green-dark: #22c55e;
    --blue-paypal: #0070ba;
    --bg-dark-1: #1e1e1e;
    --bg-dark-2: #141414;
    --bg-dark-3: #1a1a1a;
    --bg-dark-4: #0d0d0d;
    --border-dark: #2a2a2a;
    --text-white: #fff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-faint: rgba(255, 255, 255, 0.4);
}

/* =============================================================================
   Utility Classes (to replace inline styles)
   ============================================================================= */
.min-w-80 {
    min-width: 80px;
}

.min-w-140 {
    min-width: 140px;
}

.min-w-250 {
    min-width: 250px;
}

.min-w-300 {
    min-width: 300px;
}

.w-auto {
    width: auto !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.text-gold {
    color: var(--gold-primary) !important;
}

.text-red {
    color: var(--red-light) !important;
}

.bg-paypal {
    background: var(--blue-paypal) !important;
    border-color: var(--blue-paypal) !important;
}

.hover-text-gold:hover {
    color: var(--gold-primary) !important;
}

.transition-all {
    transition: all 0.2s ease;
}

.object-fit-cover {
    object-fit: cover;
}

.object-fit-contain {
    object-fit: contain;
}

/* Margin left utility for state label */
.ml-4 {
    margin-left: 4px;
}

/* Filter group separator */
.filter-group-separator {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icon color utility for PPV banner */
.ppv-icon {
    color: var(--red-light);
    font-size: 1.25rem;
}

/* Premium badge inline style variants */
.premium-badge-info {
    background: rgba(255, 208, 0, 0.1);
    color: var(--gold-primary);
    border-color: rgba(255, 208, 0, 0.2);
}

/* Gold text for terms headers */
.terms-header-gold {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Terms checkbox label */
.terms-label {
    font-size: 1.1rem;
    cursor: pointer;
}

/* =============================================================================
   Shared Card Styles
   ============================================================================= */
.premium-card,
.event-card,
.sidebar-card,
.venue-info-card,
.venue-description-section,
.venue-map-section,
.venue-gallery-section,
.auth-card,
.profile-card,
.product-card-premium,
.store-nav-card,
.cart-summary-card,
.filter-section {
    background: linear-gradient(145deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-card:hover,
.event-card:hover,
.sidebar-card:hover,
.venue-info-card:hover,
.auth-card:hover,
.profile-card:hover,
.product-card-premium:hover,
.store-nav-card:hover {
    border-color: rgba(255, 208, 0, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.premium-card-header,
.auth-card-header,
.profile-card-header {
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.1) 0%, transparent 100%);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.premium-card-title,
.auth-card-title,
.profile-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.premium-card-title i,
.auth-card-title i,
.profile-card-title i {
    color: var(--gold-primary);
}

.premium-card-body,
.auth-card-body,
.profile-card-body {
    padding: 1.5rem;
}

/* =============================================================================
   Shared Badge Styles
   ============================================================================= */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 208, 0, 0.15);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 208, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* =============================================================================
   Shared Form Styles
   ============================================================================= */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.form-label i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.2s ease;
    width: 100%;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 208, 0, 0.5);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.1);
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* =============================================================================
   Shared Button Styles
   ============================================================================= */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, #c82333 100%);
    color: var(--text-white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #e04555 0%, #d83343 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-outline-gold,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-gold:hover,
.btn-outline-custom:hover {
    background: rgba(255, 208, 0, 0.1);
    transform: translateY(-2px);
    color: var(--gold-light);
}

.btn-success-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: #000;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-success-custom:hover {
    background: linear-gradient(135deg, #6ee7a0 0%, var(--green-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}

.form-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.form-link:hover {
    color: var(--gold-light);
}

.error-message {
    color: var(--red-light);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* =============================================================================
   Homepage Styles
   ============================================================================= */
.home-page {
    min-height: 80vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 208, 0, 0.2);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 208, 0, 0.4);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* PPV Banner */
.ppv-banner {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.ppv-banner:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
    transform: translateY(-2px);
}

.ppv-banner a {
    color: var(--red-light);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ppv-banner a:hover {
    color: #ff8a96;
}

/* Events Section */
.events-section {
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.section-title span {
    font-weight: 400;
    color: var(--text-muted);
}

.section-intro {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.policy-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.policy-notice strong {
    color: #ffc107;
}

/* Filter Tabs */
.filter-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label i {
    color: var(--gold-primary);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tabs a,
.filter-tabs input[type="submit"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-tabs a:hover,
.filter-tabs input[type="submit"]:hover {
    background: rgba(255, 208, 0, 0.15);
    border-color: rgba(255, 208, 0, 0.4);
    color: var(--gold-primary);
}

/* Event Cards */
.event-card {
    padding: 0;
    margin-bottom: 1.25rem;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.event-card-body {
    padding: 1.75rem;
}

.event-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.event-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.event-date-badge {
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.2) 0%, rgba(255, 208, 0, 0.05) 100%);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: 10px;
    padding: 0.5rem 0.85rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-shrink: 0;
    margin-left: 1rem;
    white-space: nowrap;
}

.event-date-badge .month,
.event-date-badge .day,
.event-date-badge .year {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary) !important;
}

.event-date-badge .month {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.event-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-info-icon i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.event-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-faint);
    margin-bottom: 0.25rem;
}

.event-info-value {
    color: var(--text-white);
    font-size: 0.95rem;
}

.event-info-value a {
    color: var(--gold-primary);
    text-decoration: none;
}

.event-info-value a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.event-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--red-primary) 0%, #c82333 100%);
    color: var(--text-white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: auto;
}

.event-register-btn:hover {
    background: linear-gradient(135deg, #e04555 0%, #d83343 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Sidebar */
.sidebar-card {
    padding: 0;
    margin-bottom: 1.5rem;
}

.sidebar-card:hover {
    border-color: rgba(255, 208, 0, 0.2);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.sidebar-title i {
    color: var(--gold-primary);
}

.sidebar-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-info strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    text-decoration: none;
    margin-top: 0.5rem;
}

.contact-link:hover {
    color: var(--gold-light);
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.75rem 1rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.quick-links a:hover {
    background: rgba(255, 208, 0, 0.1);
    color: var(--gold-primary);
}

.quick-links i {
    color: var(--gold-primary);
    width: 20px;
    text-align: center;
}

/* =============================================================================
   Venue Details Styles
   ============================================================================= */
.venue-page {
    min-height: 80vh;
    padding: 2rem 0;
}

.venue-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.venue-back-link:hover {
    color: var(--gold-primary);
}


.venue-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 208, 0, 0.15);
    color: var(--gold-primary);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 208, 0, 0.3);
}

.venue-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.venue-location {
    font-size: 0.95rem;
    color: var(--text-muted);
}



.venue-info-item {
    display: flex;
    gap: 1.25rem;
}

.venue-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.2) 0%, rgba(255, 208, 0, 0.05) 100%);
    border: 1px solid rgba(255, 208, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.venue-info-icon i {
    font-size: 1.25rem;
    color: var(--gold-primary);
}

.venue-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-faint);
    margin-bottom: 4px;
}

.venue-info-value {
    color: var(--text-white);
    line-height: 1.6;
    font-size: 1rem;
}

.venue-info-content a {
    color: var(--gold-primary);
    text-decoration: none;
}

.venue-info-content a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.venue-description-section,
.venue-map-section,
.venue-gallery-section {
    padding: 0;
    margin-bottom: 1.5rem;
}

.venue-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.venue-section-title i {
    color: var(--gold-primary);
}

.venue-description-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.venue-map-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.venue-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.venue-map-btn.primary {
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.2) 0%, rgba(255, 208, 0, 0.1) 100%);
    color: var(--gold-primary);
    border: 1px solid rgba(255, 208, 0, 0.3);
}

.venue-map-btn.primary:hover {
    background: rgba(255, 208, 0, 0.25);
    border-color: var(--gold-primary);
}

.venue-map-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-map-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.venue-map-container {
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
}

.venue-map-container img {
    width: 100%;
    height: auto;
    display: block;
}

#map {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.venue-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--text-faint);
    text-align: center;
    padding: 2rem;
}

.venue-map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.venue-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.venue-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.venue-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.venue-gallery-item:hover img {
    transform: scale(1.05);
}

.venue-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venue-gallery-item:hover::after {
    opacity: 1;
}

.venue-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.venue-gallery-item:hover .venue-gallery-overlay {
    opacity: 1;
}

.venue-gallery-overlay i {
    color: var(--text-white);
    font-size: 1.5rem;
}

/* =============================================================================
   Account Page Styles
   ============================================================================= */
.account-page {
    min-height: 80vh;
    padding: 2rem 0;
}

.account-hero {
    background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-dark-4) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.account-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.account-hero-content {
    position: relative;
    z-index: 1;
}

.account-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 208, 0, 0.15);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 208, 0, 0.3);
}

.account-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.account-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.7;
}

.account-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

.hero-trophy-img {
    max-width: 100%;
    max-height: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    animation: float-hero 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
}

@keyframes float-hero {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@media (max-width: 991px) {
    .account-hero-visual {
        padding-left: 0;
        margin-top: 2rem;
        display: none;
    }
}

/* Auth Cards */
.auth-card {
    height: 100%;
}

.auth-card-title {
    font-size: 1.25rem;
}

.auth-card-body {
    padding: 2rem;
}



/* Auth Button Adjustments */
.auth-card .btn-primary-custom,
.auth-card .btn-outline-custom {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    width: auto;
    min-width: 140px;
}

/* CTA Card */
.cta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.2) 0%, rgba(255, 208, 0, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.cta-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* =============================================================================
   Profile Page Styles
   ============================================================================= */
.profile-page {
    min-height: 80vh;
    padding: 2rem 0;
}

.profile-header {
    background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-dark-4) 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.profile-header-left {
    position: relative;
    z-index: 1;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 208, 0, 0.15);
    color: var(--gold-primary);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 208, 0, 0.3);
}

.profile-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 53, 69, 0.15);
    color: var(--red-light);
    border: 1px solid rgba(220, 53, 69, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.btn-logout:hover {
    background: rgba(220, 53, 69, 0.25);
    border-color: rgba(220, 53, 69, 0.5);
    color: #ff8a96;
}

/* Profile Cards */
.profile-card {
    margin-bottom: 1.5rem;
}

/* History Items */
.history-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-event-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.history-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.history-detail-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 208, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.history-detail-icon i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.history-detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-faint);
    margin-bottom: 0.25rem;
}

.history-detail-value {
    color: var(--text-white);
    font-weight: 500;
}

.history-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.history-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0;
}

.history-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-add-services {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(74, 222, 128, 0.1) 100%);
    color: var(--green-primary);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.btn-add-services:hover {
    background: rgba(74, 222, 128, 0.25);
    border-color: rgba(74, 222, 128, 0.5);
    color: #6ee7a0;
}

.history-divider {
    border: none;
    border-top: 1px solid var(--border-dark);
    margin: 1.5rem 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-state-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.empty-state-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.empty-state-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
}

.empty-state-link:hover {
    color: var(--gold-light);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: #000;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-register:hover {
    background: linear-gradient(135deg, #6ee7a0 0%, var(--green-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}

/* =============================================================================
   Responsive Styles
   ============================================================================= */
@media (max-width: 991px) {
    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .venue-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Aggressive Padding Reductions for Mobile */
    .container.px-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .account-page,
    .profile-page,
    .store-page,
    .venue-page {
        padding: 1rem 0 !important;
    }

    .account-hero,
    .profile-header,
    .store-hero {
        padding: 1.25rem !important;
        margin-bottom: 1.25rem !important;
        border-radius: 12px !important;
    }

    .premium-card-body,
    .auth-card-body,
    .profile-card-body {
        padding: 1rem !important;
    }

    .history-item {
        padding: 1rem !important;
    }

    .empty-state,
    .cta-card {
        padding: 2rem 1rem !important;
    }

    .hero-title,
    .account-title,
    .profile-title,
    .store-hero-title {
        font-size: 1.5rem !important;
    }

    .hero-overlay {
        padding: 1rem !important;
    }

    .event-card-header {
        flex-direction: column;
    }

    .event-date-badge {
        margin-left: 0;
        margin-top: 1rem;
        align-self: flex-start;
    }

    .profile-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .venue-name {
        font-size: 1.5rem !important;
    }
}

/* =============================================================================
   Store & Products Styles
   ============================================================================= */
.store-page {
    min-height: 80vh;
    padding: 2rem 0;
}

.store-toolbar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
}

.store-toolbar-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.store-toolbar-link:hover,
.store-toolbar-link.active {
    color: var(--gold-primary);
}

.store-toolbar-link::after {
    display: none !important;
}

.store-toolbar-link i {
    font-size: 1.1rem;
}

.store-hero {
    background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-dark-4) 100%);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.store-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 208, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.store-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.store-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter Tabs */
.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.category-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    color: var(--text-white);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tab::after {
    display: none !important;
}

.category-tab:hover,
.category-tab.active {
    background: rgba(255, 208, 0, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card-premium {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.product-price-tag small {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-bottom: 0.25rem;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-actions {
    margin-top: auto;
}

.btn-add-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--red-primary) 0%, #c82333 100%);
    color: #fff !important;
    border: none;
    padding: 0.875rem;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.btn-add-cart::after {
    display: none !important;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #e04555 0%, #d83343 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

/* Store Navigation Card */
.store-nav-card {
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.store-nav-card:hover {
    transform: translateY(-5px);
}

.store-nav-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.store-nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.store-nav-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Cart Review Styles */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-dark);
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
}

.cart-table th {
    padding: 1rem;
    color: var(--text-faint);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.cart-item-row {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.cart-item-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cart-item-row td {
    padding: 1.25rem 1rem;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #000;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-white);
}

.cart-item-price {
    color: var(--gold-primary);
    font-weight: 700;
}

.btn-remove {
    background: rgba(220, 53, 69, 0.1);
    color: var(--red-light);
    border: 1px solid rgba(220, 53, 69, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-remove:hover {
    background: var(--red-primary);
    color: #fff;
}

.cart-summary-card {
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.summary-row.total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 800;
}

.summary-row.total .price {
    color: var(--gold-primary);
}

/* Empty State */
.empty-store-state {
    text-align: center;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px dashed var(--border-dark);
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-faint);
    margin-bottom: 1.5rem;
}

/* =============================================================================
   Payment Page Navigation Links
   ============================================================================= */
.payment-nav-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.15) 0%, rgba(255, 208, 0, 0.05) 100%);
    border: 1px solid rgba(255, 208, 0, 0.25);
    transition: all 0.3s ease;
}

.payment-nav-icon i {
    color: var(--gold-primary) !important;
    font-size: 1.25rem;
}

.payment-nav-icon:hover {
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.25) 0%, rgba(255, 208, 0, 0.1) 100%);
    border-color: rgba(255, 208, 0, 0.4);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.2);
}

@media (max-width: 768px) {
    .store-hero-title {
        font-size: 2.25rem;
    }

    .store-toolbar {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   Register Profile Page Styles
   ============================================================================= */

/* Form select custom - enhanced for dropdowns */
.form-select-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: var(--text-white);
    font-size: 1rem;
    width: 100%;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-select-custom:focus {
    border-color: rgba(255, 208, 0, 0.5);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.1);
}

.form-select-custom option {
    background: var(--bg-dark-1);
    color: var(--text-white);
}

/* Input group adjustments for register page */
.input-group-text {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-left: none !important;
}

.input-group .form-control-custom {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    flex: 1;
}

/* =============================================================================
   Payment Summary Table Styles
   ============================================================================= */
.summary-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.summary-table td {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
}

.summary-table td:first-child {
    border-radius: 12px 0 0 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.summary-table td:last-child {
    border-radius: 0 12px 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    text-align: right;
    color: var(--text-white);
    font-weight: 600;
}

.summary-total td {
    background: rgba(255, 208, 0, 0.05) !important;
    border-top: 1px solid rgba(255, 208, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 208, 0, 0.2) !important;
}

.summary-total td:first-child {
    border-left: 1px solid rgba(255, 208, 0, 0.2) !important;
}

.summary-total td:last-child {
    border-right: 1px solid rgba(255, 208, 0, 0.2) !important;
    color: var(--gold-primary) !important;
    font-size: 1.4rem;
}

/* =============================================================================
   Payment Option Card Styles
   ============================================================================= */
.payment-option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.payment-option-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 208, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.payment-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 208, 0, 0.2);
}

/* =============================================================================
   Stripe External Payment Styles
   ============================================================================= */
#payment-message {
    background-color: rgba(223, 27, 65, 0.1) !important;
    border: 1px solid rgba(223, 27, 65, 0.3) !important;
    border-left: 4px solid #df1b41 !important;
    color: #ff6b8b !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    margin-top: 1.5rem !important;
}

#submit {
    background: var(--gold-primary) !important;
    color: #000 !important;
    border-radius: 12px !important;
    padding: 1.1rem !important;
    font-family: inherit !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 1rem !important;
    box-shadow: 0 4px 15px rgba(255, 208, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#submit:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 208, 0, 0.4) !important;
    filter: brightness(1.1) !important;
}

.summary-mini-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-summary-row:last-child {
    border-bottom: none;
    margin-top: 12px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold-primary);
}

.stripe-card-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

/* =============================================================================
   Category Page Styles
   ============================================================================= */
.category-list-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-checkbox-list label {
    margin-left: 12px;
    font-size: 1.15rem;
    color: var(--text-white);
    cursor: pointer;
    transition: color 0.2s ease;
}

.custom-checkbox-list input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--gold-primary);
}

.custom-checkbox-list tr:hover label {
    color: var(--gold-primary);
}

.custom-checkbox-list td {
    padding: 8px 0;
}

.terms-scroll-box {
    height: 250px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.terms-scroll-box h4 {
    color: var(--gold-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.terms-agree-card {
    background: rgba(255, 208, 0, 0.03);
    border: 1px solid rgba(255, 208, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.form-check-input-custom {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
}

/* RadDatePicker overrides */
.RadPicker_Black .rcInputCell .riTextBox {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 0.875rem 1rem !important;
    color: var(--text-white) !important;
    height: auto !important;
    font-family: inherit !important;
}

/* =============================================================================
   Products Page Styles (Register)
   ============================================================================= */
.product-image-container {
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Reset filters button */
.reset-filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.reset-filters-btn:hover {
    background: rgba(255, 208, 0, 0.15);
    border-color: rgba(255, 208, 0, 0.4);
    color: var(--gold-primary);
}

/* =============================================================================
   Register Page - Account Page Bottom Padding
   ============================================================================= */
.account-page-padded {
    padding-bottom: 3rem;
}

/* =============================================================================
   Additional Utility Classes (Inline Style Replacements)
   ============================================================================= */

/* Panel/Card Body Min Heights */
.panel-body-min-height {
    min-height: 225px;
}

/* Padding Utilities */
.padding-20 {
    padding: 20px;
}

.padding-15 {
    padding: 15px;
}

/* Width Utilities */
.width-600 {
    width: 600px;
    max-width: 100%;
}

.width-300 {
    width: 300px;
    max-width: 100%;
}

.width-180 {
    width: 180px;
}

.width-100-pct {
    width: 100%;
}

/* Height Utilities */
.height-27 {
    height: 27px;
}

.height-150 {
    height: 150px;
}

/* Font Size Utilities */
.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-20 {
    font-size: 20px;
}

/* Color Utilities */
.color-red {
    color: #FF0000;
}

.color-white {
    color: white;
}

.color-gray {
    color: gray;
}

.bg-black {
    background-color: black;
}

.bg-gray-light {
    background: #d4d4d4;
}

/* Border Utilities */
.border-gray {
    border: 2px solid #808080;
}

.border-gray-3 {
    border: 3px solid #808080;
}

.border-white-2 {
    border-width: 2px;
    border-color: white;
    border-style: solid;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-underline {
    text-decoration: underline;
}

.text-white-underline {
    color: white;
    text-decoration: underline;
}

/* Overflow Utilities */
.overflow-auto {
    overflow: auto;
}

/* Display Utilities */
.display-none {
    display: none;
}

.display-block {
    display: block;
}

/* Margin Utilities */
.margin-left-4 {
    margin-left: 4px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

/* HR Utilities */
.hr-gray {
    color: gray;
}

/* Table Utilities */
.table-bordered-custom {
    border-collapse: collapse;
}

.table-bordered-custom td,
.table-bordered-custom th {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

/* Terms Box Utility (for scrollable terms) */
.terms-box-scroll {
    height: 150px;
    width: 100%;
    overflow: auto;
    border: 2px solid #808080;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* Virtual/PPV Page Specific Styles */
.ppv-page-body {
    background-color: black;
    text-align: center;
}

.ppv-header-img {
    max-width: 100%;
    height: auto;
}

.ppv-poster-img {
    border-width: 2px;
    border-color: white;
    border-style: solid;
}

.ppv-link-white {
    color: white;
    text-decoration: underline;
}

.ppv-link-white:hover {
    color: var(--gold-primary);
}

.ppv-text-gray {
    color: gray;
}

.ppv-text-gray a {
    color: var(--gold-primary);
}

/* Video.js Responsive */
.video-js-responsive {
    width: 640px;
    height: 360px;
    max-width: 100%;
}

@media screen and (max-width: 550px) {
    .img-max-responsive {
        max-width: 100% !important;
        height: auto !important;
        align: center !important;
        display: block !important;
    }
}

/* Virtual Page Button Styles */
.btn-virtual-success {
    color: #fff;
    background-color: #056360;
    border-color: #056360;
    margin-bottom: 20px;
}

.btn-virtual-success:hover {
    color: #fff;
    background-color: #81D8D0;
    border-color: #81D8D0;
}

/* Virtual Page Headings */
.virtual-h3 {
    color: #58F6F2;
}

.virtual-h4 {
    color: #81D8D0;
    font-size: 15px;
}

.virtual-p {
    color: white;
    font-size: 20px;
}

/* Store/Ticket Review Page Styles */
.review-page-padding {
    padding: 20px;
}

/* Archive Page Styles */
.archive-error-text {
    color: red;
    font-weight: bold;
}

/* Venue Details Map Utilities */
.venue-map-hidden {
    display: none;
}

/* Select Dropdown Styles */
.select-custom {
    height: 27px;
    width: 180px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    padding: 0.25rem 0.5rem;
}

.select-custom:focus {
    border-color: rgba(255, 208, 0, 0.5);
    outline: none;
}

/* Ticket Package Box */
.ticket-package-box {
    width: 600px;
    max-width: 100%;
    padding: 15px;
    border: 3px solid #808080;
    background: #d4d4d4;
    border-radius: 8px;
    margin: 0 auto;
}

/* Link Button Width Utilities */
.link-btn-w-auto {
    width: auto !important;
}

.link-btn-min-w-250 {
    width: auto;
    min-width: 250px;
}

/* =============================================================================
   Animations
   ============================================================================= */
@keyframes pulse-gold {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 208, 0, 0));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 208, 0, 0.4));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(255, 208, 0, 0));
    }
}

/* Success Icon Wrapper */
.success-icon-wrapper {
    font-size: 5.5rem;
    color: var(--gold-primary);
}

.success-icon-wrapper i {
    display: inline-block;
    animation: pulse-gold 3s infinite ease-in-out;
}