:root {
    --primary: #FF5A1F;
    --primary-dark: #D93F00;
    --accent: #FFB800;
    --dark: #0F0F0F;
    --light: #F7F5F2;
    --text: #1A1A1A;
    --muted: #6B6B6B;
    --border: rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== HERO SLIDER ===== */
.hero {
    margin-top: 72px;
    height: 65vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active img {
    transform: scale(1);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 80px 80px;
    max-width: 100%;
    text-align: center;
}

.hero-tag {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.hero-tag::before {
    content: '⚽';
}

.hero-tag::after {
    content: '🏀';
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary);
}

.hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    justify-content: center;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-meta-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 80px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
}

.hero-arrows {
    position: absolute;
    right: 40px;
    bottom: 24px;
    display: flex;
    gap: 8px;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}

.arrow-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ===== TIMER STRIP ===== */
.timer-strip {
    background: #ff5a1fdb;
    padding: 0 60px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.timer-strip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--dark);
}

.timer-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.timer-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    color: var(--dark);
    line-height: 1;
    letter-spacing: 2px;
}

.timer-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    opacity: 0.7;
}

.timer-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--dark);
    padding: 0 4px;
    line-height: 1;
    opacity: 0.6;
    margin-bottom: 16px;
}

.timer-center {
    text-align: center;
}

.timer-headline {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.timer-sub {
    font-size: 0.875rem;
    color: var(--dark);
    opacity: 0.75;
    font-weight: 500;
}

.timer-btn {
    background: var(--dark);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.timer-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

/* ===== EVENT OVERVIEW ===== */
.section {
    padding: 48px 80px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--primary);
    opacity: 0.3;
    max-width: 40px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    margin-top: 28px;
}

.overview-card {
    padding: 24px 22px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background 0.2s;
    position: relative;
}

.overview-card:last-child {
    border-right: none;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card:hover {
    background: #fff8f5;
}

.overview-icon {
    width: 44px;
    height: 44px;
    background: #fff0ea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.overview-key {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.overview-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.overview-sub {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ===== MOMENTS & MILESTONES GALLERY ===== */
.gallery-section {
    background: #fff;
    padding-bottom: 80px;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    margin-top: 40px;
    padding: 0 20px;
}

.gallery-track-outer {
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.gallery-track-outer:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.gallery-item {
    min-width: 350px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

/* .gallery-item:hover {
    transform: translateY(-10px);
} */

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.6s ease;
    pointer-events: none; /* Prevent image drag interfering with swipe */
}

/* .gallery-item:hover img {
    transform: scale(1.1);
} */

.gallery-nav {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(255, 90, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .gallery-section {
        padding-bottom: 20px;
    }

    .gallery-container {
        padding: 0 10px;
        margin-top: 20px;
    }

    .gallery-item {
        min-width: 90vw;
        max-height: 480px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fdfdfd;
    }

    .gallery-item img {
        max-height: 480px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .gallery-nav {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        display: flex !important;
        justify-content: center;
        gap: 24px;
        margin-top: 16px;
        pointer-events: auto;
        z-index: 5;
    }

    .gallery-dots {
        display: none !important;
    }
}

/* ===== BANNER STRIP ===== */
.banner-strip {
    background: var(--dark);
    padding: 56px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.banner-bg-left,
.banner-bg-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    overflow: hidden;
}

.banner-bg-left {
    left: 0;
}

.banner-bg-right {
    right: 0;
}

.banner-bg-left img,
.banner-bg-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: grayscale(30%);
}

.banner-bg-left::after,
.banner-bg-right::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.banner-bg-left::after {
    background: linear-gradient(to right, transparent 0%, var(--dark) 100%);
}

.banner-bg-right::after {
    background: linear-gradient(to left, transparent 0%, var(--dark) 100%);
}

.banner-strip-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
}

.banner-strip-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.banner-strip-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: white;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 20px;
}

.banner-strip-title span {
    color: var(--accent);
}

.banner-strip-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.sport-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.sport-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 10px 24px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== SPLIT SECTIONS ===== */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
}

.split-row.light-bg {
    background: #F7F5F2;
}

.split-text-panel {
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.split-text-panel.bg-light {
    background: #F7F5F2;
}

.sp-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.sp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 12px;
}

.sp-title span {
    color: var(--primary);
}

.age-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.age-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--light);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
}

.age-row:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}

.age-tag {
    background: var(--primary);
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 5px;
    flex-shrink: 0;
    min-width: 40px;
    text-align: center;
}

.age-tag.u12 {
    background: #E04000;
}

.age-tag.u14 {
    background: #C03200;
}

.age-tag.u16 {
    background: #111;
}

.age-row-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

.sp-sub-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 6px;
    margin-top: 4px;
}

.sp-sub-title span {
    color: var(--primary);
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.45;
}

.doc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 6px;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.players-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--light);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.players-item:hover {
    border-color: var(--primary);
}

.players-item-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.players-item-sport {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 2px;
}

.players-item-detail {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.package-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
    padding: 2px 0;
}

.package-check {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.split-img-panel {
    position: relative;
    overflow: hidden;
}

.split-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.split-img-panel:hover img {
    transform: scale(1.03);
}

.split-img-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.img-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: white;
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.img-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

.img-badge-txt {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.3;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: linear-gradient(135deg, #150501, #4a0d0d, #8b1e1e);
    padding: 52px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.cta-strip::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-strip-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: white;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 16px;
}

.cta-strip-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-strip-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-dark {
    background: var(--dark);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ===== AWARDS ===== */
.awards-section {
    padding: 48px 80px;
    background: var(--light);
}

.awards-header {
    text-align: center;
    margin-bottom: 36px;
}

.awards-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 24px;
    align-items: stretch;
}

.awards-list-wrapper {
    background: white;
    border-radius: 16px;
    padding: 36px 40px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.award-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.award-list-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.award-list-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(255, 184, 0, 0.4));
}

.award-list-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.5;
    font-weight: 500;
}

.award-list-text strong {
    color: var(--dark);
    font-weight: 700;
}

.cups-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: 100%;
}

.cup-card {
    position: relative;
    background: linear-gradient(135deg, #FF7B00 0%, #E65100 100%);
    border-radius: 16px;
    padding: 32px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 12px 32px rgba(230, 81, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cup-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 48px rgba(230, 81, 0, 0.35);
}

.cup-card::before {
    content: attr(data-icon);
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    font-size: 16rem;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
    filter: brightness(0) invert(1);
}

.cup-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 12px);
    z-index: 1;
    pointer-events: none;
}

.cup-img-wrapper {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transform: scale(1.1);
}

.cup-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.cup-content {
    position: relative;
    z-index: 2;
}

.cup-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: white;
    line-height: 1;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cup-desc {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

.cup-desc-sub {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.awards-note {
    text-align: center;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--dark);
}

.awards-note span {
    color: #8B0000;
    margin-left: 2px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.final-cta-bg-wrap {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.final-cta-bg-wrap .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.8);
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0.15) 40%, rgb(0 0 0 / 0%) 100%),
        linear-gradient(135deg, rgba(255, 90, 31, 0.18) 0%, transparent 50%);
    z-index: 1;
}

.final-cta-inner {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 80px;
    align-items: stretch;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.15s;
}

.fade-in.delay-2 {
    animation-delay: 0.3s;
}

.fade-in.delay-3 {
    animation-delay: 0.45s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }

    nav .nav-links {
        display: none;
    }

    .hero-content {
        padding: 0 24px 60px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-meta {
        gap: 16px;
    }

    .section,
    .awards-section {
        padding: 40px 24px;
    }

    .timer-strip {
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 32px 24px;
        text-align: center;
    }

    .timer-unit {
        min-width: 60px;
    }

    .timer-num {
        font-size: 2.6rem;
    }


    .timer-center {
        display: block;
        margin: 10px 0;
    }

    .timer-headline {
        font-size: 1rem;
    }

    .timer-sub {
        font-size: 0.75rem;
    }

    .cta-strip {
        padding: 50px 24px;
    }

    .banner-strip {
        padding: 40px 24px;
        min-height: auto;
    }

    .banner-bg-left,
    .banner-bg-right {
        display: none;
    }

    .hero-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 12px;
    }

    .hero-arrows {
        display: none;
        /* Hide arrows on mobile to reduce clutter and overlap */
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-card {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .overview-card:nth-child(2n) {
        border-right: none;
    }

    .split-row {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .split-img-panel {
        order: 1;
        height: 350px;
    }

    .split-text-panel {
        order: 2;
    }

    .awards-split-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-inner {
        padding: 60px 24px !important;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-btns a {
        width: 100%;
        justify-content: center;
    }

    .timer-left {
        justify-content: center;
    }

    .timer-unit {
        min-width: 55px;
    }

    .timer-num {
        font-size: 2.22rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .overview-card:last-child {
        border-bottom: none !important;
    }

    .award-list-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }

    .cup-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .cup-img-wrapper {
        width: 110px;
        height: 110px;
    }

    .cup-title {
        font-size: 2rem;
    }

    .split-img-panel {
        height: 280px;
    }

    .img-badge {
        bottom: 15px;
        left: 15px;
        padding: 8px 14px;
    }

    .img-badge-num {
        font-size: 1.6rem;
    }

    .cta-strip-title {
        font-size: 2.2rem;
    }

    .banner-strip-title {
        font-size: 2.4rem;
    }

    .sport-badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .sport-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}