:root {
    --primary: #A6192E;
    --primary-dark: #7a1119;
    --primary-mid: #8B1525;
    --secondary: #D4AF37;
    --secondary-dark: #B8960C;
    --text: #1a1a2e;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #faf8f8;
    --border: #e8e0e0;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --font: 'Inter', -apple-system, sans-serif;
}

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

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--secondary-dark); }

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

/* Header */
.site-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-icon-emoji { font-size: 2rem; }

.logo-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.logo-text small {
    display: block;
    font-size: .75rem;
    opacity: .75;
    font-weight: 400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-links-club { display: none; }

.main-nav a {
    color: rgba(255,255,255,.85);
    padding: .5rem 1rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    transition: all .2s;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,.12);
    color: var(--secondary);
}

/* Club sub-navigation (desktop/tablet) */
.club-nav-desktop { display: block; }

.club-nav {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255,255,255,.08);
}

.club-nav-inner {
    display: flex;
    align-items: center;
    gap: .25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.club-nav-inner::-webkit-scrollbar { display: none; }

.club-nav-label {
    color: var(--secondary);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .65rem .75rem .65rem 0;
    margin-right: .25rem;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.15);
}

.club-nav a {
    color: rgba(255,255,255,.75);
    padding: .65rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 6px;
    transition: all .2s;
    text-decoration: none;
}

.club-nav a:hover,
.club-nav a.active {
    color: var(--secondary);
    background: rgba(255,255,255,.08);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: #1a1a1a;
    border: 2px solid var(--secondary);
    border-radius: 10px;
    cursor: pointer;
    color: var(--secondary);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    transition: background .2s, color .2s, transform .15s;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: #2a2a2a;
    color: #f0d060;
    outline: none;
}

.nav-toggle:active {
    transform: scale(0.96);
}

.nav-toggle.active {
    background: var(--secondary);
    color: #1a1a1a;
    border-color: var(--secondary);
}

.nav-toggle-svg {
    display: block;
    pointer-events: none;
}

.nav-icon-close {
    display: none;
}

.nav-toggle.active .nav-icon-menu {
    display: none;
}

.nav-toggle.active .nav-icon-close {
    display: block;
}

body.nav-open { overflow: hidden; }

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: .35rem 1rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .5rem;
}

.hero-slogan {
    font-size: 1.25rem;
    opacity: .85;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}

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

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: #fff;
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--text);
    border-color: var(--border);
}

/* Stats Bar */
.stats-bar {
    background: var(--primary-dark);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: .85rem;
    opacity: .7;
}

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
}

.view-all {
    font-weight: 600;
    font-size: .9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero-sm { padding: 2.5rem 0; text-align: left; }

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
}

.page-hero p { opacity: .8; margin-top: .5rem; }

.back-link {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.back-link:hover { color: var(--secondary); }

/* Match Cards */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.match-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform .2s;
}

.match-card:hover { transform: translateY(-2px); }

.match-competition {
    font-size: .8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 1rem;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.team-name {
    font-weight: 700;
    font-size: 1rem;
}

.team-label {
    display: block;
    font-size: .75rem;
    color: var(--text-light);
    margin-top: .25rem;
}

.match-vs {
    text-align: center;
    min-width: 70px;
}

.match-date {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.match-time {
    display: block;
    font-size: .85rem;
    color: var(--text-light);
}

.match-venue {
    margin-top: 1rem;
    font-size: .85rem;
    color: var(--text-light);
    text-align: center;
}

.match-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.match-status {
    font-size: .75rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 4px;
}

.status-scheduled { background: #fce8eb; color: var(--primary); }
.status-live { background: #fee2e2; color: #dc2626; animation: pulse 1.5s infinite; }
.status-finished { background: #dcfce7; color: #16a34a; }
.status-cancelled { background: #f3f4f6; color: #6b7280; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .6; }
}

/* Results */
.results-list { display: flex; flex-direction: column; gap: .75rem; }

.result-row {
    display: grid;
    grid-template-columns: 100px 1fr 80px 1fr 120px;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.result-date { font-size: .85rem; color: var(--text-light); }
.result-team { font-weight: 600; }
.result-team.home { text-align: right; }
.result-team.away { text-align: left; }
.result-score {
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    background: var(--bg-alt);
    padding: .35rem .75rem;
    border-radius: 6px;
}
.result-comp { font-size: .8rem; color: var(--text-light); text-align: right; }

.results-table { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }

.results-header {
    display: grid;
    grid-template-columns: 100px 1fr 100px 1fr 120px;
    gap: 1rem;
    padding: .75rem 1.5rem;
    background: var(--primary);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.result-row-full {
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    border-left: none;
    border-right: none;
}

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

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .2s;
}

.news-card:hover { transform: translateY(-3px); }

.news-image {
    display: block;
    height: 200px;
    overflow: hidden;
    background: var(--primary);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

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

.news-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.news-body { padding: 1.5rem; }

.news-body time {
    font-size: .8rem;
    color: var(--text-light);
}

.news-body h3 {
    margin: .5rem 0;
    font-size: 1.15rem;
    line-height: 1.4;
}

.news-body h3 a { color: var(--text); }
.news-body h3 a:hover { color: var(--primary); }

.news-body p {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: .75rem;
}

.read-more {
    font-weight: 600;
    font-size: .85rem;
}

/* Article */
.article-container { max-width: 800px; }

.article-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-content p { margin-bottom: 1rem; }
.article-content h2, .article-content h3 { margin: 1.5rem 0 .75rem; }
.article-content ul, .article-content ol { margin: 1rem 0; padding-left: 1.5rem; }

.article-author { opacity: .7; font-size: .9rem; margin-top: .5rem; }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state span { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* Footer */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.8);
    padding-top: 3rem;
}

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

.footer-brand strong {
    display: block;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: .5rem;
}

.footer-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: .75rem;
}

.footer-founded { font-size: .85rem; opacity: .6; margin-top: .5rem; }

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--secondary);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,.7);
    padding: .25rem 0;
    font-size: .9rem;
}

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

.footer-contact p { font-size: .9rem; margin-bottom: .35rem; }
.footer-contact a { color: rgba(255,255,255,.7); }

.social-links { display: flex; gap: 1rem; }
.social-links a { color: rgba(255,255,255,.7); font-size: .9rem; }
.social-links a:hover { color: var(--secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: .85rem;
    opacity: .6;
}

/* ============================================================
   RESPONSIVE — Desktop / Tablet / Phone
   ============================================================ */

/* Tablet landscape & small desktop (769px – 1024px) */
@media (max-width: 1024px) {
    .container { padding: 0 1.25rem; }

    .main-nav a {
        padding: .45rem .65rem;
        font-size: .85rem;
    }

    .logo-text strong { font-size: 1.1rem; }
    .logo-icon { font-size: 1.75rem; }

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

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

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

    .team-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .staff-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

    .section { padding: 3rem 0; }
    .hero { padding: 5rem 0; }
}

/* Tablet portrait & large phone (577px – 992px) */
@media (max-width: 992px) {
    .header-inner {
        position: relative;
        height: 64px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .club-nav-desktop { display: none; }

    .main-nav {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 2rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        box-shadow: inset 0 4px 12px rgba(0,0,0,.15);
    }

    .main-nav.open { display: flex; }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
    }

    .nav-links-club {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .nav-club-label {
        color: var(--secondary);
        font-size: .7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
        padding: .5rem 1rem .25rem;
    }

    .main-nav a {
        padding: .85rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
    }

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

    .match-teams { flex-wrap: wrap; justify-content: center; }
    .team { flex: 1 1 40%; min-width: 120px; }

    .results-header { display: none; }

    .result-row,
    .result-row-full {
        grid-template-columns: 1fr;
        text-align: center;
        gap: .5rem;
        padding: 1.25rem 1rem;
    }

    .result-row-full {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .35rem;
        padding: 1.25rem 1rem;
    }

    .result-row-full .result-date { order: 1; }
    .result-row-full .result-team.home { order: 2; text-align: center; font-size: 1rem; }
    .result-row-full .result-score { order: 3; font-size: 1.35rem; padding: .45rem 1.25rem; }
    .result-row-full .result-team.away { order: 4; text-align: center; font-size: 1rem; }
    .result-row-full .result-comp { order: 5; text-align: center; }

    .result-row .result-team.home,
    .result-row .result-team.away { text-align: center; }

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

    .hero { padding: 3.5rem 0; }
    .hero-slogan { font-size: 1.05rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }

    .page-hero { padding: 2.5rem 0; }
    .page-hero-sm { padding: 2rem 0; }

    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .player-photo { height: 190px; }

    .staff-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .sponsor-grid-official,
    .sponsor-grid-main,
    .sponsor-grid-partner {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Phone (max 576px) */
@media (max-width: 576px) {
    .container { padding: 0 1rem; }

    .header-inner { height: 60px; }
    .main-nav { top: 60px; }

    .logo-text small { display: none; }
    .logo-text strong { font-size: 1rem; }
    .logo-icon { font-size: 1.5rem; }

    .section { padding: 2.5rem 0; }

    .hero { padding: 2.75rem 0; }
    .hero-badge { font-size: .7rem; padding: .3rem .75rem; }

    .btn {
        padding: .7rem 1.25rem;
        font-size: .9rem;
        min-height: 48px;
    }

    .stat-number { font-size: 1.5rem; }

    .match-card { padding: 1.25rem; }
    .team-name { font-size: .9rem; }
    .match-vs { min-width: 60px; }

    .news-body { padding: 1.25rem; }
    .news-image { height: 180px; }

    .article-content { font-size: 1rem; }
    .article-container { padding: 0; }

    .team-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: .35rem;
    }

    .team-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
    .player-photo { height: 160px; }
    .player-info { padding: 1rem .75rem; }
    .player-info h3 { font-size: .9rem; }
    .player-meta { font-size: .7rem; }

    .staff-grid { max-width: 100%; }
    .staff-photo { height: 180px; }

    .sponsor-grid-official,
    .sponsor-grid-main,
    .sponsor-grid-partner {
        grid-template-columns: 1fr;
    }

    .sponsor-card { padding: 1.5rem 1rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .site-footer { padding-top: 2rem; }

    .empty-state { padding: 3rem 1rem; }
    .empty-state span { font-size: 2.5rem; }
}

/* Very small phones */
@media (max-width: 360px) {
    .team-grid { grid-template-columns: 1fr; }
    .player-photo { height: 200px; }
}

/* Desktop enhancements (993px+) */
@media (min-width: 993px) {
    .main-nav a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }

    .club-nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .header-inner { height: 72px; }
}

/* Touch devices — larger tap targets */
@media (hover: none) and (pointer: coarse) {
    .main-nav a,
    .club-nav a,
    .btn {
        min-height: 44px;
    }
}

/* Team Page */
.team-section { margin-bottom: 3.5rem; }

.team-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 3px solid var(--secondary);
}

.team-section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.team-count {
    font-size: .85rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.player-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
    text-align: center;
}

.player-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(166,25,46,.12);
}

.player-photo {
    position: relative;
    height: 220px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.player-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
}

.player-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,.25);
}

.player-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--secondary);
    color: var(--primary-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .95rem;
}

.player-info { padding: 1.25rem 1rem; }

.player-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.player-meta {
    display: flex;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: .8rem;
}

.player-position {
    background: var(--primary);
    color: #fff;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-weight: 600;
}

.player-nationality { color: var(--text-light); }

.player-dob {
    font-size: .75rem;
    color: var(--text-light);
    margin-top: .35rem;
}

/* Staff Page */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .2s;
    display: flex;
    flex-direction: column;
}

.staff-card:hover { transform: translateY(-3px); }

.staff-photo {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    overflow: hidden;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.staff-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.staff-photo-placeholder span {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.staff-info { padding: 1.5rem; flex: 1; }

.staff-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.staff-title {
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
}

.staff-dept {
    color: var(--text-light);
    font-size: .85rem;
    margin-top: .25rem;
}

.staff-bio {
    color: var(--text-light);
    font-size: .85rem;
    margin-top: .75rem;
    line-height: 1.5;
}

/* Sponsors Page */
.sponsor-tier { margin-bottom: 3.5rem; }

.sponsor-tier-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.sponsor-grid {
    display: grid;
    gap: 1.5rem;
}

.sponsor-grid-official {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.sponsor-grid-main {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.sponsor-grid-partner {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.sponsor-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--shadow);
}

.sponsor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

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

.sponsor-logo-wrap {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.sponsor-logo-placeholder {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
}

.sponsor-logo-placeholder span {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.sponsor-name {
    font-weight: 700;
    color: var(--text);
    font-size: .95rem;
}

.sponsor-desc {
    font-size: .8rem;
    color: var(--text-light);
    margin-top: .5rem;
}
