/* Global Styles */
:root {
    --primary-yellow: #e3fe4b;
    --primary-pink: #FF0080;
    --gradient: linear-gradient(135deg, #e3fe4b 0%, #FF0080 100%);
    --dark: #1a1a1a;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --success: #28a745;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --footer-bg: #1a1a1a;
    --footer-text: #ffffff;
    --footer-muted: #6c757d;
}

/* Dark Mode Variables */
:root.dark-mode {
    --dark: #ffffff;
    --white: #1a1a1a;
    --gray: #b0b0b0;
    --light-gray: #2a2a2a;
    --shadow: 0 10px 30px rgba(0,0,0,0.3);
    --footer-bg: #0d0d0d;
    --footer-text: #ffffff;
    --footer-muted: #b0b0b0;
}

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

html {
    overflow-x: hidden;
    max-width: 100vw;
    /* Fixed navbar: anchor targets (direct URL hashes, scroll-into-view) land below the bar */
    scroll-padding-top: 5.5rem;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    max-width: 100%;
}

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


/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-link[aria-current="page"] {
    color: var(--primary-pink);
}

.nav-link[aria-current="page"]::after {
    width: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
}

.logo-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: var(--light-gray);
    border: 2px solid var(--gray);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.dark-mode-toggle:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: scale(1.05);
}

.dark-mode-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover .dark-mode-icon {
    transform: rotate(20deg);
}

/* Dark mode active state */
:root.dark-mode .dark-mode-toggle {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

:root.dark-mode .dark-mode-icon::before {
    content: '☀️';
}

:root.dark-mode .dark-mode-icon {
    display: none;
}

:root.dark-mode .dark-mode-toggle::after {
    content: '☀️';
    font-size: 1.1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: -50%;
    width: 150%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.1;
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.hero-tournament-callout {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray);
    margin: 0 auto 1.75rem;
    max-width: 520px;
    line-height: 1.5;
}

.hero-tournament-callout a {
    color: var(--primary-pink);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.hero-tournament-callout a:hover {
    border-bottom-color: var(--primary-pink);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    color: var(--gray);
    font-weight: 600;
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--light-gray);
}

/* Tournament Overview Section */
.tournament-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* Tournament Card Enhancements */
.tournament-card.summer .feature-icon {
    background: linear-gradient(135deg, rgba(227, 254, 75, 0.2), rgba(255, 200, 0, 0.2));
    color: #ff8c00;
}

.tournament-card.spring .feature-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(129, 199, 132, 0.2));
    color: #2e7d32;
}

.tournament-season {
    display: inline-block;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3), rgba(173, 216, 230, 0.3));
    color: #4682b4;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(135, 206, 235, 0.4);
}

/* Past Events Section */
.past-events {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.event-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.event-date {
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-card h3 {
    margin-bottom: 1rem;
}

.event-winner {
    font-weight: 600;
    color: var(--success);
    margin: 1rem 0;
}

.event-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.event-card:hover .event-link {
    text-decoration: underline;
}

a.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

a.event-card-link .event-link {
    margin-top: 1rem;
}

.event-card-current {
    border-color: rgba(46, 125, 50, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(232, 245, 233, 0.65));
}

.event-card-current:hover {
    border-color: #2e7d32;
}

:root.dark-mode .event-card-current {
    background: linear-gradient(135deg, #1e1e1e, rgba(46, 125, 50, 0.12));
    border-color: rgba(129, 199, 132, 0.35);
}

:root.dark-mode .event-card-current:hover {
    border-color: #81c784;
}

.event-card-teaser {
    color: var(--gray);
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
}

.past-events-cta-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

/* Blog listing (index #blog) */
.blog-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.blog-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
}

.blog-card-meta {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--gray);
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
}

.blog-card-link {
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-card-link .fa-arrow-right {
    font-size: 0.85em;
    transition: transform 0.2s ease;
}

.blog-card-link:hover .fa-arrow-right {
    transform: translateX(4px);
}

:root.dark-mode .blog-card {
    background: var(--light-gray);
}

/* Blog article pages */
body.blog-article-page {
    background: var(--light-gray);
}

.blog-article-main {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
}

.blog-article-back {
    margin-bottom: 1.5rem;
}

.blog-article-back a {
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
}

.blog-article-back a:hover {
    text-decoration: underline;
}

.blog-article-header {
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.blog-article-header.blog-article-header--media {
    max-width: min(780px, 100%);
}

.blog-article-header .blog-article-meta {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.blog-article-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.blog-article-header .blog-article-dek {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.55;
}

.blog-article-body {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.blog-article-body--media {
    max-width: min(780px, 100%);
}

.blog-article-prose {
    font-size: 1.05rem;
    line-height: 1.75;
}

.blog-article-prose > * + * {
    margin-top: 1.25rem;
}

.blog-article-prose h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-article-prose h2:first-child {
    margin-top: 0;
}

.blog-article-prose ul {
    padding-left: 1.35rem;
}

.blog-article-prose li + li {
    margin-top: 0.5rem;
}

.blog-article-prose a {
    color: var(--primary-pink);
    font-weight: 600;
}

.blog-article-prose .blog-feature-figure {
    margin: 1.25rem auto 0;
    max-width: min(580px, 100%);
    text-align: center;
}

.blog-article-prose .blog-feature-figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Narrower portrait / tall UI mocks so they don’t dominate scroll */
.blog-article-prose .blog-feature-figure--portrait {
    max-width: min(340px, 92%);
}

/* Slightly wider cap for dense stat boards (still below full column width) */
.blog-article-prose .blog-feature-figure--detail {
    max-width: min(680px, 100%);
}

.blog-article-prose .blog-feature-caption {
    margin-top: 0.65rem;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    text-align: left;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

:root.dark-mode .blog-article-prose .blog-feature-figure img {
    border-color: rgba(255, 255, 255, 0.12);
}

:root.dark-mode .blog-article-body {
    background: #1e1e1e;
}

/* Tournament history page (tournament-history.html) */
body.history-page {
    background: var(--light-gray);
}

.history-page-main {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
}

.history-page-hero {
    padding: 2.5rem 0 1rem;
    text-align: center;
}

.history-page-h1 {
    margin-bottom: 0.75rem;
}

.history-page-sub {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.history-page-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.history-page-body {
    padding-bottom: 4rem;
}

.history-tournament {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.25s ease;
}

.history-tournament:target {
    border-color: var(--primary-pink);
}

.history-tournament-header {
    background: var(--gradient);
    color: var(--white);
    padding: 2.25rem 2rem;
    text-align: center;
}

.history-tournament-season {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    opacity: 0.95;
    margin: 0 0 0.35rem;
}

.history-tournament-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.history-tournament-lede {
    margin: 0 auto 1.25rem;
    max-width: 520px;
    opacity: 0.95;
    line-height: 1.5;
    font-size: 1.05rem;
}

.history-playlist-btn {
    margin-top: 0.25rem;
}

.history-block {
    padding: 2rem 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.history-block-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 1.25rem;
    color: var(--dark);
}

.history-stats-grid {
    margin-bottom: 0;
}

.history-vods-intro {
    color: var(--gray);
    margin: -0.5rem 0 1.25rem;
    font-size: 0.95rem;
}

.history-podium-pending,
.history-vods-empty {
    margin: 0;
    max-width: 42rem;
    line-height: 1.55;
    color: var(--gray);
    font-size: 1rem;
}

.history-vods-empty a {
    color: var(--primary-pink);
    font-weight: 600;
}

.history-vods-empty a:hover {
    text-decoration: underline;
}

/* History page: VOD list without faux thumbnails */
.history-page .vod-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.history-page .vod-item--history {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--light-gray);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.history-page .vod-item--history:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.history-page .vod-history-body {
    padding: 1rem 1.15rem 1.1rem;
}

.history-page .vod-history-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.65rem;
}

.history-page .vod-history-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
    flex: 1;
    min-width: 0;
    color: var(--dark);
}

.history-page .vod-history-duration {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--gray);
    background: var(--light-gray);
    padding: 0.25rem 0.55rem;
    border-radius: 8px;
}

.vod-youtube-hint {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 600;
}

.history-page .vod-link {
    text-align: left;
}

.vod-link:focus-visible {
    outline: 3px solid var(--primary-pink);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .history-block {
        padding: 1.5rem 1.25rem;
    }

    .history-tournament-header {
        padding: 1.75rem 1.25rem;
    }
}

:root.dark-mode .history-tournament {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.06);
}

:root.dark-mode .history-block {
    border-top-color: rgba(255, 255, 255, 0.08);
}

:root.dark-mode .history-block-title {
    color: #f0f0f0;
}

:root.dark-mode body.history-page {
    color: #e8e8e8;
}

:root.dark-mode .history-page .section-subtitle {
    color: #b8b8b8;
}

:root.dark-mode .history-page .vod-item--history {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.1);
}

:root.dark-mode .history-page .vod-item--history:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

:root.dark-mode .history-page .vod-history-title {
    color: #f2f2f2;
}

:root.dark-mode .history-page .vod-history-duration {
    color: #e0e0e0;
    background: rgba(0, 0, 0, 0.35);
}

:root.dark-mode .history-page .vod-youtube-hint {
    color: #b0b0b0;
}

:root.dark-mode .history-page .history-vods-intro {
    color: #b0b0b0;
}

:root.dark-mode .history-podium-pending,
:root.dark-mode .history-vods-empty {
    color: #b8b8b8;
}

:root.dark-mode .history-vods-empty a {
    color: #ff8fb8;
}

:root.dark-mode .history-page .history-stats-grid .stat-card {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.1);
}

:root.dark-mode .history-page .history-stats-grid .stat-details h4 {
    color: #f0f0f0;
}

:root.dark-mode .history-page .history-stats-grid .stat-details small {
    color: #b0b0b0;
}

/* Team Roster Section */
.roster-section {
    position: relative;
    padding: 3.5rem 0 5rem;
    background: var(--light-gray);
}

.roster-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.roster-event-badge {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-pink);
    margin: 0 auto 0.35rem;
}

.roster-section .section-title {
    margin-bottom: 0.75rem;
}

.roster-section .section-subtitle {
    margin-top: 0;
}

.roster-note {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin: -0.5rem auto 2.25rem;
    max-width: 640px;
}

.roster-note i {
    color: var(--primary-pink);
    margin-right: 0.35rem;
}

.groups-stage {
    margin: 0 auto 3rem;
    max-width: 920px;
}

.groups-stage-title {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.groups-stage-sub {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0 auto 1.5rem;
    max-width: 560px;
    line-height: 1.5;
}

.groups-stage-sub + .groups-stage-sub {
    margin-top: -0.75rem;
}

.groups-stage-sub--note {
    max-width: 640px;
    font-size: 0.88rem;
    opacity: 0.92;
}

.groups-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.groups-column {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.groups-column-header {
    background: #c8c8c8;
    color: #111;
    text-align: center;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    padding: 0.7rem 0.5rem;
}

.groups-column-body {
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.group-pairing {
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 4px;
    padding: 0.65rem 0.75rem;
    text-align: left;
}

.group-pairing-team {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    color: #f2f2f2;
    line-height: 1.4;
}

.group-pairing-team + .group-pairing-team {
    margin-top: 0.4rem;
}

.roster-pending {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 600;
    line-height: 1.55;
}

@media (max-width: 720px) {
    .groups-columns {
        grid-template-columns: 1fr;
    }
}

.spring-standings {
    margin: 0 auto 3rem;
    max-width: 920px;
}

.spring-standings-table {
    padding: 0.75rem 0.5rem;
    box-shadow: none;
}

.spring-standings-table table {
    font-size: 0.9rem;
}

.spring-standings-table th,
.spring-standings-table td {
    padding: 0.65rem 0.5rem;
}

.spring-standings-table td:first-child {
    font-weight: 700;
    color: var(--gray);
    width: 2.25rem;
    text-align: center;
}

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

.roster-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 1.25rem 1.5rem 1.25rem;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.roster-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-3px);
}

.roster-team-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 0, 128, 0.25);
    color: var(--dark);
}

.roster-players {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.65;
}

.roster-players li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.roster-players li:last-child {
    border-bottom: none;
}

.roster-role {
    flex: 0 0 4.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-pink);
}

.roster-id {
    flex: 1 1 140px;
    min-width: 0;
    word-break: break-word;
    color: var(--gray);
    font-weight: 600;
}

.roster-subs {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--gray);
}

.roster-subs-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-pink);
    margin-bottom: 0.35rem;
}

.roster-opgg {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-pink);
    text-decoration: none;
}

.roster-opgg:hover {
    text-decoration: underline;
}

:root.dark-mode .roster-subs {
    border-top-color: rgba(255, 255, 255, 0.08);
}

:root.dark-mode .roster-players li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Pickems Section */
.pickems {
    padding: 5rem 0;
    background: var(--light-gray);
}

body.pickems-page .pickems {
    padding-top: 7.25rem;
}

body.pickems-page .section-subtitle a {
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
}

body.pickems-page .section-subtitle a:hover {
    text-decoration: underline;
}

.pickems-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pickems-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pickems-features {
    list-style: none;
    margin: 2rem 0;
}

.pickems-features li {
    padding: 0.5rem 0;
    color: var(--gray);
}

.pickems-feature-icon {
    margin-right: 0.45rem;
    color: #2e7d32;
}

.pickems-leaderboard {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.pickems-leaderboard h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.leaderboard-item .rank {
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 30px;
}

.leaderboard-item:first-child .rank {
    color: #FFD700;
}

.leaderboard-item:nth-child(2) .rank {
    color: #C0C0C0;
}

.leaderboard-item:nth-child(3) .rank {
    color: #CD7F32;
}

.leaderboard-item .name {
    flex: 1;
    font-weight: 600;
}

.leaderboard-item .points {
    color: var(--gray);
    font-weight: 600;
}

.pickems-deadline {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 720px;
    color: var(--gray);
    font-size: 1.05rem;
}

.pickems-discord {
    margin-top: 1.5rem;
    font-weight: 600;
}

.pickems-discord a {
    color: inherit;
    text-decoration: underline;
}

.roster-pickems-link a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

.pickems-form-placeholder {
    border: 2px dashed rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.pickems-google-form-iframe {
    display: block;
    width: 100%;
    min-height: 640px;
    border: 0;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.pickems-leaderboard-full {
    margin-top: 3rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.pickems-leaderboard-intro {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.pickems-info h3 i {
    margin-right: 0.45rem;
    color: #2e7d32;
}

:root.dark-mode .pickems-form-placeholder {
    border-color: rgba(255, 255, 255, 0.15);
}

:root.dark-mode .pickems-leaderboard {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

:root.dark-mode .pickems-info h3 i {
    color: #81c784;
}

:root.dark-mode .pickems-feature-icon {
    color: #81c784;
}

.pickems-content-with-form {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    align-items: start;
}

.pickems-netlify-form {
    text-align: left;
}

.pickems-form-card .form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--dark);
}

.pickems-req-star {
    color: #c62828;
    font-weight: 700;
}

.pickems-opt {
    font-weight: 400;
    color: var(--gray);
}

.pickems-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.pickems-fieldset {
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    padding: 1.25rem 1rem 0.25rem;
    margin: 0 0 1.5rem;
}

.pickems-legend {
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0 0.5rem;
}

.pickems-fieldset-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin: -0.25rem 0 1rem;
    line-height: 1.45;
}

.pickems-role-label {
    display: inline-block;
    margin-right: 0.35rem;
    font-weight: 700;
}

.pickems-submit-wrap {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.pickems-submit-wrap .btn {
    min-width: 220px;
}

.pickems-content-closed {
    grid-template-columns: 1fr;
    justify-items: center;
}

.pickems-closed-card {
    max-width: 32rem;
    width: 100%;
    text-align: center;
}

.pickems-closed-lead {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.45;
}

.pickems-closed-lead i {
    margin-right: 0.35rem;
    color: var(--gray);
}

.pickems-closed-note {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

.pickems-closed-note a {
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
}

.pickems-closed-note a:hover {
    text-decoration: underline;
}

:root.dark-mode .pickems-fieldset {
    border-color: rgba(255, 255, 255, 0.12);
}

.thanks-pickems-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    padding-top: max(5.5rem, 2rem);
    background: var(--light-gray);
}

.thanks-pickems-card {
    max-width: 440px;
    text-align: center;
}

.thanks-pickems-card h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.thanks-pickems-card p {
    color: var(--gray);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.thanks-pickems-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.thanks-pickems-actions .btn {
    min-width: 200px;
}


.signup-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--light-gray);
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.form-container h3 i {
    margin-right: 0.5rem;
    color: #2e7d32;
}

.form-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Spring Skirmish Section */
.spring-skirmish-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(129, 199, 132, 0.2) 0%, rgba(129, 199, 132, 0.06) 35%, var(--white) 100%);
    background-attachment: scroll;
}

:root.dark-mode .spring-skirmish-section {
    background: linear-gradient(180deg, rgba(76, 175, 80, 0.18) 0%, rgba(76, 175, 80, 0.06) 35%, var(--white) 100%);
}

.google-form {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.google-form:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tournament-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tournament-info:hover {
    border-color: rgba(135, 206, 235, 0.3);
    transform: translateY(-3px);
}

.tournament-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tournament-info h4::before {
    content: '❄️';
    font-size: 1.2rem;
}

.tournament-info.spring-theme h4::before {
    content: none;
}

.tournament-info.spring-theme:hover {
    border-color: rgba(76, 175, 80, 0.3);
}

.tournament-info.spring-theme .tournament-features li:hover {
    background: rgba(76, 175, 80, 0.1);
}

.tournament-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tournament-features li {
    padding: 0.8rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 0.5rem;
}

.tournament-features li:hover {
    background: rgba(135, 206, 235, 0.1);
    color: var(--dark);
    padding-left: 1rem;
}

.tournament-features li i {
    color: var(--primary-pink);
    font-size: 1.1rem;
    width: 20px;
}

.tournament-note {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(135, 206, 235, 0.3);
    margin-top: 1rem;
}

.tournament-note p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tournament-note strong {
    color: var(--primary-pink);
}


.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-family: 'Inter', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--light-gray);
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-timer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(173, 216, 230, 0.1) 100%);
    pointer-events: none;
}

.countdown-timer:hover {
    transform: translateY(-3px);
    border-color: rgba(135, 206, 235, 0.3);
    box-shadow: 0 15px 35px rgba(135, 206, 235, 0.2);
}

.countdown-timer span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
    min-width: 60px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-timer span:hover {
    transform: scale(1.1);
}

.section-intro {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Sign Up Section */
.signup {
    padding: 5rem 0;
    background: var(--white);
}

.signup-content {
    text-align: center;
}

.signup-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.signup-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.signup-form-container iframe {
    max-width: 100%;
    width: 100%;
}

.signup-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group textarea {
    min-height: 5rem;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.signup-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
}

.signup-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.signup-info ul {
    list-style: none;
}

.signup-info li {
    padding: 0.5rem 0;
    color: var(--gray);
}

/* Standings Section */
.standings {
    padding: 5rem 0;
    background: var(--light-gray);
}

.standings-table {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.standings-table table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table th {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.standings-table th:first-child {
    border-radius: 10px 0 0 0;
}

.standings-table th:last-child {
    border-radius: 0 10px 0 0;
}

.standings-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.standings-table tr:hover {
    background: var(--light-gray);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--footer-text);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--footer-text);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--footer-text);
}

.footer .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

.footer .social-icons a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: var(--footer-muted) !important;
}

.footer .social-icons a:hover {
    transform: scale(1.2);
    color: var(--footer-text) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--footer-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .dark-mode-toggle {
        margin-left: 0.5rem;
        padding: 0.4rem 0.8rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .pickems-content,
    .signup-form-container,
    .signup-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tournament-info {
        margin-top: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.5rem 2rem;
        font-size: 2rem;
    }
    
    .countdown-timer span {
        min-width: 45px;
    }
    

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

/* Archive Modal Styles */
.archive-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.archive-modal.show {
    display: block;
    opacity: 1;
}

.archive-modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.archive-modal.show .archive-modal-content {
    transform: translateY(0);
}

.archive-close {
    color: var(--gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    padding: 1rem 1.5rem;
    transition: color 0.3s ease;
}

.archive-close:hover {
    color: var(--dark);
}

.archive-header {
    background: var(--gradient);
    color: var(--white);
    padding: 3rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.archive-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.archive-date {
    font-size: 1.2rem;
    opacity: 0.9;
}

.archive-info {
    padding: 2rem 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.archive-info p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.archive-stats {
    display: flex;
    gap: 2rem;
}

.archive-stat {
    flex: 1;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.archive-bracket {
    padding: 2rem 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.archive-bracket h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.bracket-place {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
}

.place-medal {
    font-size: 2rem;
}

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

.archive-vods {
    padding: 2rem 3rem 3rem;
}

.archive-vods h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.vod-playlist {
    margin-bottom: 2rem;
    text-align: center;
}

.vod-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.vod-item {
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vod-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vod-link {
    text-decoration: none;
    color: var(--dark);
    display: block;
}

.vod-thumbnail {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vod-item:hover .vod-thumbnail {
    opacity: 0.9;
}

.vod-play {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vod-info {
    padding: 1rem;
}

.vod-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Mobile Responsive for Archive */
@media (max-width: 768px) {
    .archive-modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .archive-header {
        padding: 2rem;
    }

    .archive-header h2 {
        font-size: 2rem;
    }

    .archive-info,
    .archive-bracket,
    .archive-vods {
        padding: 1.5rem;
    }

    .vod-list {
        grid-template-columns: 1fr;
    }

    .bracket-results {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Specific Overrides */
:root.dark-mode .navbar {
    background: rgba(26, 26, 26, 0.95);
}

:root.dark-mode .hero-gradient {
    opacity: 0.05;
}

:root.dark-mode .signup iframe {
    filter: brightness(0.9);
}


:root.dark-mode .form-container {
    background: var(--white);
    border-color: var(--light-gray);
}

:root.dark-mode .tournament-info {
    background: var(--light-gray);
}

:root.dark-mode .tournament-note {
    background: var(--white);
    border-color: rgba(135, 206, 235, 0.2);
}

:root.dark-mode .countdown-timer {
    background: var(--light-gray);
}


/* Enhanced Archive Modal Styles */

/* Archive Header Enhancements */
.archive-header-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.archive-header-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.archive-header-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.archive-header-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Archive Tabs */
.archive-tabs {
    display: flex;
    background: var(--light-gray);
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    color: var(--dark);
    background: rgba(255, 255, 255, 0.5);
}

.tab-button.active {
    color: var(--primary-pink);
    background: var(--white);
    border-bottom-color: var(--primary-pink);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

/* Overview Tab Styles */
.tournament-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.archive-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.quick-stat:hover {
    transform: translateY(-2px);
}

.quick-stat-icon {
    font-size: 2rem;
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 128, 0.1);
    border-radius: 12px;
}

.quick-stat-info {
    display: flex;
    flex-direction: column;
}

.quick-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.quick-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    margin-top: 0.2rem;
}

/* Enhanced Bracket Styling */
.bracket-place {
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.bracket-place:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bracket-place.champion {
    border-color: #FFD700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.bracket-place.runner-up {
    border-color: #C0C0C0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.bracket-place.third-place {
    border-color: #CD7F32;
    background: linear-gradient(135deg, #faf5f0 0%, #ffffff 100%);
}

.place-info {
    display: flex;
    flex-direction: column;
}

.place-title {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
    margin-top: 0.2rem;
}

/* VODs Tab Styles */
.vods-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.vod-item {
    cursor: pointer;
    background: var(--white);
    border: 2px solid var(--light-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vod-item:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.15);
}

/* Duration badge overlay on VOD thumbnail */
.vod-thumbnail .vod-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.vod-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.vod-match-number {
    background: var(--primary-pink);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.vod-duration-text {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Statistics Tab Styles */
.archive-statistics {
    padding: 2rem 3rem 3rem;
}

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

.stat-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.1);
}

.stat-card .stat-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.stat-details h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0.5rem 0;
}

.stat-details small {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Tournament Timeline */
.tournament-timeline {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.tournament-timeline h4 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.timeline-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.timeline-stage {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--dark);
}

.timeline-stage i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
    .archive-header-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .archive-tabs {
        flex-wrap: wrap;
    }

    .tab-button {
        flex: 1;
        min-width: 120px;
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }

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

    .quick-stat {
        padding: 1rem;
    }

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

    .timeline-info {
        grid-template-columns: 1fr;
    }

    .archive-statistics {
        padding: 1.5rem;
    }
}

/* Dark Mode Archive Modal Enhancements */
:root.dark-mode .archive-modal-content {
    background: var(--white);
    color: var(--dark);
}

:root.dark-mode .archive-tabs {
    background: var(--light-gray);
}

:root.dark-mode .tab-button {
    color: var(--gray);
}

:root.dark-mode .tab-button:hover {
    color: var(--dark);
}

:root.dark-mode .quick-stat {
    background: var(--light-gray);
}

:root.dark-mode .stat-card {
    background: var(--white);
    border-color: var(--light-gray);
}

:root.dark-mode .tournament-timeline {
    background: var(--light-gray);
}

:root.dark-mode .timeline-stage {
    background: var(--white);
}

/* Bracket podium cards keep light surfaces in dark mode — use dark ink, not flipped --dark */
:root.dark-mode .bracket-place {
    color: #1a1a1a;
}

:root.dark-mode .bracket-place.champion {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    color: #1a1a1a;
}

:root.dark-mode .bracket-place.runner-up {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    color: #1a1a1a;
}

:root.dark-mode .bracket-place.third-place {
    background: linear-gradient(135deg, #faf5f0 0%, #ffffff 100%);
    color: #1a1a1a;
}

:root.dark-mode .place-team {
    color: #1a1a1a;
}

:root.dark-mode .place-title {
    color: #5c636a;
}

:root.dark-mode .vod-item {
    background: var(--white);
    color: var(--dark);
}

/* Dark Mode Logo Swapping */
/* Option 1: Filter approach - converts existing logo to white */
:root.dark-mode .logo-image,
:root.dark-mode .hero-title-image {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Option 2: File swap approach - uncomment and modify if you have a white logo file */
/*
:root.dark-mode .logo-image {
    content: url('img/SSLogoTransparent-White.png');
}

:root.dark-mode .hero-title-image {
    content: url('img/SSLogoTransparent-White.png');
}
*/

/* ===== NEW SECTIONS STYLES ===== */

/* News Section */
.news-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.news-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.15);
}

.news-date {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-category {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.news-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    text-decoration: underline;
}

/* Schedule Section */
.schedule-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.schedule-tz-note {
    font-size: 0.95rem;
    color: var(--gray);
    margin: -0.25rem 0 1.25rem;
    line-height: 1.5;
}

.schedule-tz-note i {
    margin-right: 0.35rem;
    color: var(--primary-pink);
}

.schedule-container {
    display: grid;
    gap: 2rem;
}

.schedule-day {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.day-header h3 {
    color: var(--dark);
    font-size: 1.5rem;
}

.day-subtitle {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    color: var(--gray);
    font-weight: 600;
}

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

.match-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.match-item:hover {
    background: rgba(255, 0, 128, 0.1);
    transform: translateX(5px);
}

.match-time {
    font-weight: 700;
    color: var(--primary-pink);
    min-width: 80px;
}

.match-teams {
    flex: 1;
    padding: 0 1rem;
    font-weight: 600;
    color: var(--dark);
}

.match-status {
    background: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
}

.match-status.highlight {
    background: var(--gradient);
    color: var(--white);
}

.match-item--complete {
    border-left: 4px solid var(--success);
    background: rgba(40, 167, 69, 0.08);
}

.match-item--complete:hover {
    background: rgba(40, 167, 69, 0.14);
}

.match-status--final {
    background: rgba(40, 167, 69, 0.15);
    color: var(--success);
}

.schedule-day--complete .day-subtitle {
    color: var(--success);
}

/* Stream Section */
.stream-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.stream-embed {
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 500px;
}

.stream-offline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px;
    text-align: center;
    padding: 2rem;
}

.stream-offline i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.stream-offline h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.stream-offline p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.stream-schedule {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.stream-schedule h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.broadcast-times {
    list-style: none;
    margin-bottom: 2rem;
}

.broadcast-times li {
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.stream-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stream-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: var(--white);
    border-radius: 10px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.stream-link:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Highlights Section */
.highlights-section {
    padding: 5rem 0;
    background: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.15);
    border-color: var(--primary-pink);
}

.highlight-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-thumbnail i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.9;
}

.highlight-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.highlight-info {
    padding: 1.5rem;
}

.highlight-info h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.highlight-info p {
    color: var(--gray);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-yellow);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.team-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.15);
}

.team-avatar {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.team-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-name {
    color: var(--gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--gray);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-pink);
    transform: scale(1.2);
}

/* Rules Section */
.rules-section {
    padding: 3rem 0;
    background: var(--light-gray);
}

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

.rule-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-height: fit-content;
}

.rule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.rule-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 128, 0.1);
    border-radius: 12px;
    margin: 0 auto 0.8rem;
}

.rule-card h3 {
    color: var(--dark);
    margin-bottom: 0.8rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.3;
}

.rule-list {
    list-style: none;
    margin: 0;
}

.rule-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(224, 224, 224, 0.3);
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

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

.rules-note {
    background: var(--white);
    border-left: 4px solid var(--primary-pink);
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.rules-note i {
    font-size: 1.5rem;
    color: var(--primary-pink);
}

.rules-note p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.rules-note a {
    color: var(--primary-pink);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-pink);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Sponsors Section */
.sponsors-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.sponsors-tiers {
    margin-bottom: 3rem;
}

.sponsor-tier {
    margin-bottom: 3rem;
}

.tier-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.sponsor-grid {
    display: grid;
    gap: 2rem;
    justify-items: center;
}

.sponsor-grid.platinum {
    grid-template-columns: 1fr;
}

.sponsor-grid.gold {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.sponsor-grid.silver {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sponsor-slot {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 2/1;
    background: var(--white);
    border: 3px dashed var(--light-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sponsor-slot:hover {
    border-color: var(--primary-pink);
    transform: scale(1.05);
}

.sponsor-placeholder {
    color: var(--gray);
    font-weight: 600;
    font-size: 1.2rem;
}

.sponsor-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.sponsor-cta h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.sponsor-cta p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 5rem 0;
    background: var(--white);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coming-soon-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-yellow);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.coming-soon-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.coming-soon-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-form h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-top: 0.3rem;
}

.contact-method strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
}

.contact-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.contact-social a {
    font-size: 1.5rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.contact-social a:hover {
    color: var(--primary-pink);
    transform: scale(1.2);
}

.contact-hours {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
}

.contact-hours h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-hours p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.4);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-container {
        gap: 1rem;
    }
    
    .day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .match-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stream-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .rule-card {
        padding: 1.2rem;
    }

    .rule-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .sponsor-grid.platinum,
    .sponsor-grid.gold,
    .sponsor-grid.silver {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Dark Mode for New Sections */
:root.dark-mode .news-section,
:root.dark-mode .highlights-section,
:root.dark-mode .team-section,
:root.dark-mode .faq-section,
:root.dark-mode .coming-soon-section,
:root.dark-mode .stream-section {
    background: var(--white);
}

:root.dark-mode .schedule-section,
:root.dark-mode .gallery-section,
:root.dark-mode .testimonials-section,
:root.dark-mode .rules-section,
:root.dark-mode .sponsors-section,
:root.dark-mode .contact-section {
    background: var(--light-gray);
}

:root.dark-mode .news-card,
:root.dark-mode .schedule-day,
:root.dark-mode .highlight-card,
:root.dark-mode .testimonial-card,
:root.dark-mode .team-card,
:root.dark-mode .rule-card,
:root.dark-mode .faq-item,
:root.dark-mode .sponsor-cta,
:root.dark-mode .contact-form,
:root.dark-mode .contact-info {
    background: var(--white);
    color: var(--dark);
}

:root.dark-mode .stream-schedule,
:root.dark-mode .stream-embed,
:root.dark-mode .coming-soon-card {
    background: var(--light-gray);
}
