﻿/* =============================================
   KIKIRI COMPANY — styles.css  v3.0
   Cartoon Professional · Baloo 2 + Nunito
   ============================================= */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-padding-top: var(--header-height); }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ── ROOT TOKENS ── */
:root {
    /* Brand palette (from logo) */
    --wine:        #6B1530;
    --wine-deep:   #3D0A1C;
    --wine-light:  #8F2040;
    --amber:       #E8922A;
    --amber-light: #F5A84A;
    --slate:       #7A8FAA;

    /* Backgrounds */
    --bg-hero:    #FFFFFF;
    --bg-page:    #6B1530;
    --bg-card:    #FFFFFF;
    --bg-footer:  #1A1A1A;
    /* backward compat */
    --bg-base:    #FAF8F5;
    --bg-surface: #FAF8F5;

    /* Text */
    --text-dark:     #1A1A1A;
    --text-body:     #3D2B32;
    --text-muted:    #7A6570;
    --text-light:    #FFF8F0;
    --text-dim:      rgba(255,248,240,0.5);

    /* Borders */
    --border-light: rgba(107,21,48,0.12);
    --border-dark:  rgba(255,248,240,0.12);
    --border: rgba(107,21,48,0.12); /* alias */

    /* Shapes */
    --radius:      14px;
    --radius-sm:   8px;
    --radius-lg:   24px;
    --radius-pill: 50px;

    /* Shadows (warm) */
    --shadow-sm: 0 4px 14px rgba(107,21,48,0.10);
    --shadow-md: 0 8px 32px rgba(107,21,48,0.15);
    --shadow-lg: 0 20px 60px rgba(107,21,48,0.20);

    /* Layout */
    --header-height: 70px;
    --max-width:     1280px;

    /* Easing */
    --ease:        cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Fonts */
    --font-title: 'Baloo 2', sans-serif;
    --font-body:  'Nunito', sans-serif;
}

/* ── BASE ── */
body {
    font-family: var(--font-body);
    background: var(--bg-hero);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── PARTICLES CANVAS ── */
#particles-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10; /* OVER backgrounds, UNDER sections */
}

/* =====================
   HEADER
   ===================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: rgba(250,248,245,0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 2px solid var(--border-light);
    z-index: 1000;
}

.brand-link { display: flex; align-items: center; gap: 12px; }
.header-logo { height: 42px; width: auto; }
.brand-name {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--wine);
}

.lang-switcher { display: flex; align-items: center; gap: 8px; }
.lang-sep { color: var(--text-muted); opacity: 0.4; font-size: 0.9rem; }
.lang-btn {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 1px;
    transition: all 0.2s;
}
.lang-btn:hover  { color: var(--wine); }
.lang-btn.active { background: var(--wine); color: white; }

/* =====================
   HERO (dark)
   ===================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent; /* canvas shows through body bg */
    
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 35%, rgba(107,21,48,0.4) 0%, transparent 70%);
    pointer-events: none;
    
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--header-height) 20px 0;
    animation: heroEnter 0.9s var(--ease) both;
}
@keyframes heroEnter { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }

.hero-logo {
    width: 520px; /* Logo is very large now as requested */
    max-width: 90vw; /* Keep it responsive on mobile */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 8px 28px rgba(107,21,48,0.7));
    animation: logoBob 4s ease-in-out infinite;
}
@keyframes logoBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 32px rgba(107,21,48,0.9);
}

.hero-tagline-wrap {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 600;
    color: var(--text-muted); /* Darker for white bg */
}
.hero-tagline::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--amber);
    margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-sub {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    background: var(--amber);
    color: #1A1A1A;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(232,146,42,0.5);
}
.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 30px rgba(232,146,42,0.55);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--wine);
    border: 2px solid var(--wine);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}
.btn-secondary:hover {
    background: rgba(107,21,48,0.06);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    animation: floatDown 2.5s ease-in-out infinite;
}
.scroll-indicator:hover { color: var(--amber); }
@keyframes floatDown {
    0%,100%{ transform:translateX(-50%) translateY(0); opacity:0.4; }
    50%    { transform:translateX(-50%) translateY(7px); opacity:0.8; }
}
.scroll-arrow {
    width: 18px; height: 18px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

/* =====================
   SHARED SECTION HEADER
   ===================== */
.section-header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px 56px;
    text-align: center;
}
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--amber); /* Visible on wine red */
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-light); /* Since bg is wine red */
    line-height: 1.15;
    margin-bottom: 14px;
}
.section-subtitle {
    font-size: 0.98rem;
    color: rgba(255,248,240,0.85); /* Visible on wine red */
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* =====================
   GAMES SECTION — Card Grid
   ===================== */
.games-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg-page);
    
    padding: calc(var(--header-height) + 60px) 0 80px;
}

.games-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Game card */
.game-card {
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.game-card:not(.coming-soon):hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber);
}

/* 16:9 media */
.card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-banner {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: opacity 0.4s ease, transform 0.6s var(--ease-smooth);
}
.game-card:not(.coming-soon):hover .card-banner { transform: scale(1.03); }

.card-media .video-iframe {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    border: none; 
    pointer-events: none;
}
.card-media.playing .card-banner { opacity: 0; }

.card-play-hint {
    position: absolute; bottom: 12px; right: 14px;
    z-index: 3;
    background: rgba(250,248,245,0.9);
    backdrop-filter: blur(6px);
    color: var(--wine);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(107,21,48,0.2);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
.game-card:not(.playing):hover .card-play-hint { opacity: 1; transform: translateY(0); }
.card-media.playing .card-play-hint { display: none; }

.card-info {
    padding: 16px 20px 20px;
    border-top: 2px solid var(--border-light);
    background: var(--bg-card);
    flex-shrink: 0;
}
.card-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.card-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    background: var(--amber);
    color: #1A1A1A;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    vertical-align: middle;
    position: relative; top: -1px;
}

.card-platforms {
    display: flex; gap: 12px; align-items: center;
    margin-bottom: 14px; flex-wrap: wrap;
}
.platform-badge {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--text-muted);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3px;
    transition: color 0.3s;
}
.platform-badge svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.game-card:hover .platform-badge { color: var(--wine); }

.card-links { display: flex; gap: 8px; flex-wrap: wrap; }
.card-chip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 14px;
    background: rgba(107,21,48,0.04); /* Soft subtle tint instead of solid wine */
    border: 1.5px solid var(--border-light);
    color: var(--wine);
    text-decoration: none;
    font-size: 0.68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.8px;
    border-radius: var(--radius-pill);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.card-chip:hover {
    background: var(--wine); color: white; border-color: var(--wine);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(107,21,48,0.3);
}
.card-chip svg { width: 14px; height: 14px; fill: currentColor; }

/* Coming Soon */
.game-card.coming-soon {
    border-style: dashed;
    border-color: rgba(107,21,48,0.15);
    background: rgba(250,248,245,0.5);
    cursor: default; min-height: 200px;
    display: flex; align-items: center; justify-content: center;
}
.coming-soon-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; padding: 40px; text-align: center;
}
.coming-soon-icon  { font-size: 2.5rem; opacity: 0.25; }
.coming-soon-title {
    font-family: var(--font-title);
    font-size: 0.82rem; font-weight: 800;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 2px; opacity: 0.55;
}
.coming-soon-sub { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1px; opacity: 0.4; }

/* Responsive override */
@media (max-width: 900px) {
    .games-grid { grid-template-columns: 1fr; gap: 16px; }
    .game-card.coming-soon { display: none; }
}

/* =====================
   ABOUT SECTION (light)
   ===================== */
.about-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg-page);
    
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    border-top: 2px solid var(--border-light);
}
.about-section::before { display: none; }

/* Stats strip */
.stats-strip {
    max-width: var(--max-width);
    margin: 0 auto 70px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat-item {
    background: var(--wine);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.stat-number {
    font-family: var(--font-title);
    font-size: 2.5rem; font-weight: 800;
    color: var(--amber);
    display: block; margin-bottom: 6px; line-height: 1;
}
.stat-label {
    font-size: 0.7rem; font-weight: 800;
    color: rgba(255,248,240,0.7);
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* Pillars */
.pillars-grid {
    max-width: var(--max-width);
    margin: 0 auto 70px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pillar-card {
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-top: 4px solid var(--amber);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: transform 0.4s var(--ease), box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.pillar-title {
    font-family: var(--font-title);
    font-size: 1.1rem; font-weight: 800;
    color: var(--wine); margin-bottom: 10px;
}
.pillar-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* Team */
.team-header {
    max-width: var(--max-width);
    margin: 0 auto; padding: 0 40px 40px; text-align: center;
}
.team-grid {
    max-width: var(--max-width);
    margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.team-card {
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo-wrap {
    width: 100%; aspect-ratio: 1; overflow: hidden;
    background: linear-gradient(135deg, var(--wine), var(--wine-light));
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-title); font-size: 1.6rem; font-weight: 800;
    color: rgba(255,248,240,0.35); letter-spacing: 2px;
}
.team-info { padding: 14px 16px; }
.team-name {
    font-family: var(--font-title);
    font-size: 0.9rem; font-weight: 800;
    color: var(--text-dark); margin-bottom: 4px;
}
.team-role {
    font-size: 0.7rem; font-weight: 800;
    color: var(--wine); text-transform: uppercase; letter-spacing: 0.8px;
}

/* =====================
   FOOTER (dark wine)
   ===================== */
footer {
    background: var(--bg-footer);
    padding: 56px 40px 32px;
    position: relative;
    
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
    display: flex; align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px; flex-wrap: wrap; gap: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.footer-logo  { height: 52px; width: auto; }
.footer-brand-name {
    font-family: var(--font-title);
    font-size: 1.3rem; font-weight: 800; color: var(--text-light);
}
.footer-tagline {
    font-size: 0.7rem; font-weight: 700;
    color: var(--text-dim); margin-top: 3px;
    letter-spacing: 1px; text-transform: uppercase;
}
.social-links { display: flex; gap: 12px; align-items: center; }
.social-link {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--radius-pill);
    background: rgba(255,248,240,0.06);
    border: 1.5px solid rgba(255,248,240,0.15);
    color: var(--text-dim);
    transition: all 0.3s var(--ease);
}
.social-link svg   { width: 18px; height: 18px; fill: currentColor; }
.social-link:hover {
    background: var(--amber); border-color: var(--amber);
    color: #1A1A1A;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 22px rgba(232,146,42,0.45);
}
.footer-bottom {
    border-top: 1px solid rgba(255,248,240,0.1);
    padding-top: 24px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-link {
    font-size: 0.75rem; font-weight: 600;
    color: var(--text-dim); text-decoration: none; transition: color 0.3s;
}
.footer-link:hover { color: var(--amber); }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible     { opacity: 1; transform: translateY(0); }
.reveal-delay-1     { transition-delay: 0.08s; }
.reveal-delay-2     { transition-delay: 0.16s; }
.reveal-delay-3     { transition-delay: 0.24s; }
.reveal-delay-4     { transition-delay: 0.32s; }



/* Foreground Elevation (Over Canvas) */
.hero-content, .games-grid, .section-header, .stats-strip, .pillars-grid, .team-header, .team-grid, .footer-inner {
    position: relative;
    z-index: 20;
}

/* =====================
   JUICY ANIMATIONS & HOVER EFFECTS
   ===================== */
.lang-btn {
    transition: all 0.35s var(--ease);
    display: inline-block;
}
.lang-btn:hover {
    transform: scale(1.15) translateY(-2px);
    color: var(--wine);
}
.btn-secondary:hover {
    transform: translateY(-3px) scale(1.04);
}
.game-card:not(.coming-soon):hover {
    transform: translateY(-10px) scale(1.02);
}
.card-chip:hover {
    transform: translateY(-4px) scale(1.08);
}
.pillar-card {
    transition: all 0.5s var(--ease);
}
.pillar-card:hover { 
    transform: translateY(-8px) scale(1.03); 
    border-top-color: var(--wine);
}
.team-card {
    transition: all 0.5s var(--ease);
}
.team-card:hover { 
    transform: translateY(-8px) scale(1.03); 
}
.team-card:hover .team-photo-wrap img {
    transform: scale(1.08);
    transition: transform 0.5s var(--ease);
}
.social-link:hover {
    transform: translateY(-4px) scale(1.15) rotate(5deg);
}
.footer-link {
    display: inline-block;
    transition: all 0.3s var(--ease);
}
.footer-link:hover {
    transform: scale(1.05) translateX(3px);
}
.footer-logo {
    transition: all 0.4s var(--ease);
}
.footer-brand:hover .footer-logo {
    transform: scale(1.12) rotate(-6deg);
}
.scroll-indicator {
    transition: all 0.3s var(--ease);
}
.scroll-indicator:hover {
    transform: translateX(-50%) translateY(3px) scale(1.1);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .stats-strip  { grid-template-columns: repeat(2, 1fr); }
    .team-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 60px; }

    .site-header { padding: 0 18px; }
    .brand-name  { display: none; }
    .header-logo { height: 34px; }

    .hero-logo { width: 88px; margin-bottom: 16px; }
    .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; }
    .btn-primary, .btn-secondary { width: 100%; }

    .games-section { padding: calc(var(--header-height) + 40px) 0 50px; }
    .games-grid    { padding: 0 16px; gap: 14px; }
    .card-info     { padding: 12px 14px 14px; }
    .card-title    { font-size: 0.92rem; }
    .card-play-hint { display: none; }

    .section-header { padding: 0 20px 40px; }
    .stats-strip    { padding: 0 16px; grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-item      { padding: 24px 12px; }
    .stat-number    { font-size: 2rem; }
    .pillars-grid   { grid-template-columns: 1fr; padding: 0 16px; }
    .pillar-card    { padding: 28px 20px; }
    .team-header    { padding: 0 16px 28px; }
    .team-grid      { padding: 0 16px; grid-template-columns: 1fr 1fr; }
    .about-section  { padding-top: calc(var(--header-height) + 40px); }

    footer          { padding: 40px 20px 24px; }
    .footer-top     { flex-direction: column; gap: 20px; }
    .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-links   { gap: 16px; }
}

@media (max-width: 480px) {
    .team-grid   { grid-template-columns: 1fr 1fr; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
}
