/* Junior League Cup — Premium sports brand (Tarkamo-inspired: dark hero → white content) */

:root {
    --navy-950: #050a12;
    --navy-900: #0c1525;
    --navy-800: #152238;
    --navy-700: #1e3354;
    --accent: #c41e3a;
    --accent-hover: #a01830;
    --gold: #c9a227;
    --gold-light: #e8c547;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-muted: #f4f6f9;
    --bg-soft: #eef1f6;
    --text: #0c1525;
    --text-muted: #5c6778;
    --text-light: #8b95a5;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --gradient-hero: linear-gradient(105deg, rgba(5, 10, 18, 0.88) 0%, rgba(12, 21, 37, 0.72) 45%, rgba(30, 51, 84, 0.55) 100%);
    --shadow-sm: 0 4px 20px rgba(12, 21, 37, 0.06);
    --shadow-md: 0 12px 40px rgba(12, 21, 37, 0.1);
    --shadow-lg: 0 24px 60px rgba(12, 21, 37, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    /* Apple.com system font stack (SF Pro on Apple devices) */
    --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
    --font-body: var(--font-sans);
    --font-display: var(--font-sans);
    --header-h: 156px;
    --content-max: 1200px;
    --page-padding: clamp(1.25rem, 4vw, 2rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    background: var(--bg);
    color: var(--text);
    line-height: 1.47059;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: -0.03em;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: var(--page-padding);
}

/* Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-950);
    display: grid;
    place-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-ball {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--white), var(--gold) 40%, var(--navy-800));
    animation: bounce 0.8s ease-in-out infinite alternate;
}
@keyframes bounce { to { transform: translateY(-20px) scale(1.05); } }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.site-header .nav-link { color: rgba(255, 255, 255, 0.85); }
.site-header.scrolled {
    background: rgba(5, 10, 18, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.88);
}
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
}
.site-header.scrolled .nav-toggle span { background: var(--white); }

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.brand-logo {
    display: block;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.25s, transform 0.25s;
}
.brand:hover .brand-logo {
    opacity: 0.88;
    transform: translateY(-1px);
}
.brand-logo--header {
    height: 134px;
    width: auto;
    aspect-ratio: 1024 / 610;
    max-width: min(480px, 62vw);
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}
.site-header.scrolled .brand-logo--header {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}
.brand-logo--footer {
    height: 80px;
    width: auto;
    aspect-ratio: 1024 / 610;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}
.nav-link {
    padding: 0.5rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}
.nav-cta { margin-left: 0.5rem; margin-right: 0; }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: 0.35rem;
}

.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    white-space: nowrap;
}
.nav-dropdown-chevron {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.65;
    transition: transform 0.2s ease;
}
.nav-dropdown.open .nav-dropdown-chevron {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    min-width: 190px;
    padding: 0.35rem;
    background: rgba(8, 14, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1100;
}
.nav-dropdown--lang .nav-dropdown-menu {
    left: auto;
    right: 0;
    min-width: 88px;
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-item {
    display: block;
    padding: 0.6rem 0.85rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown-item:hover,
.nav-dropdown-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-light);
}
.site-header.scrolled .nav-dropdown-toggle:hover,
.site-header.scrolled .nav-dropdown-toggle.active,
.site-header.scrolled .nav-dropdown.open .nav-dropdown-toggle {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
}
.lang-dropdown-toggle {
    min-width: 3.2rem;
    justify-content: center;
}
.live-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #fff;
    text-decoration: none;
    background: rgba(196, 30, 58, 0.22);
    border: 1px solid rgba(196, 30, 58, 0.5);
    border-radius: 999px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.live-link:hover {
    color: #fff;
    background: rgba(196, 30, 58, 0.38);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.25);
}
.live-link.active {
    background: rgba(196, 30, 58, 0.45);
    border-color: rgba(255, 255, 255, 0.25);
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2d4d;
    box-shadow: 0 0 0 0 rgba(255, 45, 77, 0.55);
    animation: livePulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
.live-dot--sm {
    width: 6px;
    height: 6px;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 45, 77, 0.55); }
    50% { opacity: 0.7; box-shadow: 0 0 0 7px rgba(255, 45, 77, 0); }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.94rem;
    letter-spacing: -0.01em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-950);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-outline-dark {
    background: transparent;
    color: var(--navy-900);
    border: 2px solid var(--border-strong);
}
.btn-outline-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
.btn-white {
    background: var(--white);
    color: var(--navy-900);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
    background: #f5f5f7;
    color: var(--navy-900);
}

/* Hero — çim + krampon arka plan, metin sol, görsel sağ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    overflow: hidden;
    background: #1a2e1a;
}
.hero-stadium {
    position: absolute;
    inset: 0;
    background:
        url('/images/hero-bg.jpg?v=5') 68% center / cover no-repeat;
    z-index: 0;
}
.hero-stadium::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 5, 8, 0.92) 0%, rgba(3, 5, 8, 0.82) 35%, rgba(3, 5, 8, 0.45) 55%, rgba(3, 5, 8, 0.12) 75%, transparent 100%),
        linear-gradient(0deg, rgba(3, 5, 8, 0.5) 0%, transparent 38%);
}
.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 45%, rgba(255,255,255,0.95) 80%, var(--white) 100%);
    z-index: 4;
    pointer-events: none;
}
/* Content grids */
.content-grid,
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.hero-inner {
    position: relative;
    z-index: 3;
    padding-block: 2.5rem 7.5rem;
    width: 100%;
    box-sizing: border-box;
}
.hero-copy {
    grid-column: 1;
}
.hero-watermark {
    position: absolute;
    right: var(--page-padding);
    bottom: 12%;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-align: right;
    color: rgba(255, 255, 255, 0.07);
    user-select: none;
    pointer-events: none;
    max-width: 42%;
}
.hero h1 {
    font-size: clamp(2.25rem, 4.8vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--white);
}
.hero-highlight {
    display: block;
    color: #ff4d6d;
    margin: 0.15em 0;
}
.hero-desc {
    margin-top: 1.35rem;
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: -0.01em;
}
.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.hero-features {
    list-style: none;
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}
.hero-features li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    background: var(--accent);
    border-radius: 50%;
}
/* Quick info cards — image overlay, overlap hero */
.hero-cards-wrap {
    position: relative;
    z-index: 10;
    margin-top: -5rem;
    padding-bottom: 1rem;
}
.hero-cards-wrap .container {
    position: relative;
}
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
a.info-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
    padding: 1.35rem 1.25rem;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background-color: var(--navy-900);
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 36px rgba(5, 10, 18, 0.22);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.info-card--1 {
    background-image: url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?w=700&q=80');
}
.info-card--2 {
    background-image: url('https://images.unsplash.com/photo-1459865264687-595d652de67e?w=700&q=80');
}
.info-card--3 {
    background-image: url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?w=700&q=80');
}
.info-card--4 {
    background-image: url('/images/ronaldinho.png');
    background-position: center 15%;
}
.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 10, 18, 0.25) 0%,
        rgba(5, 10, 18, 0.45) 40%,
        rgba(5, 10, 18, 0.92) 100%
    );
    z-index: 0;
    transition: opacity 0.35s ease;
}
.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.18), transparent 55%);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.35s ease;
}
.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(5, 10, 18, 0.32);
}
.info-card:hover::after {
    opacity: 1;
}
.info-card-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    font-variant-numeric: tabular-nums;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    line-height: 1;
}
.info-card-content {
    position: relative;
    z-index: 2;
}
.info-card-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.info-card-content span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.content-image--legend {
    background-position: center 20%;
}

/* Sections */
section { padding: 5rem 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 1.25rem); }
.section-muted { background: var(--bg-muted); }
.section-dark {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.88);
}
.section-dark .section-header h2,
.section-dark .section-header p { color: var(--white); }
.section-dark .section-header p { opacity: 0.75; }
.section-dark .section-label { color: var(--gold-light); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.section-label {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: -0.03em;
    line-height: 1.08;
}
.section-header p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.section-header.text-left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}
.content-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.content-text p { color: var(--text-muted); margin-bottom: 1rem; }
.check-list { list-style: none; margin-top: 1.25rem; }
.check-list li {
    padding: 0.45rem 0 0.45rem 1.75rem;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
    padding-top: 0.5rem;
}
.timeline-track {
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 24px;
    z-index: 0;
    pointer-events: none;
}
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--border), rgba(196, 30, 58, 0.35), rgba(201, 162, 39, 0.45), rgba(196, 30, 58, 0.35), var(--border));
    border-radius: 2px;
    overflow: hidden;
}
.timeline-line-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(196, 30, 58, 0.35);
    transition: width 0.4s ease;
}
.timeline.is-active .timeline-line-progress {
    animation: timeline-fill 4.5s ease-in-out infinite;
}
.timeline-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    opacity: 0;
    text-shadow: 0 0 8px rgba(196, 30, 58, 0.4);
}
.timeline.is-active .timeline-arrow {
    animation: timeline-arrow-run 4.5s linear infinite;
}
.timeline.is-active .timeline-arrow:nth-child(3) { animation-delay: 1.1s; }
.timeline.is-active .timeline-arrow:nth-child(4) { animation-delay: 2.2s; }
.timeline.is-active .timeline-arrow:nth-child(5) { animation-delay: 3.3s; }

@media (prefers-reduced-motion: reduce) {
    .timeline.is-active .timeline-arrow,
    .timeline.is-active .timeline-line-progress,
    .timeline.is-active .timeline-step .timeline-num {
        animation: none !important;
    }
    .timeline.is-active .timeline-line-progress {
        width: 100%;
    }
}

@keyframes timeline-fill {
    0% { width: 0; }
    100% { width: 100%; }
}
@keyframes timeline-arrow-run {
    0% {
        left: 0;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.85);
    }
    8% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    92% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.85);
    }
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 0.5rem;
}
.timeline-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
    background: var(--navy-900);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.timeline.is-active .timeline-step:nth-child(2) .timeline-num { animation: timeline-step-pulse 4.5s ease-in-out infinite; animation-delay: 0s; }
.timeline.is-active .timeline-step:nth-child(3) .timeline-num { animation: timeline-step-pulse 4.5s ease-in-out infinite; animation-delay: 0.9s; }
.timeline.is-active .timeline-step:nth-child(4) .timeline-num { animation: timeline-step-pulse 4.5s ease-in-out infinite; animation-delay: 1.8s; }
.timeline.is-active .timeline-step:nth-child(5) .timeline-num { animation: timeline-step-pulse 4.5s ease-in-out infinite; animation-delay: 2.7s; }
.timeline.is-active .timeline-step:nth-child(6) .timeline-num { animation: timeline-step-pulse 4.5s ease-in-out infinite; animation-delay: 3.6s; }

@keyframes timeline-step-pulse {
    0%, 12%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
        background: var(--navy-900);
    }
    6% {
        transform: scale(1.12);
        box-shadow: 0 0 0 6px rgba(196, 30, 58, 0.15), var(--shadow-md);
        background: var(--accent);
    }
}
.timeline-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}
.timeline-step p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Turkey map */
.map-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}
.map-visual {
    position: relative;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.map-svg { width: 100%; height: auto; display: block; }
.turkey-shape {
    fill: #dce4ed;
    stroke: #94a3b8;
    stroke-width: 1.5;
    stroke-linejoin: round;
}
.map-city-label {
    font-size: 12px;
    font-weight: 600;
    fill: var(--text-muted);
    font-family: var(--font-sans);
}
.map-antalya-label {
    font-size: 13px;
    font-weight: 700;
    fill: var(--accent);
    font-family: var(--font-sans);
    letter-spacing: 0.06em;
}
.map-marker .map-city:hover { fill: #a01830; }
.map-city {
    fill: var(--accent);
}
.map-antalya-group {
    transform-box: fill-box;
    transform-origin: center;
}
.map-antalya-ring {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
    opacity: 0.55;
    transform-box: fill-box;
    transform-origin: center;
    animation: antalyaRingPulse 2.2s ease-out infinite;
}
.map-antalya-ring--2 { animation-delay: 1.1s; }
.map-antalya {
    fill: var(--accent);
}
.map-arrow {
    stroke: var(--gold);
    stroke-width: 3.5;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 12 8;
    animation: dash 7s linear infinite;
}
.map-arrow--1 { animation-delay: 0s; }
.map-arrow--2 { animation-delay: 0.4s; }
.map-arrow--3 { animation-delay: 0.8s; }
.map-arrow--4 { animation-delay: 1.2s; }
.map-arrow--5 { animation-delay: 1.6s; }
.map-arrow--6 { animation-delay: 2s; }
@keyframes dash { to { stroke-dashoffset: -240; } }
@keyframes antalyaRingPulse {
    0% { transform: scale(1); opacity: 0.6; }
    75%, 100% { transform: scale(2.6); opacity: 0; }
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.05em;
}
.card-body { padding: 1.5rem; }
.card-body h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}
.card-body p { margin-top: 0.6rem; font-size: 0.92rem; color: var(--text-muted); }
.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--text-light);
}
.card-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Feature boxes — light */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-box {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-box:hover {
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    background: var(--bg-muted);
    border-radius: 12px;
    margin-bottom: 1.15rem;
    color: var(--accent);
}
.feature-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}
.feature-box p { font-size: 0.92rem; color: var(--text-muted); }

/* Packages */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.package-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.package-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}
.package-card.featured::before {
    content: 'Öne Çıkan';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
}
.package-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.package-card .package-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    min-height: 2.8em;
}
.package-card ul { list-style: none; }
.package-card li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.package-card li:last-child { border-bottom: none; }
.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}

/* Sponsor tiers */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}
.sponsor-tier {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.sponsor-tier h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}
.sponsor-tier ul { list-style: none; }
.sponsor-tier li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}
.sponsor-tier li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Media */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.media-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.media-card:hover { box-shadow: var(--shadow-md); }
.media-card .thumb {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.media-card .body { padding: 1.25rem; }
.media-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.media-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.35;
}
.media-card p {
    margin-top: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Hotel cards */
.hotel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
#oteller .hotel-grid { grid-template-columns: repeat(3, 1fr); }
.hotel-card {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.hotel-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); }
.hotel-card .region {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}
.hotel-card p { margin-top: 0.75rem; font-size: 0.88rem; color: var(--text-muted); }

/* CTA */
.cta-banner {
    position: relative;
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    background: var(--navy-900);
}
.cta-banner .cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1529900748604-07564a03e8a9?w=1200&q=80') center/cover;
    opacity: 0.35;
}
.cta-banner .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 21, 37, 0.92), rgba(196, 30, 58, 0.75));
}
.cta-banner .cta-content { position: relative; z-index: 1; }
.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
}
.cta-banner p {
    margin: 1rem auto 2rem;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.85);
}
.cta-banner .btn { margin: 0 0.35rem; }

/* Page hero (inner) */
.page-hero {
    padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-bg.jpg') center 55% / cover no-repeat;
    z-index: 0;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 62%, rgba(255, 255, 255, 0.04) 78%, var(--bg) 100%),
        linear-gradient(180deg, rgba(5, 10, 18, 0.72) 0%, rgba(5, 10, 18, 0.88) 100%);
    z-index: 1;
}
.page-hero .container {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.04em;
}
.page-hero .lead {
    margin-top: 1rem;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
}
.page-hero .breadcrumb {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.live-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #fff;
    background: rgba(196, 30, 58, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

/* Live score page */
.live-nav-section {
    padding: 1.5rem 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-h);
    z-index: 50;
}
.live-city-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.live-city-pill {
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-900);
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.live-city-pill:hover {
    background: rgba(196, 30, 58, 0.08);
    border-color: rgba(196, 30, 58, 0.25);
    color: var(--accent);
}
.live-city-pill--final {
    background: rgba(201, 162, 39, 0.12);
    border-color: rgba(201, 162, 39, 0.35);
    color: var(--navy-900);
}
.live-city-pill--final:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
}
.live-grand-final {
    padding-bottom: 5rem;
    background: linear-gradient(180deg, var(--bg-muted) 0%, #fff 100%);
}
.bracket-final-box--logo {
    padding-top: 1.1rem;
}
.bracket-final-logo {
    display: block;
    width: 88px;
    height: auto;
    max-height: 52px;
    margin: 0 auto 0.85rem;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
.live-city-section {
    padding: 4rem 0;
    scroll-margin-top: calc(var(--header-h) + 4rem);
}
.live-city-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.live-city-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--navy-900);
    margin-top: 0.5rem;
}
.live-city-desc {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(196, 30, 58, 0.08);
    border-radius: 999px;
}
.live-bracket-note {
    margin-top: 1.75rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Tournament bracket */
.tournament-bracket {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 280px) 1fr;
    gap: 1.25rem 2rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.bracket-tree {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}
.bracket-tree--left { align-items: flex-end; }
.bracket-tree--right { align-items: flex-start; }
.bracket-round--qf {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.bracket-match {
    width: 100%;
    max-width: 250px;
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.bracket-match--final {
    border-color: var(--gold);
    max-width: none;
}
.bracket-team {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-bottom: 1px solid var(--border);
}
.bracket-team:last-child { border-bottom: none; }
.bracket-team-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-soft), var(--border));
    border: 1px dashed var(--border-strong);
}
.bracket-team-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.bracket-team-score {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
    min-width: 1.5rem;
    text-align: right;
}
.bracket-center { z-index: 2; }
.bracket-final-box {
    background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
    border-radius: 16px;
    padding: 1.25rem 1rem 1rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 16px 40px rgba(5, 10, 18, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.bracket-final-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.bracket-final-date {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}
.bracket-round--sf { position: relative; }
.bracket-tree--left .bracket-round--sf::before,
.bracket-tree--right .bracket-round--sf::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--accent);
    top: 50%;
    opacity: 0.5;
}
.bracket-tree--left .bracket-round--sf::before { right: -26px; }
.bracket-tree--right .bracket-round--sf::before { left: -26px; }

.live-trophy-section {
    text-align: center;
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(180deg, var(--bg-muted) 0%, #fff 100%);
}
.live-trophy-icon {
    width: 140px;
    height: 160px;
    margin: 0 auto 1.5rem;
}
.live-trophy-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 12px 24px rgba(201, 162, 39, 0.35));
}
.live-trophy-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy-900);
}
.live-trophy-desc {
    max-width: 520px;
    margin: 0.75rem auto 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.content-section { padding: 4rem 0; }

/* Legal pages */
.legal-content {
    max-width: 820px;
}
.legal-updated {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.legal-info-box {
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.legal-info-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.legal-info-box p { margin-bottom: 0.75rem; }
.legal-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.legal-info-list li {
    padding: 0.35rem 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.legal-info-list a {
    color: var(--accent);
    font-weight: 600;
}
.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy-900);
    margin: 2.25rem 0 0.85rem;
    letter-spacing: -0.02em;
}
.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-800);
    margin: 1.5rem 0 0.65rem;
}
.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.legal-content ul,
.legal-content ol {
    margin: 0.5rem 0 1rem 1.25rem;
}
.legal-content li { margin-bottom: 0.35rem; }
.legal-content a {
    color: var(--accent);
    font-weight: 500;
}
.legal-content a:hover { text-decoration: underline; }
.legal-related {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.legal-related h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}
.legal-related p { margin: 0; font-size: 0.9rem; }

/* Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
}
.contact-info-card {
    padding: 2rem;
    background: var(--bg-muted);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: var(--white);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--accent);
    border: 1px solid var(--border);
}
.contact-item strong { display: block; color: var(--navy-900); margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-item span { font-size: 0.9rem; color: var(--text-muted); }

.contact-form,
.apply-form {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.form-check input { margin-top: 0.2rem; accent-color: var(--accent); }

/* City cards */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.city-card {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.city-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 30, 58, 0.25);
}
.city-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: -0.02em;
}
.city-card .status {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--bg-muted);
    color: var(--text-muted);
    border-radius: 4px;
}
.city-card .status.open { background: rgba(196, 30, 58, 0.1); color: var(--accent); }

/* Team status */
.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.team-logo {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    background: var(--bg-muted);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--navy-700);
    border: 2px solid var(--border);
}
.status-badge {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    background: var(--bg-muted);
    color: var(--text-muted);
}
.status-badge.champion { background: rgba(201, 162, 39, 0.15); color: #8a6d12; }
.status-badge.finalist { background: rgba(196, 30, 58, 0.1); color: var(--accent); }

/* Placeholder */
.placeholder-box {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-muted);
    border: 2px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    color: var(--text-muted);
}
.placeholder-box strong { display: block; color: var(--navy-900); font-size: 1.1rem; margin-bottom: 0.5rem; }

/* Notice */
.notice {
    padding: 1rem 1.25rem;
    background: rgba(201, 162, 39, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.9rem;
    color: var(--text);
    margin: 1.5rem 0;
}

/* Sponsors strip */
.sponsors-strip {
    padding: 2.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.sponsor-logos span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-light);
}

/* Footer */
.site-footer { margin-top: 0; }
.footer-top {
    padding: 4rem 0 3rem;
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.75);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}
.footer-grid h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1.15rem;
}
.footer-brand-col p {
    margin: 1rem 0 1.25rem;
    font-size: 0.92rem;
    max-width: 300px;
    line-height: 1.65;
}
.footer-zenit {
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.social-links { display: flex; gap: 0.65rem; margin-top: 1rem; }
.social-links a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--white);
    transition: background 0.2s;
}
.social-links a:hover { background: var(--accent); }
.footer-links, .footer-contact { list-style: none; }
.footer-links a, .footer-contact li {
    display: block;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
    padding: 1.15rem 0;
    background: #030508;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 1100px) {
    .info-cards { grid-template-columns: repeat(2, 1fr); }
    #oteller .hotel-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: 1fr; gap: 1.5rem; }
    .timeline-track { display: none; }
    .timeline.is-active .timeline-step .timeline-num { animation: none; }
    .map-section { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .features-grid, .package-grid, .media-grid { grid-template-columns: 1fr 1fr; }
    .content-grid,
    .hero-inner { grid-template-columns: 1fr; }
    .content-grid.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 96px; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        background: var(--navy-950);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        gap: 0.15rem;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav .nav-link {
        color: rgba(255, 255, 255, 0.88);
        padding: 1rem;
        font-size: 1rem;
    }
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.08);
        color: var(--gold-light);
    }
    .nav-cta { margin: 1rem 0 0; width: 100%; }
    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin: 1rem 0 0;
        gap: 0.75rem;
    }
    .nav-dropdown {
        width: 100%;
    }
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.88);
    }
    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 0;
        padding: 0 0 0 0.75rem;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.25s ease, visibility 0.25s;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        visibility: visible;
        max-height: 220px;
        margin-bottom: 0.25rem;
    }
    .nav-dropdown-item {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
    .nav-dropdown--lang .nav-dropdown-menu {
        left: auto;
        right: auto;
    }
    .lang-dropdown-toggle {
        min-width: 0;
    }
    .live-link { width: 100%; justify-content: center; }
    .tournament-bracket {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .bracket-center { order: -1; }
    .bracket-tree--left,
    .bracket-tree--right { align-items: stretch; }
    .bracket-match { max-width: none; }
    .bracket-tree--left .bracket-round--sf::before,
    .bracket-tree--right .bracket-round--sf::before { display: none; }
    .live-nav-section { position: static; }
    .brand-logo--header {
        height: 98px;
        max-width: min(340px, 72vw);
    }
    .info-cards, .features-grid, .package-grid, .media-grid, .form-row {
        grid-template-columns: 1fr;
    }
    #oteller .hotel-grid { grid-template-columns: 1fr; }
    a.info-card { min-height: 180px; }
    .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 5rem;
        text-align: center;
    }
    .hero-copy {
        grid-column: auto;
        margin: 0 auto;
        max-width: 34rem;
    }
    .hero-watermark {
        display: none;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-features {
        align-items: center;
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cards-wrap { margin-top: -3rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 2.5rem 1.5rem; }
    .package-card.featured { transform: none; }
}

/* Media card links */
.media-card-link { display: block; text-decoration: none; }
.media-card h3 a { color: inherit; text-decoration: none; }
.media-card h3 a:hover { color: var(--accent); }

/* Admin panel */
.admin-body { background: var(--bg-muted); min-height: 100vh; font-family: var(--font-body); color: var(--text); }
.admin-header { background: var(--navy-900); color: var(--white); padding: 1rem 0; }
.admin-header-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.admin-brand { color: var(--white); font-weight: 700; text-decoration: none; font-size: 1.1rem; }
.admin-header-actions { display: flex; align-items: center; gap: 1rem; }
.admin-user { font-size: 0.9rem; opacity: 0.85; }
.admin-main { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }
.admin-toolbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.admin-toolbar h1 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.admin-subtitle { color: var(--text-muted); font-size: 0.95rem; }
.admin-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.admin-login-card { max-width: 420px; margin: 4rem auto; }
.admin-login-card h1 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.admin-form-group { margin-bottom: 1.25rem; }
.admin-form-divider { margin: 2rem 0 1.25rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.08); }
.admin-form-divider h2 { font-size: 1.1rem; margin: 0 0 0.35rem; }
.admin-form-divider .admin-subtitle { margin: 0; }
.admin-form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.admin-input { width: 100%; padding: 0.65rem 0.85rem; border: 1px solid var(--border-strong); border-radius: var(--radius); font: inherit; background: var(--white); }
.admin-input:focus { outline: 2px solid rgba(196, 30, 58, 0.25); border-color: var(--accent); }
.admin-form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.admin-form-grow { flex: 1; min-width: 240px; }
.admin-checkboxes { display: flex; flex-direction: column; gap: 0.65rem; justify-content: center; }
.admin-checkbox { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.admin-btn-full { width: 100%; margin-top: 0.5rem; }
.admin-alert { padding: 0.85rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: 0.9rem; }
.admin-alert-success { background: #ecfdf3; color: #166534; border: 1px solid #bbf7d0; }
.admin-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.admin-field-error { color: var(--accent); font-size: 0.82rem; display: block; margin-top: 0.25rem; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.admin-table th, .admin-table td { padding: 0.85rem 0.75rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); }
.admin-actions { display: flex; gap: 0.5rem; align-items: center; white-space: nowrap; }
.admin-badge { display: inline-block; padding: 0.2rem 0.55rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; background: var(--bg-muted); color: var(--text-muted); }
.admin-badge-success { background: #dcfce7; color: #166534; }
.admin-btn-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.admin-btn-danger:hover { background: #fecaca; }
.admin-empty { color: var(--text-muted); text-align: center; padding: 2rem 0; }
.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.82rem; }
.admin-image-preview { margin-bottom: 0.75rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); max-width: 320px; }
.admin-image-preview img { display: block; width: 100%; height: 180px; object-fit: cover; }
.admin-image-preview--empty { border-style: dashed; }
.admin-hint { margin-top: 0.35rem; font-size: 0.82rem; color: var(--text-muted); }

/* Language switcher */