/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0033a0; /* Modrá - Blue */
    --secondary-color: #1e4dd4; /* Světlejší modrá - Lighter blue */
    --accent-color: #dc143c; /* Červená - Red */
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff; /* Bílá - White */
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

body.loaded * {
    animation-play-state: running;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.header--overlay {
    background-color: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
}

.header--overlay .nav-link {
    color: rgba(255, 255, 255, 0.92);
}

.header--overlay .nav-link::after {
    background-color: rgba(255, 255, 255, 0.9);
}

.header.is-solid {
    background-color: var(--bg-white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: var(--shadow);
}

.header.is-solid .nav-link {
    color: var(--text-dark);
}

.header.is-solid .nav-link::after {
    background-color: var(--primary-color);
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.nav-left {
    justify-self: start;
}

.nav-right {
    justify-self: end;
}

.header-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.header-logo-large {
    width: 3cm;
    height: 3cm;
    object-fit: contain;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 72px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-dropdown {
    display: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.header--overlay .mobile-menu-toggle span {
    background-color: rgba(255, 255, 255, 0.92);
}

.header.is-solid .mobile-menu-toggle span {
    background-color: var(--text-dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .header-content {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 0.5rem 0;
        gap: 0;
    }

    .header-logo-center {
        padding: 0.25rem 0;
    }

    .header-logo-large {
        width: 2cm;
        height: 2cm;
    }

    .nav-left,
    .nav-right {
        justify-self: stretch;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-nav-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 1rem 1.5rem;
        z-index: 1000;
        box-shadow: var(--shadow);
    }

    .mobile-nav-dropdown.active {
        display: block;
    }

    .mobile-nav-dropdown .nav-list {
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-dropdown .nav-link {
        color: var(--text-dark);
        font-size: 1.05rem;
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-nav-dropdown .nav-list li:last-child .nav-link {
        border-bottom: none;
    }

    .nav-link.active {
        color: var(--primary-color);
    }

    .nav-link.active::after {
        width: 100%;
    }
}

/* Results Scrolling Panel */
.results-panel {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.results-panel-header {
    text-align: center;
    margin-bottom: 1rem;
}

.results-panel-header h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.results-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.results-scroll-wrapper {
    display: flex;
    gap: 1.5rem;
    animation: scroll-results 30s linear infinite;
    width: fit-content;
}

.results-scroll-wrapper:hover {
    animation-play-state: paused;
}

.result-card-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 280px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
    cursor: pointer;
}

.result-card-panel:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    border-left-color: var(--primary-color);
}

.result-panel-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.result-panel-category {
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.result-panel-teams {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.result-panel-team {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    min-width: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.result-panel-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

@keyframes scroll-results {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hero Section */
/* Hero Main Section with Team Background */
.hero-main {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-main--rolling {
    min-height: 92vh;
    padding-top: 110px; /* space for fixed header */
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.2s ease, transform 6s ease;
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-main--rolling .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
        transform: none;
    }
    .hero-slide.is-active {
        transform: none;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 160, 0.85) 0%, rgba(30, 77, 212, 0.75) 50%, rgba(220, 20, 60, 0.85) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 2rem 2rem 3rem;
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-brand-logo {
    width: 60px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-ticker-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-ticker-block {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1rem 0;
    overflow: hidden;
}

.hero-ticker-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 0.75rem 1.5rem;
}

.hero-ticker-track {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-ticker-scroll {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    width: max-content;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    will-change: transform;
}

.hero-ticker-scroll.is-dragging {
    cursor: grabbing;
}

.hero-ticker-scroll .hero-match-card {
    pointer-events: auto;
}

/* While dragging, prevent inner clickables from stealing the gesture */
.hero-ticker-scroll.is-dragging * {
    pointer-events: none;
}

/* Hero Ticker Cards */
.hero-match-card,
.hero-result-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    min-width: 220px;
    max-width: 260px;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-match-card:hover,
.hero-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-match-date,
.hero-result-date {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hero-match-time {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-match-teams {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.hero-team {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-team.home-team {
    color: var(--primary-color);
}

.hero-vs {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-match-category,
.hero-result-category {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Hero Result Cards */
.hero-result-match {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.25rem;
}

.hero-result-team {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-result-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.35rem 0;
}

.hero-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-separator {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Legacy hero styles (for backward compatibility) */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-date {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Announcements */
.announcements {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.announcements .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.announcement-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.announcement-card h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.announcement-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: lowercase;
    letter-spacing: 1px;
}

/* Upcoming Matches */
.upcoming-matches {
    padding: 4rem 0;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.match-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.match-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.match-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.match-time {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.match-teams {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.team {
    font-weight: 600;
    color: var(--text-dark);
}

.home-team {
    color: var(--primary-color);
}

.vs {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.match-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Recent Results */
.recent-results {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.result-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.result-match {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.result-team {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.result-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.separator {
    font-size: 1.5rem;
    color: var(--text-light);
}

.result-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* News Section */
.news {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.news-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.news-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(0, 51, 160, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

/* Article Modal */
.article-modal-content {
    max-width: 750px;
}

.article-body {
    padding: 2.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.article-body .article-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.article-body p {
    margin: 0 0 1rem;
    color: var(--text-light);
}

.article-body .article-image {
    width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.article-body ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.article-body strong {
    color: var(--text-dark);
}

.article-body em {
    color: var(--primary-color);
    font-style: italic;
}

@media (max-width: 480px) {
    .article-body {
        padding: 1.25rem;
    }

    .article-body h2 {
        font-size: 1.3rem;
    }
}

/* Calendar Section */
.calendar-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.calendar-nav-btn {
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.calendar-month-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    min-width: 180px;
    text-align: center;
}

.calendar-legend {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cal-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.cal-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    max-width: 600px;
    margin: 0 auto;
}

.cal-header {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 10px;
    background: var(--bg-white);
    border: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.cal-day-empty {
    background: transparent;
}

.cal-day-num {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cal-day-empty .cal-day-num {
    display: none;
}

.cal-day.is-today {
    border-color: var(--primary-color);
    background: rgba(0, 51, 160, 0.05);
}

.cal-day.is-today .cal-day-num {
    color: var(--primary-color);
    font-weight: 800;
}

.cal-day.has-match {
    cursor: pointer;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.cal-day.has-match:hover {
    border-color: var(--primary-color);
    transform: scale(1.08);
    z-index: 1;
}

.cal-day-dots {
    display: flex;
    gap: 3px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
}

.cal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Day detail panel */
.calendar-day-detail {
    max-width: 600px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calendar-day-detail h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.cal-detail-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.cal-detail-card:hover {
    border-color: var(--primary-color);
}

.cal-detail-color {
    width: 5px;
    height: 40px;
    border-radius: 3px;
    flex-shrink: 0;
}

.cal-detail-info {
    flex: 1;
    min-width: 0;
}

.cal-detail-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.cal-detail-teams {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cal-detail-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cal-detail-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cal-detail-venue {
    font-size: 0.75rem;
    color: var(--text-light);
}

.calendar-ics-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.calendar-ics-btn:hover {
    background: var(--primary-color);
    color: white;
}

.calendar-ics-btn:active {
    transform: scale(0.95);
}

/* Summer Camp Section */
.summer-camp {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.camp-content {
    max-width: 800px;
    margin: 0 auto;
}

.camp-info,
.camp-equipment {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.camp-info h3,
.camp-equipment h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.camp-info p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.camp-equipment ul {
    list-style: none;
    padding-left: 0;
}

.camp-equipment li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.camp-equipment li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Teams Section */
.teams {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-gallery-button {
    margin-top: 1.25rem;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    background: rgba(0, 51, 160, 0.12);
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: not-allowed;
    opacity: 1;
}

.team-table-button {
    display: block;
    margin-top: 0.75rem;
    width: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.team-table-button:hover {
    background: var(--primary-color);
    color: white;
}

.team-table-button[hidden] {
    display: none;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.team-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--text-light);
}

/* Coaches Section */
.coaches {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.coach-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.coach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.coach-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    border-top: 3px solid var(--accent-color);
}

.coach-photo,
.coach-photo-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.coach-photo-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.coach-card:hover .coach-photo {
    transform: scale(1.1);
}

.coach-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coach-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coach-role-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--primary-color);
    color: #fff;
    margin-bottom: 0.4rem;
}

.coach-role-badge.is-chairman {
    background: #dc143c;
    color: #fff;
}

.coach-role-badge.is-assistant {
    background: #e5e7eb;
    color: #4b5563;
}

.coach-category {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 51, 160, 0.1);
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.coach-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 0.95rem;
}

.coach-contact {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.coach-email {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
    word-break: break-word;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-info strong {
    color: var(--text-dark);
}

/* For Players Section */
.for-players {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.players-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.players-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Training Videos Section */
.training-videos-section {
    margin-bottom: 4rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.video-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.video-placeholder p {
    font-size: 1rem;
    font-weight: 600;
}

.video-card h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 1rem 1.5rem 0.5rem;
    font-weight: 600;
}

.video-card > p {
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Monthly Training Calendar - 3x4 Grid */
.months-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.month-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.month-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.month-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.month-card:hover .month-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.month-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: transform 0.3s ease;
}

.month-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.month-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    font-weight: 700;
    padding: 0 1rem;
}

.month-theme {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 1rem 1.5rem;
    margin: 0;
}

/* Month Detail Modal */
.month-detail {
    padding: 2.5rem;
}

.month-detail-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.month-detail-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.month-detail-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.month-detail-theme {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.month-detail-content {
    max-width: 700px;
    margin: 0 auto;
}

.month-description,
.month-task,
.month-why {
    margin-bottom: 2rem;
}

.month-description h3,
.month-task h3,
.month-why h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.month-description p,
.month-why p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.task-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
    box-shadow: var(--shadow);
}

.players-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.players-rules {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.players-rules h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    transition: color 0.3s ease;
}

.rules-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.rules-list li:hover {
    color: var(--text-dark);
    padding-left: 2.5rem;
    transition: all 0.3s ease;
}

/* For Parents Section */
.for-parents {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.parents-content {
    max-width: 1200px;
    margin: 0 auto;
}

.parents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.parent-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.parent-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 51, 160, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.parent-card:hover::after {
    opacity: 1;
}

.parent-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.parent-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.parent-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

.card-link:hover::after {
    transform: translateX(4px);
}

.parents-info {
    margin-top: 2rem;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
    box-shadow: var(--shadow-hover);
}

.info-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.info-list li strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-credit a {
    color: inherit;
    text-decoration: underline;
}

.footer-credit a:hover {
    opacity: 1;
    color: var(--primary-color, #fff);
}

/* Match Detail Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.match-detail {
    padding: 2.5rem;
}

.match-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.match-detail-date {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.match-detail-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    background: rgba(0, 51, 160, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.match-detail-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: 16px;
}

.match-detail-team {
    flex: 1;
    text-align: center;
}

.match-detail-team .team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.match-detail-team.home .team-name {
    color: var(--primary-color);
}

.match-detail-team .team-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.match-detail-separator {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
}

.match-detail-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-dark);
}

.info-value {
    color: var(--text-light);
}

.match-detail-stats {
    margin-bottom: 2rem;
}

.match-detail-stats h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.match-detail-goalscorers {
    margin-top: 2rem;
}

.match-detail-goalscorers h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.goalscorers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.goalscorers-team {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
}

.goalscorers-team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.goalscorers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.goalscorers-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.goalscorer-time {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 45px;
    font-size: 0.9rem;
}

.goalscorer-name {
    color: var(--text-dark);
    font-size: 0.95rem;
    flex: 1;
}

.match-detail-events {
    margin-top: 2rem;
}

.match-detail-events h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.event-time {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 50px;
    font-size: 0.9rem;
}

.event-type {
    font-size: 1.25rem;
    min-width: 30px;
    text-align: center;
}

.event-description {
    flex: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-main--rolling {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-main {
        min-height: auto;
    }

    .hero-container {
        padding: 1.5rem 0.75rem 2rem;
    }

    .hero-brand-logo {
        width: 40px;
        height: 48px;
    }

    .hero-brand-name {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .hero-brand {
        margin-bottom: 1.5rem;
    }

    .hero-match-card,
    .hero-result-card {
        min-width: 180px;
        max-width: 220px;
        padding: 0.75rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-date {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .announcements .container,
    .matches-grid,
    .results-grid,
    .teams-grid,
    .coaches-grid,
    .info-grid,
    .parents-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .result-card-panel {
        min-width: 250px;
    }

    .results-panel-header h3 {
        font-size: 1rem;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .months-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .month-card {
        min-height: 200px;
    }

    .month-image {
        height: 120px;
    }

    .month-card h4 {
        font-size: 1.1rem;
        margin: 0.5rem 0 0.25rem;
    }

    .month-theme {
        font-size: 0.75rem;
        padding: 0 0.5rem 0.75rem;
    }

    .coach-image {
        height: 200px;
    }

    .calendar-grid {
        gap: 2px;
    }

    .cal-day {
        border-radius: 6px;
    }

    .cal-day-num {
        font-size: 0.8rem;
    }

    .cal-dot {
        width: 5px;
        height: 5px;
    }

    .calendar-month-label {
        font-size: 1.1rem;
    }

    .cal-detail-card {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-main {
        min-height: auto;
    }

    .hero-main--rolling {
        padding-top: 60px;
    }

    .hero-container {
        padding: 1rem 0.5rem 1.5rem;
    }

    .hero-brand-logo {
        width: 32px;
        height: 38px;
    }

    .hero-brand-name {
        font-size: 1.1rem;
    }

    .hero-brand {
        margin-bottom: 1rem;
    }

    .hero-ticker-title {
        font-size: 0.75rem;
        margin-left: 1rem;
    }

    .hero-match-card,
    .hero-result-card {
        min-width: 160px;
        max-width: 190px;
        padding: 0.65rem 0.85rem;
    }

    .hero-match-time {
        font-size: 1rem;
    }

    .hero-score {
        font-size: 1.25rem;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .announcement-card,
    .match-card,
    .result-card,
    .news-card {
        padding: 1.25rem;
    }

    .modal-overlay.active {
        padding: 0.5rem;
    }

    .modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }

    .match-detail,
    .month-detail {
        padding: 1.25rem;
    }

    .match-detail-teams {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .match-detail-separator {
        transform: rotate(90deg);
    }

    .match-detail-team .team-score {
        font-size: 2rem;
    }

    .match-detail-separator {
        font-size: 2rem;
    }

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

    .goalscorers-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .months-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .month-card {
        min-height: 160px;
    }

    .month-image {
        height: 90px;
    }

    .month-card h4 {
        font-size: 1rem;
        margin: 0.4rem 0 0.2rem;
    }

    .month-theme {
        font-size: 0.7rem;
        padding: 0 0.4rem 0.5rem;
    }

    .month-detail-header h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .camp-info,
    .camp-equipment,
    .about-content,
    .contact-info {
        padding: 1.25rem;
    }

    .players-intro-text {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .parent-card {
        padding: 1.25rem;
    }

    .info-box {
        padding: 1.5rem;
    }

    .info-box h3 {
        font-size: 1.3rem;
    }

    .coach-card {
        border-radius: 12px;
    }

    .coach-image {
        height: 180px;
    }

    .coach-info {
        padding: 1.25rem;
    }

    .coach-name {
        font-size: 1.2rem;
    }

    .hero-results-list--scrollable {
        max-height: 300px;
    }
}

/* ==========================================
   TEAM CARD BIRTH YEARS
   ========================================== */

.team-card-years {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 0.75rem;
}

.team-year-row {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================
   ARTICLE SHARE BUTTON
   ========================================== */

.article-share-btn {
    position: absolute;
    top: 1rem;
    right: calc(1rem + 40px + 0.5rem);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
}

.article-share-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.article-share-btn .article-share-label {
    display: none;
}

.article-share-btn.is-copied {
    background: #22c55e;
}

.article-share-btn.is-copied svg {
    display: none;
}

.article-share-btn.is-copied::after {
    content: '✓';
    font-size: 1.2rem;
}

/* ==========================================
   ARTICLE GALLERY + LIGHTBOX
   ========================================== */

.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    margin: 1.5rem 0;
}

.article-gallery-thumb {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-gallery-thumb:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.article-gallery-loading {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-size: 0.9rem;
}

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 12px;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .article-gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 6px;
    }

    .lightbox-nav {
        padding: 8px 12px;
        font-size: 1.5rem;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* ─── Round divider in hero ticker ────────────────────────────── */
.hero-ticker-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 92px;
    padding: 0.85rem 0.7rem;
    background: linear-gradient(135deg, var(--primary-color, #0033a0) 0%, var(--secondary-color, #1e4dd4) 100%);
    border-radius: 12px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 51, 160, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-ticker-divider-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
    animation: hero-divider-pulse 2.6s ease-in-out infinite;
}

@keyframes hero-divider-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

.hero-ticker-divider-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.95;
}

@media (max-width: 600px) {
    .hero-ticker-divider { min-width: 78px; padding: 0.7rem 0.55rem; }
    .hero-ticker-divider-logo { width: 34px; height: 34px; }
    .hero-ticker-divider-label { font-size: 0.7rem; }
}
