:root {
    --primary-navy: #0b172a;
    --secondary-navy: #1e293b;
    --pure-white: #ffffff;
    --neutral-light: #f8fafc;
    --neutral-border: #e2e8f0;
    --neutral-gray-text: #64748b;
    --accent-red: #dc2626;
    --accent-red-hover: #b91c1c;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 10px 25px -5px rgba(11, 23, 42, 0.08), 0 8px 10px -6px rgba(11, 23, 42, 0.04);
    --transition: all 0.3s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-navy);
    background-color: var(--pure-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: inherit;
}

h1 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
}

h2 {
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.25;
}

h3 {
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.3;
}

h4 {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.4;
}

h5 {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

h6 {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:focus-visible {
    outline: 2px solid var(--accent-red);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 1.85rem);
    }

    h3 {
        font-size: clamp(1.15rem, 4vw, 1.4rem);
    }

    h4 {
        font-size: 1.1rem;
    }

    h5 {
        font-size: 1rem;
    }

    a[href^="mailto:"],
    a[href^="tel:"],
    .word-break-mobile {
        word-break: break-word;
        overflow-wrap: anywhere;
        font-size: 0.95rem;
    }
}

/* ===== header_section ===== */
#header {
    background-color: var(--primary-navy, #0b172a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    width: 100%;
    overflow: visible;
}

.header-wrapper {
    background-color: var(--primary-navy, #0b172a);
    min-height: 74px;
    display: flex;
    align-items: center;
}

.navbar-custom {
    width: 100%;
    min-height: 74px;
}

.brand-identity {
    gap: 8px;
}

.brand-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-red, #dc2626), var(--accent-red-hover, #b91c1c));
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
    flex-shrink: 0;
}

.brand-title {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    color: var(--pure-white, #ffffff);
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
}

.nav-anchor {
    color: var(--pure-white, #ffffff);
    position: relative;
    font-size: 0.95rem;
    transition: color 0.2s ease-in-out;
}

.nav-anchor:hover,
.nav-anchor:focus {
    color: var(--pure-white, #ffffff);
}

.nav-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--accent-red, #dc2626);
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
}

.nav-anchor:hover::after {
    transform: scaleX(1);
}

.nav-vertical-divider {
    width: 1px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.18);
}

.btn-nav-cta {
    background-color: var(--accent-red, #dc2626);
    color: var(--pure-white, #ffffff);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background-color 0.2s ease-in-out, transform 0.15s ease;
    border: 1px solid transparent;
}

.btn-nav-cta:hover,
.btn-nav-cta:focus {
    background-color: var(--accent-red-hover, #b91c1c);
    color: var(--pure-white, #ffffff);
    transform: translateY(-1px);
}

.mobile-hamburger-btn {
    cursor: pointer;
    outline: none;
    border-radius: 6px;
}

.mobile-hamburger-btn:focus {
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.5);
}

.mobile-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-navy, #0b172a);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    z-index: 99;
}

.mobile-dropdown-panel.open {
    max-height: 360px;
}

.mobile-nav-item {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.mobile-nav-anchor {
    font-size: 1rem;
    color: var(--pure-white, #ffffff);
    transition: color 0.2s ease;
}

.mobile-nav-anchor:hover {
    color: var(--pure-white, #ffffff);
}

.mobile-nav-cta {
    background-color: var(--accent-red, #dc2626);
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    transition: background-color 0.2s ease;
}

.mobile-nav-cta:hover {
    background-color: var(--accent-red-hover, #b91c1c);
    color: var(--pure-white, #ffffff);
}

@media(max-width:767.98px) {
    .brand-title {
        font-size: 0.8rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }

    .brand-icon-box {
        width: 32px;
        height: 32px;
    }
}

/* ===== hero_section ===== */
#hero {
    overflow: hidden;
    min-height: 90vh;
    background-color: var(--primary-navy, #0b172a);
    position: relative
}

#hero .hero-bg-img {
    object-fit: cover;
    object-position: center
}

#hero .hero-overlay {
    background: linear-gradient(180deg, rgba(11, 23, 42, 0.82) 0%, rgba(11, 23, 42, 0.94) 100%)
}

#hero .hero-badge {
    background: rgba(220, 38, 38, 0.3);
    border: 1px solid rgba(220, 38, 38, 0.6);
    letter-spacing: 0.05em
}

#hero .hero-title {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    hyphens: auto
}

#hero .hero-matchup {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    letter-spacing: 0.05em
}

#hero .hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    max-width: 760px;
    line-height: 1.6;
    opacity: 0.92;
    hyphens: auto
}

#hero .btn-primary-custom {
    background-color: var(--accent-red, #dc2626);
    border: 1px solid var(--accent-red, #dc2626);
    border-radius: 8px;
    transition: all .25s ease;
    min-width: 220px
}

#hero .btn-primary-custom:hover,
#hero .btn-primary-custom:focus {
    background-color: var(--accent-red-hover, #b91c1c);
    border-color: var(--accent-red-hover, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4)
}

#hero .btn-outline-custom {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all .25s ease;
    min-width: 200px
}

#hero .btn-outline-custom:hover,
#hero .btn-outline-custom:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--pure-white, #ffffff);
    transform: translateY(-2px)
}

#hero .btn-share-custom {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    transition: all .25s ease
}

#hero .btn-share-custom:hover,
#hero .btn-share-custom:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--pure-white, #ffffff);
    transform: translateY(-2px)
}

#hero .hero-stat-card {
    background: rgba(30, 41, 59, 0.55);
    border: 1px solid rgba(226, 232, 240, 0.15);
    backdrop-filter: blur(4px)
}

@media(max-width:767.98px) {
    #hero .hero-title {
        font-size: 1.125rem;
        line-height: 1.2
    }

    #hero .hero-matchup {
        font-size: 0.875rem
    }

    #hero .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.3
    }

    #hero .btn-primary-custom,
    #hero .btn-outline-custom,
    #hero .btn-share-custom {
        width: 100%
    }
}

/* ===== about_section ===== */
#about {
    overflow: hidden;
}

#about .badge {
    border-radius: 4px;
}

#about h2,
#about h3,
#about h4 {
    hyphens: auto;
}

@media (max-width: 767.98px) {
    #about h2 {
        font-size: 1.125rem !important;
        line-height: 1.25 !important;
    }

    #about h3 {
        font-size: 1rem !important;
        line-height: 1.25 !important;
    }

    #about h4 {
        font-size: 0.875rem !important;
        line-height: 1.25 !important;
    }
}

/* ===== ticket_categories_section ===== */
.ticket-categories-section {
    width: 100%;
}

.ticket-categories-section .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ticket-categories-section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(11, 23, 42, 0.1) !important;
}

.ticket-categories-section a.btn:hover {
    opacity: 0.95;
}

@media (max-width: 767.98px) {
    .ticket-categories-section h2 {
        font-size: 1rem !important;
        line-height: 1.25 !important;
    }

    .ticket-categories-section h3 {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
    }
}

/* ===== how_it_works_section ===== */
#how-it-works {
    overflow: hidden;
}

#how-it-works .step-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--neutral-border);
}

#how-it-works .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(11, 23, 42, 0.08) !important;
}

#how-it-works .js-scroll-action:hover {
    background-color: var(--accent-red-hover) !important;
}

@media (min-width: 992px) {
    #how-it-works .steps-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 8%;
        right: 8%;
        height: 2px;
        background: repeating-linear-gradient(to right, var(--neutral-border) 0, var(--neutral-border) 8px, transparent 8px, transparent 16px);
        z-index: 0;
        transform: translateY(-30px);
    }

    #how-it-works .steps-container>div {
        z-index: 1;
    }
}

@media (max-width: 767.98px) {
    #how-it-works h2 {
        font-size: 1rem !important;
        line-height: 1.25 !important;
        hyphens: auto;
    }

    #how-it-works h3 {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }
}

/* ===== venue_section ===== */
#venue {
    hyphens: auto;
    position: relative;
}

#venue .card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#venue .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 23, 42, 0.08) !important;
}

@media(max-width:767.98px) {
    #venue h2 {
        font-size: 1rem;
        line-height: 1.2;
    }

    #venue h3 {
        font-size: 0.875rem;
        line-height: 1.2;
    }

    #venue .venue-main-image {
        height: 220px !important;
    }
}

/* ===== experience_section ===== */
#experience {
    font-family: inherit;
}

#experience h2 {
    hyphens: auto;
}

@media (max-width: 767.98px) {
    #experience h2 {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    #experience h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }
}

#experience .card {
    border: 1px solid var(--neutral-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#experience .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 23, 42, 0.08) !important;
}

#experience .card:hover img {
    transform: scale(1.04);
}

/* ===== useful_info_section ===== */
#useful-info {
    background-color: var(--neutral-light);
    color: var(--primary-navy);
    position: relative;
    width: 100%
}

.info-badge {
    background-color: rgba(11, 23, 42, 0.06);
    border: 1px solid var(--neutral-border)
}

.info-badge-icon {
    color: var(--accent-red);
    font-size: 0.875rem
}

.info-badge-text {
    color: var(--secondary-navy);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase
}

.useful-title {
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.2;
    font-size: 2rem;
    hyphens: auto
}

.useful-subtitle {
    color: var(--neutral-gray-text);
    font-size: 1.05rem;
    line-height: 1.5
}

.info-card {
    background-color: var(--pure-white);
    border: 1px solid var(--neutral-border) !important;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(11, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(11, 23, 42, 0.08);
    border-color: rgba(220, 38, 38, 0.3) !important
}

.icon-box {
    width: 52px;
    height: 52px;
    background-color: rgba(11, 23, 42, 0.05);
    color: var(--primary-navy);
    transition: background-color 0.25s ease, color 0.25s ease
}

.info-card:hover .icon-box {
    background-color: var(--accent-red);
    color: var(--pure-white)
}

.card-icon {
    font-size: 1.35rem
}

.card-heading {
    color: var(--primary-navy);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    hyphens: auto
}

.card-description {
    color: var(--neutral-gray-text);
    font-size: 0.875rem;
    line-height: 1.55
}

.alert-notice {
    background-color: var(--pure-white);
    border: 1px solid var(--neutral-border);
    border-left: 4px solid var(--accent-red);
    box-shadow: 0 2px 8px rgba(11, 23, 42, 0.03)
}

.alert-icon {
    color: var(--accent-red);
    font-size: 1.25rem
}

.alert-heading {
    color: var(--primary-navy);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2
}

.alert-text {
    color: var(--neutral-gray-text);
    font-size: 0.875rem;
    line-height: 1.5
}

@media (max-width:767.98px) {
    .useful-title {
        font-size: 1rem;
        line-height: 1.2
    }

    .useful-subtitle {
        font-size: 0.875rem
    }

    .card-heading {
        font-size: 0.875rem;
        line-height: 1.2
    }

    .alert-heading {
        font-size: 0.875rem;
        line-height: 1.2
    }

    .info-card {
        padding: 0.25rem
    }
}

/* ===== faq_section ===== */
#faq {
    overflow: hidden;
    background-color: var(--neutral-light);
    padding: 5rem 0;
    position: relative;
}

#faq .faq-badge {
    background-color: rgba(11, 23, 42, 0.06);
    color: var(--primary-navy);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--neutral-border);
}

#faq .faq-badge i {
    color: var(--accent-red);
}

#faq .faq-title {
    color: var(--primary-navy);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

#faq .faq-subtitle {
    color: var(--neutral-gray-text);
    font-size: 1.0625rem;
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

#faq .faq-card {
    background-color: var(--pure-white);
    border: 1px solid var(--neutral-border);
    border-radius: 1.25rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    box-shadow: 0 10px 25px -5px rgba(11, 23, 42, 0.05), 0 8px 10px -6px rgba(11, 23, 42, 0.03);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    outline: none;
    cursor: pointer;
}

#faq .faq-card:hover,
#faq .faq-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(11, 23, 42, 0.12), 0 10px 15px -5px rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.35);
}

#faq .faq-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.875rem;
    background-color: rgba(220, 38, 38, 0.08);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    transition: background-color 0.28s ease, color 0.28s ease;
}

#faq .faq-card:hover .faq-card-icon {
    background-color: var(--accent-red);
    color: var(--pure-white);
}

#faq .faq-card-question {
    color: var(--primary-navy);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    hyphens: auto;
}

#faq .faq-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-border);
}

#faq .faq-action-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neutral-gray-text);
    transition: color 0.28s ease;
}

#faq .faq-action-arrow {
    font-size: 0.875rem;
    color: var(--accent-red);
    transition: transform 0.28s ease;
}

#faq .faq-card:hover .faq-action-label {
    color: var(--primary-navy);
}

#faq .faq-card:hover .faq-action-arrow {
    transform: translateX(4px);
}

.faq-modal-content {
    background-color: var(--pure-white);
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(11, 23, 42, 0.25);
    padding: 1rem;
}

.faq-modal-title {
    color: var(--primary-navy);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
}

.faq-modal-text {
    color: var(--secondary-navy);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.faq-modal-btn {
    background-color: var(--primary-navy);
    color: var(--pure-white);
    border: none;
    border-radius: 0.625rem;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.faq-modal-btn:hover,
.faq-modal-btn:focus {
    background-color: var(--accent-red);
    color: var(--pure-white);
}

@media (max-width: 767.98px) {
    #faq {
        padding: 3.5rem 0;
    }

    #faq .faq-title {
        font-size: 1rem;
        line-height: 1.2;
        hyphens: auto;
    }

    #faq .faq-card-question {
        font-size: 0.875rem;
        line-height: 1.25;
        hyphens: auto;
    }

    #faq .faq-subtitle {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .faq-modal-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .faq-modal-text {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* ===== contact_section ===== */
#contact input::placeholder,
#contact textarea::placeholder {
    color: var(--neutral-gray-text);
    opacity: 0.8;
}

#contact .form-control:focus,
#contact .form-select:focus {
    border-color: var(--accent-red) !important;
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.15) !important;
    outline: none;
}

#contact .btn:hover {
    background-color: var(--accent-red-hover) !important;
}

#contact a:hover {
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

#contact {
    hyphens: auto;
}

@media (max-width: 767.98px) {
    #contact h2 {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    #contact h3 {
        font-size: 0.875rem !important;
        line-height: 1.2;
    }

    #contact .contact-info-card,
    #contact .contact-form-card {
        padding: 1.25rem !important;
    }
}

/* ===== footer ===== */
#footer {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-navy);
    color: var(--pure-white);
}

#footer a {
    color: var(--neutral-light);
    transition: color 0.2s ease-in-out;
}

#footer a:hover {
    color: var(--accent-red);
}

#footer .disclaimer-box {
    background-color: var(--secondary-navy);
}

#footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--pure-white);
}

#footer .btn-outline-light:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--pure-white);
}

@media (max-width: 767.98px) {
    #footer h3 {
        font-size: 0.875rem;
        hyphens: auto;
        line-height: 1.2;
    }

    #footer .text-md-end {
        text-align: center !important;
    }

    #footer .text-md-start {
        text-align: center !important;
    }
}