:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8FAFC;
    --accent-teal: #0D9488;
    --accent-cyan: #0891B2;
    --text-main: #0F172A;
    --text-muted: #475569;
    --contrast-dark-bg: #1E293B;
    --contrast-light-text: #F8FAFC;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

button:active {
    transform: scale(0.98);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    h3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    body {
        font-size: 0.9375rem;
    }

    .mobile-break-word {
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: 0.875rem;
    }
}

@media (min-width: 769px) {
    h1 {
        font-size: 3.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    body {
        font-size: 1rem;
    }
}

/* ===== header ===== */
#header {
    hyphens: auto;
}

.js-mobile-menu.open {
    max-height: 400px;
}

/* ===== hero_section ===== */
#hero {
    overflow: hidden
}

#hero h1,
#hero h2 {
    hyphens: auto;
    line-height: 1.2
}

#hero p {
    hyphens: auto
}

#hero .container {
    max-width: 1280px
}

/* ===== about_event ===== */
#about .hyphens-auto {
    hyphens: auto;
    -webkit-hyphens: auto;
}

#about .shadow-2xl {
    shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ===== venue_info ===== */
#venue {
    background-color: var(--primary-bg);
    color: var(--text-main);
}

#venue h2,
#venue h3 {
    color: var(--text-main);
}

#venue p {
    color: var(--text-muted);
    hyphens: auto;
}

/* ===== team_overview ===== */
#teams {
    hyphens: auto;
}

.js-team-card {
    transition: all 0.3s ease;
}

.js-team-img {
    filter: grayscale(10%);
    transition: filter 0.4s ease;
}

.js-team-card:hover .js-team-img {
    filter: grayscale(0%);
}

/* ===== nba_global ===== */
#global {
    hyphens: auto;
}

.container {
    max-width: 1280px;
}

/* ===== event_atmosphere ===== */
.js-atmosphere-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-teal);
}

.js-atmosphere-card svg {
    transition: color 0.3s ease;
}

.js-atmosphere-card:hover svg {
    color: var(--accent-cyan);
}

/* ===== faq_section ===== */
.js-faq-content {
    transition: max-height 0.3s ease-out;
}

.js-faq-toggle svg {
    transform-origin: center;
}

.js-faq-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

section#faq {
    hyphens: auto;
}

/* ===== footer ===== */
#footer {
    hyphens: auto;
}

#footer a {
    transition: color 0.3s ease;
}