/*
Theme Name: LCCL Theme
Theme URI: https://lccl.in
Author: LCCL
Author URI: https://lccl.in
Description: Official theme for Lucknow Corporate Cricket League — premium sports league aesthetic.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lccl-theme
Tags: sports, cricket, dark, premium
*/

/* =====================================================
   CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
    --bg-primary:    #0a0f1e;
    --bg-secondary:  #0d1428;
    --bg-card:       #111827;
    --bg-elevated:   #1a2236;
    --gold:          #d4a017;
    --gold-light:    #e8b820;
    --gold-dark:     #b8880f;
    --green:         #1a7a4a;
    --green-light:   #22a05f;
    --white:         #ffffff;
    --muted:         #8892a4;
    --border:        rgba(212, 160, 23, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-gold:   0 0 30px rgba(212, 160, 23, 0.15);
    --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.4);
    --radius:        8px;
    --radius-lg:     16px;
    --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--white);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-light);
}

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

ul, ol {
    list-style: none;
}

/* =====================================================
   TYPOGRAPHY SCALE
   ===================================================== */
.text-xs   { font-size: 0.75rem; }
.text-sm   { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-3xl  { font-size: 1.875rem; }
.text-4xl  { font-size: 2.25rem; }
.text-5xl  { font-size: 3rem; }
.text-6xl  { font-size: 3.75rem; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

/* =====================================================
   SECTION HEADINGS
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    padding: 0.25rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), #145e39);
    color: var(--white);
    border-color: var(--green);
}

.btn-green:hover {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 122, 74, 0.4);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* =====================================================
   CARDS
   ===================================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

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

/* =====================================================
   NAVIGATION
   ===================================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
    padding: 0;
}

#site-header.transparent {
    background: transparent;
}

#site-header.scrolled {
    background: rgba(10, 15, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-acronym {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.logo-tagline {
    font-size: 0.55rem;
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Primary Menu */
#primary-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#primary-nav ul li {
    position: relative;
}

#primary-nav ul li a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item > a,
#primary-nav ul li.current-menu-parent > a {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
}

/* Dropdown */
#primary-nav ul li ul.sub-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 200px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem;
}

#primary-nav ul li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#primary-nav ul li ul.sub-menu li a {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--muted);
    border-radius: 6px;
}

#primary-nav ul li ul.sub-menu li a:hover {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
}

.nav-cta {
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 0;
    transition: all var(--transition);
}

.hamburger:hover {
    border-color: var(--border);
    background: rgba(212, 160, 23, 0.08);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu ul li a {
    display: block;
    padding: 1rem 1.25rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--gold);
    border-color: var(--border);
    background: rgba(212, 160, 23, 0.06);
    padding-left: 1.75rem;
}

.mobile-menu ul li ul.sub-menu {
    padding-left: 1rem;
    margin-top: 0.25rem;
}

.mobile-menu ul li ul.sub-menu li a {
    font-size: 1rem;
    color: var(--muted);
    padding: 0.625rem 1rem;
}

.mobile-menu .mobile-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Cricket pitch texture */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26, 122, 74, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(212, 160, 23, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(212, 160, 23, 0.04) 0%, transparent 60%);
}

/* Geometric cricket lines */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.015) 80px,
            rgba(255,255,255,0.015) 81px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255,255,255,0.015) 80px,
            rgba(255,255,255,0.015) 81px
        );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.03;
    animation: pulse 6s ease-in-out infinite;
}

.hero-particles::before {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
}

.hero-particles::after {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
    background: radial-gradient(circle, var(--green) 0%, transparent 70%);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.03; }
    50% { transform: scale(1.1); opacity: 0.06; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 100px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    font-family: 'Inter', sans-serif;
}

.hero-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(212, 160, 23, 0.04);
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
}

.about-text .section-divider {
    margin: 1.25rem 0 0;
}

.about-body {
    margin-top: 1.75rem;
    color: var(--muted);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-body p + p {
    margin-top: 1rem;
}

.about-highlights {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(212, 160, 23, 0.03));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.about-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), transparent);
}

.highlights-title {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.highlight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-item:first-of-type {
    padding-top: 0;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(212, 160, 23, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.highlight-info strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.highlight-info span {
    font-size: 0.875rem;
    color: var(--muted);
}

/* =====================================================
   TABLES
   ===================================================== */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.lccl-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.lccl-table thead {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.08));
    border-bottom: 1px solid var(--border);
}

.lccl-table thead th {
    padding: 1rem 1.25rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
    white-space: nowrap;
}

.lccl-table thead th:first-child {
    border-radius: 0;
}

.lccl-table tbody tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition);
}

.lccl-table tbody tr:last-child {
    border-bottom: none;
}

.lccl-table tbody tr:hover {
    background: rgba(212, 160, 23, 0.04);
}

.lccl-table tbody td {
    padding: 1rem 1.25rem;
    color: var(--muted);
    vertical-align: middle;
}

.lccl-table tbody td:first-child {
    color: var(--white);
    font-weight: 500;
}

.lccl-table .badge-tba {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.625rem;
    background: rgba(136, 146, 164, 0.15);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
}

.rank-badge.rank-1 { background: linear-gradient(135deg, #d4a017, #b8880f); color: #0a0f1e; }
.rank-badge.rank-2 { background: linear-gradient(135deg, #94a3b8, #64748b); color: #0a0f1e; }
.rank-badge.rank-3 { background: linear-gradient(135deg, #cd7c2f, #a0522d); color: #fff; }
.rank-badge.rank-other { background: rgba(136, 146, 164, 0.15); color: var(--muted); }

.nrr-positive { color: #22c55e; }
.nrr-negative { color: #ef4444; }

.section-action {
    text-align: center;
    margin-top: 2.5rem;
}

/* =====================================================
   PERFORMERS
   ===================================================== */
.performers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.performer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

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

.performer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.performer-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all var(--transition);
}

.performer-card:hover .performer-icon {
    background: rgba(212, 160, 23, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.performer-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.625rem;
}

.performer-name {
    font-size: 1.375rem;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.performer-team {
    font-size: 0.875rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
}

.performer-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.performer-stat {
    text-align: center;
}

.performer-stat .value {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.performer-stat .label {
    display: block;
    font-size: 0.6875rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* =====================================================
   SPONSORS
   ===================================================== */
.sponsors-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    align-items: center;
}

.sponsor-box {
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition);
}

.sponsor-box:hover {
    border-color: var(--border);
    background: rgba(212, 160, 23, 0.04);
}

/* =====================================================
   NEWS SECTION
   ===================================================== */
.news-section {
    background: var(--bg-primary);
}

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

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

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

.news-thumbnail {
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
    overflow: hidden;
    position: relative;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    font-size: 2.5rem;
    color: var(--muted);
    opacity: 0.3;
}

.news-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
    padding: 0.2rem 0.625rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.news-title {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    transition: color var(--transition);
}

.news-card:hover .news-title {
    color: var(--gold);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.news-date {
    font-size: 0.8125rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.news-read-more {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap var(--transition);
}

.news-card:hover .news-read-more {
    gap: 0.625rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, #060c1a 0%, #0d1428 50%, #060c1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 50%, rgba(26, 122, 74, 0.04) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer {
    background: #060c1a;
    border-top: 1px solid var(--border-subtle);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0;
}

.footer-brand .logo-acronym {
    font-size: 2rem;
}

.footer-blurb {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 1.25rem 0 1.75rem;
    font-family: 'Inter', sans-serif;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 1rem;
    transition: all var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--border);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.25rem;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    color: var(--gold);
}

.footer-contact-info {
    font-family: 'Inter', sans-serif;
}

.footer-contact-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.footer-contact-value {
    font-size: 0.9375rem;
    color: var(--white);
}

.footer-contact-value a {
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.footer-contact-value a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.footer-copyright a {
    color: var(--gold);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

.footer-legal a:hover {
    color: var(--white);
}

/* =====================================================
   PAGE TEMPLATES
   ===================================================== */

/* Page hero banner */
.page-hero {
    padding: 8rem 0 4rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(212, 160, 23, 0.05) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.75rem;
}

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

.page-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: var(--muted);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: var(--border);
}

.breadcrumb .current {
    color: var(--gold);
}

/* =====================================================
   FIXTURES PAGE
   ===================================================== */
.fixtures-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--border);
    color: var(--gold);
}

.match-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.06em;
}

.status-live {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-live::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: blink 1s ease-in-out infinite;
}

.status-upcoming {
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 160, 23, 0.25);
}

.status-completed {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

/* =====================================================
   PLAYERS PAGE
   ===================================================== */
.teams-section {
    background: var(--bg-primary);
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

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

.team-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.team-name {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.team-players-count {
    font-size: 0.875rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

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

.player-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-align: center;
}

.player-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.player-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--muted);
    opacity: 0.3;
    position: relative;
    overflow: hidden;
}

.player-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.player-info {
    padding: 1.25rem;
}

.player-jersey {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.player-name {
    font-size: 1.0625rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.player-role {
    font-size: 0.8125rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group select option {
    background: var(--bg-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-info-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-detail-text .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.2rem;
}

.contact-detail-text .value {
    font-size: 0.9375rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.contact-detail-text .value a {
    color: var(--white);
}

.contact-detail-text .value a:hover {
    color: var(--gold);
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: var(--bg-elevated);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
}

.map-placeholder .map-icon {
    font-size: 2rem;
    opacity: 0.4;
}

/* =====================================================
   BLOG / ARCHIVE / SINGLE
   ===================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.post-single {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 0;
}

.post-featured-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.post-header {
    margin-bottom: 2rem;
}

.post-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.post-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--muted);
    flex-wrap: wrap;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.post-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
}

.post-content h2, .post-content h3, .post-content h4 {
    color: var(--white);
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: var(--gold);
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}

.post-content ul, .post-content ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(212, 160, 23, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--muted);
}

/* =====================================================
   404 PAGE
   ===================================================== */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-code {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    opacity: 0.15;
    margin-bottom: -2rem;
    position: relative;
    z-index: 0;
}

.error-icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.error-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green-light); }
.text-muted   { color: var(--muted); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

.bg-card      { background: var(--bg-card); }
.bg-elevated  { background: var(--bg-elevated); }

.mt-1  { margin-top: 0.25rem; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }

.flex        { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2       { gap: 0.5rem; }
.gap-4       { gap: 1rem; }

.hidden       { display: none !important; }

/* =====================================================
   RESPONSIVE — TABLET (max 1024px)
   ===================================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text .section-header {
        text-align: center;
    }

    .about-text .section-divider {
        margin: 1.25rem auto 0;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-main > *:first-child {
        grid-column: 1 / -1;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* =====================================================
   RESPONSIVE — MOBILE (max 768px)
   ===================================================== */
@media (max-width: 768px) {
    .section {
        padding: 3.5rem 0;
    }

    /* Nav */
    #primary-nav,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    /* Stats */
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid var(--border-subtle);
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid var(--border-subtle);
        border-right: none;
    }

    /* Performers */
    .performers-grid {
        grid-template-columns: 1fr;
    }

    /* Sponsors */
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* News */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Table */
    .lccl-table thead th,
    .lccl-table tbody td {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Teams */
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

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

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