/* ═══════════════════════════════════════════════════════════
   style.css — Kuba Bieńkowski #7
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --green:       #00E676;
  --green-dark:  #00C853;
  --green-dim:   rgba(0,230,118,0.10);
  --green-dim2:  rgba(0,230,118,0.05);
  --black:       #060806;
  --surface:     #0C100C;
  --surface2:    #111511;
  --surface3:    #171C17;
  --border:      rgba(0,230,118,0.14);
  --border2:     rgba(255,255,255,0.06);
  --text:        #EFF5EF;
  --text-muted:  rgba(239,245,239,0.45);
  --text-dim:    rgba(239,245,239,0.2);
  --gold:        #FFD700;
  --gold-dim:    rgba(255,215,0,0.07);
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--text); overflow-x: hidden; }

body::before {
  content: ''; position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(0,230,118,0.02) 59px, rgba(0,230,118,0.02) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(0,230,118,0.02) 59px, rgba(0,230,118,0.02) 60px);
  pointer-events: none; z-index: 0;
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; background: rgba(6,8,6,0.92);
  backdrop-filter: blur(20px); border-bottom: 0.5px solid var(--border);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px;
  display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.nav-logo .num { color: var(--gold); font-size: 26px; line-height: 1; }
.nav-logo .name { color: var(--text); letter-spacing: 0.03em; }
nav ul { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; }
nav ul a {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
nav ul a:hover { color: var(--green); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; align-items: flex-end; padding-bottom: 5rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,8,6,0.97) 0%, rgba(6,8,6,0.75) 50%, rgba(6,8,6,0.3) 100%),
              linear-gradient(to top, rgba(6,8,6,1) 0%, transparent 40%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute; width: 100%; inset: 0;
  background: var(--surface2); display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-seven {
  position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(300px, 38vw, 500px); color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,215,0,0.06); line-height: 1;
  user-select: none; pointer-events: none; z-index: 2;
}
.hero-content {
  position: relative; z-index: 3; padding: 0 2.5rem;
  max-width: 1100px; width: 100%; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.25rem;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.3;transform:scale(0.7);} }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(72px, 12vw, 130px); line-height: 0.87;
  letter-spacing: -0.025em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-meta-item {
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.hero-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.hero-quote {
  font-size: clamp(14px, 1.8vw, 17px); font-weight: 300; font-style: italic;
  color: var(--text-muted); border-left: 2px solid var(--green); padding-left: 1rem;
  margin-bottom: 2rem; max-width: 440px; line-height: 1.6;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.chip {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border: 0.5px solid var(--border); color: var(--green);
  background: var(--green-dim2); border-radius: 2px;
}
.hero-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  border: 0.5px solid var(--border2); border-radius: 2px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; background: var(--surface); transition: all 0.2s;
}
.soc-btn:hover { border-color: var(--border); color: var(--green); background: var(--green-dim2); }

/* ─── SHARED LAYOUT ───────────────────────────────────────── */
.wrap { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem; }
.s-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 0.4rem; }
.s-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(38px, 5vw, 60px); text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1; margin-bottom: 0.6rem;
}
.s-desc { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; max-width: 620px; margin-bottom: 3rem; }
.divider { height: 0.5px; background: linear-gradient(to right, transparent, var(--border), transparent); max-width: 1100px; margin: 0 auto; }

/* ─── O MNIE ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media(max-width:700px){ .about-grid { grid-template-columns: 1fr; } }
.about-text p { font-size: 15px; font-weight: 300; color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 500; }
.about-facts { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 0.5px solid var(--border); }
.fact-row { display: flex; align-items: center; background: var(--surface); padding: 1rem 1.25rem; gap: 1rem; transition: background 0.2s; }
.fact-row:hover { background: var(--surface3); }
.fact-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); min-width: 110px; }
.fact-val { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }
.fact-val.green { color: var(--green); }

/* ─── GALERIA ─────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
@media(max-width:600px){ .gallery-grid { grid-template-columns: repeat(2,1fr); } }
.gallery-item { position: relative; aspect-ratio: 4/3; background: var(--surface2); border: 0.5px solid var(--border2); overflow: hidden; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; }
.gallery-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.gallery-placeholder .ph-icon { width: 40px; height: 40px; border: 0.5px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.gallery-placeholder .ph-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; opacity: 0.5; }
.gallery-placeholder span { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,230,118,0.08); opacity: 0; transition: opacity 0.2s; border: 0.5px solid var(--border); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ─── TIKTOK ──────────────────────────────────────────────── */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media(max-width:900px) { .tiktok-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px) { .tiktok-grid { grid-template-columns: 1fr; } }

.tiktok-card {
  background: var(--surface);
  border: 0.5px solid var(--border2);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.tiktok-card:hover { border-color: var(--border); background: var(--surface2); }

.tiktok-embed-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--surface2);
  aspect-ratio: 9 / 16;
  position: relative;
}
.tiktok-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: var(--surface2);
}

.tiktok-card-meta {
  padding: 0.85rem 1.1rem;
  border-top: 0.5px solid var(--border2);
}
.tiktok-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 3px;
}
.tiktok-card-desc {
  font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.5;
}

.tiktok-cta {
  text-align: center;
  padding-top: 0.5rem;
}
.tiktok-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 2px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); text-decoration: none;
  transition: all 0.2s;
}
.tiktok-follow-btn:hover { background: var(--green-dim); border-color: var(--green); }
.tt-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,0.4); border: 0.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

/* ─── WIDEO ───────────────────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.video-card { background: var(--surface); border: 0.5px solid var(--border2); border-radius: 4px; overflow: hidden; }
.video-thumb { aspect-ratio: 16/9; background: var(--surface2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; position: relative; }
.video-play { width: 52px; height: 52px; border-radius: 50%; background: var(--green-dim); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; }
.video-play svg { width: 20px; height: 20px; fill: var(--green); margin-left: 3px; }
.video-platform { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
.video-info { padding: 1rem 1.25rem; border-top: 0.5px solid var(--border2); }
.video-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.video-meta { font-size: 11px; color: var(--text-muted); }
.video-add {
  aspect-ratio: 16/9; background: var(--surface2); border: 0.5px dashed var(--border);
  border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; transition: background 0.2s;
}
.video-add:hover { background: var(--surface3); }
.video-add span { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }

/* ─── WYNIKI ──────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--border); border: 0.5px solid var(--border); margin-bottom: 3.5rem;
}
.stat-card { background: var(--surface); padding: 1.75rem 1.5rem; transition: background 0.2s; }
.stat-card:hover { background: var(--surface3); }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 46px; color: var(--green); line-height: 1; letter-spacing: -0.02em; }
.stat-unit { font-size: 14px; font-weight: 300; color: var(--text-muted); margin-left: 2px; }
.stat-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem; }
.attrs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media(max-width:640px){ .attrs-grid { grid-template-columns: 1fr; } }
.attr-card { background: var(--surface); border: 0.5px solid var(--border2); border-radius: 4px; padding: 1.5rem; }
.attr-card-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 0.5px solid var(--border2); }
.attr-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.1rem; }
.attr-row:last-child { margin-bottom: 0; }
.attr-dot-col { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 4px; padding-top: 4px; }
.attr-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(0,230,118,0.45); }
.attr-line { width: 0.5px; flex: 1; min-height: 20px; background: var(--border); }
.attr-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.attr-desc { font-size: 12px; font-weight: 300; color: var(--text-muted); line-height: 1.55; }

/* ─── MECZE ───────────────────────────────────────────────── */
.matches-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead { border-bottom: 0.5px solid var(--border); }
th { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); padding: 0 1rem 0.9rem 0; text-align: left; }
td { padding: 0.9rem 1rem 0.9rem 0; border-bottom: 0.5px solid var(--border2); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tbody tr { transition: background 0.15s; }
tbody tr:hover td { background: var(--green-dim2); }
.m-name { font-size: 15px; font-weight: 500; color: var(--text); }
.m-detail { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.badge-win, .badge-draw, .badge-loss { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; padding: 3px 12px; border-radius: 2px; letter-spacing: 0.05em; display: inline-block; }
.badge-win  { background: rgba(0,200,83,0.1);  color: #00C853; border: 0.5px solid rgba(0,200,83,0.25); }
.badge-draw { background: rgba(255,193,7,0.08); color: #FFC107; border: 0.5px solid rgba(255,193,7,0.22); }
.badge-loss { background: rgba(229,57,53,0.08); color: #ef5350; border: 0.5px solid rgba(229,57,53,0.2); }
.goals-cell { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--green); display: flex; align-items: center; gap: 6px; }
.ball { width: 12px; height: 12px; border-radius: 50%; background: var(--green); opacity: 0.3; flex-shrink: 0; }

/* ─── TURNIEJE ────────────────────────────────────────────── */
.tournaments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: var(--border); border: 0.5px solid var(--border); margin-bottom: 2rem; }
.tournament-card { background: var(--surface); padding: 1.5rem; transition: background 0.2s; }
.tournament-card:hover { background: var(--surface3); }
.t-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.75rem; }
.t-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; }
.t-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; flex-shrink: 0; margin-left: 8px; margin-top: 2px; }
.t-badge.regular { background: var(--green-dim2); color: var(--green); border: 0.5px solid var(--border); }
.t-badge.invited { background: var(--gold-dim); color: var(--gold); border: 0.5px solid rgba(255,215,0,0.2); }
.t-organizer { font-size: 11px; color: var(--text-muted); margin-bottom: 0.75rem; }
.t-stats { display: flex; gap: 1.5rem; border-top: 0.5px solid var(--border2); padding-top: 0.75rem; margin-top: 0.75rem; }
.t-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--green); line-height: 1; }
.t-stat-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }
.tournaments-note { padding: 1.25rem 1.5rem; background: var(--green-dim2); border: 0.5px solid var(--border); border-radius: 2px; font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.65; }
.tournaments-note strong { color: var(--green); font-weight: 500; }

/* ─── MOTTO ───────────────────────────────────────────────── */
.cr7-quote-section { position: relative; z-index: 1; padding: 4rem 0; overflow: hidden; }
.cr7-quote-inner { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; position: relative; }
.cr7-quote-bg {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 160px;
  color: transparent; -webkit-text-stroke: 1px rgba(255,215,0,0.05);
  line-height: 1; pointer-events: none; letter-spacing: -0.03em;
}
.cr7-num-pill { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.cr7-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 16px; color: #000; }
.cr7-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
blockquote {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 48px); text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.05; color: var(--text); max-width: 700px;
  border: none; padding: 0;
}
blockquote em { font-style: normal; color: var(--green); }
blockquote footer { font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 1rem; border: none; padding: 0; background: none; }

/* ─── KARIERA ─────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 0.5px; background: linear-gradient(to bottom, var(--green), rgba(0,230,118,0.05));
}
.tl-item { position: relative; padding-left: 2rem; margin-bottom: 3rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -2rem; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(0,230,118,0.12), 0 0 16px rgba(0,230,118,0.35); }
.tl-date { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 0.4rem; }
.tl-club { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 34px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tl-now { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); border: 0.5px solid var(--border); padding: 3px 10px; border-radius: 2px; background: var(--green-dim2); }
.tl-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.65; max-width: 520px; }

/* ─── BOISKO ──────────────────────────────────────────────── */
.outer { background: var(--black); padding: 0; display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.pitch-col { flex: 0 0 auto; }
.info-col { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 1.25rem; }
.pos-tag { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; padding: 0.7rem 1rem; border: .5px solid rgba(0,230,118,0.14); border-radius: 3px; background: rgba(0,230,118,0.04); transition: all .2s; }
.pos-tag:hover, .pos-tag.active { background: rgba(0,230,118,0.11); border-color: rgba(0,230,118,0.4); }
.pos-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pos-name { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: #EFF5EF; letter-spacing: .04em; text-transform: uppercase; }
.pos-pct { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; margin-left: auto; padding-left: 1rem; }
.pos-desc { font-size: 12px; font-weight: 300; color: rgba(239,245,239,.45); line-height: 1.55; padding: .5rem 1rem .6rem 1.75rem; border-left: .5px solid rgba(0,230,118,0.14); margin-left: .5rem; display: none; }
.pos-tag.active + .pos-desc { display: block; }
.legend-bar { height: 8px; width: 100%; border-radius: 4px; background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(255,200,0,.25) 30%, rgba(255,100,0,.6) 65%, rgba(220,30,30,.95) 100%); margin-bottom: .3rem; }
.legend-labels { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.boisko-stat-row { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: .5px solid rgba(0,230,118,0.08); }
.boisko-stat-row:last-child { border-bottom: none; }
.boisko-stat-k { font-size: 12px; color: rgba(239,245,239,.45); }
.boisko-stat-v { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; color: #EFF5EF; }

/* ─── TRENING ─────────────────────────────────────────────── */
.week-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.day-tab { flex: 1 1 auto; min-width: 80px; padding: 0.7rem 0.5rem 0.6rem; background: var(--surface); border: 0.5px solid var(--border2); border-radius: 3px; cursor: pointer; transition: all 0.18s; text-align: center; position: relative; overflow: hidden; }
.day-tab::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform 0.2s; }
.day-tab:hover { background: var(--surface3); border-color: var(--border); }
.day-tab.active { background: var(--green-dim); border-color: var(--border); }
.day-tab.active::after { transform: scaleX(1); }
.day-tab-short { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); line-height: 1; margin-bottom: 3px; }
.day-tab.active .day-tab-short { color: var(--green); }
.day-tab-type { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); line-height: 1.2; }
.day-tab.active .day-tab-type { color: rgba(0,230,118,0.6); }
.day-tab-dots { display: flex; justify-content: center; gap: 3px; margin-top: 6px; }
.day-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border2); }
.day-dot.on { background: var(--green); box-shadow: 0 0 4px rgba(0,230,118,0.5); }
.day-panel { display: none; }
.day-panel.active { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform: translateY(0); } }
.day-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.day-full-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(36px, 5vw, 52px); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; margin-bottom: 4px; }
.day-subtitle { font-size: 12px; font-weight: 300; color: var(--text-muted); letter-spacing: 0.06em; }
.day-badges { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; padding-top: 6px; }
.day-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.db-akademia   { background: rgba(0,230,118,0.07);  color: var(--green); border: 0.5px solid var(--border); }
.db-indyw      { background: rgba(24,119,242,0.08); color: #64B5F6; border: 0.5px solid rgba(100,181,246,0.2); }
.db-orlik      { background: rgba(255,152,0,0.08);  color: #FFB74D; border: 0.5px solid rgba(255,183,77,0.2); }
.db-basen      { background: rgba(0,188,212,0.08);  color: #4DD0E1; border: 0.5px solid rgba(77,208,225,0.2); }
.db-sparring   { background: rgba(156,39,176,0.08); color: #CE93D8; border: 0.5px solid rgba(206,147,216,0.2); }
.db-turniej    { background: rgba(255,215,0,0.08);  color: var(--gold); border: 0.5px solid rgba(255,215,0,0.2); }
.db-odpoczynek { background: rgba(255,255,255,0.04); color: var(--text-dim); border: 0.5px solid var(--border2); }
.intensity-row { display: flex; align-items: center; gap: 12px; margin-bottom: 2rem; padding: 0.85rem 1.25rem; background: var(--surface); border: 0.5px solid var(--border2); border-radius: 3px; }
.intensity-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); min-width: 80px; flex-shrink: 0; }
.intensity-track { flex: 1; height: 6px; background: var(--surface3); border-radius: 3px; overflow: hidden; }
.intensity-fill { height: 100%; border-radius: 3px; transition: width 0.5s ease; }
.intensity-pct { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; min-width: 44px; text-align: right; flex-shrink: 0; }
.time-pill { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); flex-shrink: 0; }
.exercises-grid { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.5rem; }
.exercise-item { display: flex; align-items: center; gap: 14px; padding: 0.9rem 1.25rem; background: var(--surface); border: 0.5px solid var(--border2); border-radius: 3px; text-decoration: none; transition: all 0.18s; position: relative; overflow: hidden; }
.exercise-item::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--green); transform: scaleY(0); transition: transform 0.2s; }
.exercise-item:hover { background: var(--surface3); border-color: var(--border); }
.exercise-item:hover::before { transform: scaleY(1); }
.exercise-item.no-link { cursor: default; }
.exercise-item.no-link:hover::before { transform: scaleY(0); }
.ex-platform-icon { width: 32px; height: 32px; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; flex-shrink: 0; }
.ex-yt   { background: rgba(255,0,0,0.1);    color: #FF5252; border: 0.5px solid rgba(255,82,82,0.2); }
.ex-fb   { background: rgba(24,119,242,0.1); color: #64B5F6; border: 0.5px solid rgba(100,181,246,0.2); }
.ex-tt   { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 0.5px solid var(--border2); }
.ex-none { background: var(--surface2); color: var(--text-dim); border: 0.5px solid var(--border2); }
.ex-body { flex: 1; min-width: 0; }
.ex-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ex-detail { font-size: 11px; color: var(--text-muted); }
.ex-link-arrow { font-size: 14px; color: var(--text-dim); flex-shrink: 0; transition: color 0.15s, transform 0.15s; }
.exercise-item:hover .ex-link-arrow { color: var(--green); transform: translateX(3px); }
.day-notes { padding: 1rem 1.25rem; background: var(--green-dim2); border: 0.5px solid var(--border); border-radius: 3px; font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.day-notes strong { color: var(--green); font-weight: 500; }

/* ─── KONTAKT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media(max-width:640px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-social { display: flex; flex-direction: column; gap: 8px; }
.social-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: var(--surface); border: 0.5px solid var(--border2); border-radius: 2px; text-decoration: none; transition: all 0.2s; }
.social-row:hover { border-color: var(--border); background: var(--surface3); }
.social-row-left { display: flex; align-items: center; gap: 12px; }
.social-icon { width: 32px; height: 32px; border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.social-icon.tt { background: rgba(0,0,0,0.4); color: var(--text); border: 0.5px solid var(--border2); }
.social-icon.ig { background: rgba(225,48,108,0.1); color: #E1306C; border: 0.5px solid rgba(225,48,108,0.2); }
.social-icon.fb { background: rgba(24,119,242,0.1); color: #1877F2; border: 0.5px solid rgba(24,119,242,0.2); }
.social-icon.yt { background: rgba(255,0,0,0.1); color: #FF0000; border: 0.5px solid rgba(255,0,0,0.15); }
.social-name { font-size: 14px; font-weight: 500; color: var(--text); }
.social-handle { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.social-arrow { font-size: 16px; color: var(--text-dim); }
.contact-info { background: var(--surface); border: 0.5px solid var(--border2); border-radius: 4px; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; }
.contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.75rem; }
.contact-info p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.contact-email { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--green); text-decoration: none; border-bottom: 0.5px solid var(--border); padding-bottom: 4px; }

/* ─── COUNTDOWN ──────────────────────────────────────────── */
.countdown-strip {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(0,230,118,0.06) 0%, rgba(0,230,118,0.02) 100%);
  border-bottom: 0.5px solid var(--border);
}
.cd-inner {
  max-width: 1100px; margin: 0 auto; padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cd-label { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.cd-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 22px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); line-height: 1; }
.cd-sub { font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.cd-units { display: flex; align-items: center; gap: 6px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 46px; background: var(--surface); border: 0.5px solid var(--border2); border-radius: 3px; padding: 6px 8px; }
.cd-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; color: var(--green); line-height: 1; letter-spacing: -0.02em; }
.cd-uname { font-size: 8px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-top: 2px; }
.cd-sep { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--green); opacity: 0.4; line-height: 1; }

/* ─── PROGRES ─────────────────────────────────────────────── */
.progres-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media(max-width:700px){ .progres-grid { grid-template-columns: 1fr; } }

.progres-card {
  background: var(--surface); border: 0.5px solid var(--border2); border-radius: 4px;
  padding: 1.25rem 1.25rem 1rem;
}
.progres-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.progres-name { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.progres-range { display: flex; align-items: center; gap: 4px; }
.progres-start { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-dim); }
.progres-arrow { color: var(--text-dim); font-size: 14px; }
.progres-end { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900; color: var(--green); }
.progres-badge {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900;
  color: var(--green); background: var(--green-dim2); border: 0.5px solid var(--border);
  border-radius: 3px; padding: 4px 10px; white-space: nowrap; flex-shrink: 0;
}
.pg-chart { display: flex; align-items: flex-end; gap: 8px; height: 64px; padding-top: 4px; }
.pg-bar-col { display: flex; flex-direction: column; align-items: center; flex: 1; gap: 4px; }
.pg-bar { width: 100%; background: var(--surface3); border-radius: 2px; border: 0.5px solid var(--border2); transition: height 0.6s ease; }
.pg-bar--best { background: var(--green); border-color: var(--green); box-shadow: 0 0 8px rgba(0,230,118,0.25); }
.pg-bar-label { font-size: 8px; font-weight: 600; letter-spacing: 0.08em; color: var(--text-dim); white-space: nowrap; text-align: center; }

/* ─── OSIĄGNIĘCIA ─────────────────────────────────────────── */
.osiagniecia-grid { display: flex; flex-direction: column; gap: 4px; }
.ach-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--surface); border: 0.5px solid var(--border2); border-radius: 3px;
  padding: 1rem 1.25rem; transition: background 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.ach-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--green); transform: scaleY(0); transition: transform 0.2s;
}
.ach-card:hover { background: var(--surface3); border-color: var(--border); }
.ach-card:hover::before { transform: scaleY(1); }
.ach-icon { font-size: 24px; flex-shrink: 0; width: 42px; text-align: center; }
.ach-body { flex: 1; min-width: 0; }
.ach-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.ach-event { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 2px; }
.ach-detail { font-size: 12px; color: var(--text-muted); }
.ach-date { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; flex-shrink: 0; }

/* ─── FIFA KARTA ──────────────────────────────────────────── */
.fifa-section-inner { display: flex; gap: 3rem; align-items: flex-start; flex-wrap: wrap; }
.fifa-card-wrap { flex-shrink: 0; }

.fifa-card {
  width: 220px;
  background: linear-gradient(145deg, #c8a84b 0%, #f0d060 30%, #c8a030 60%, #9a7820 100%);
  border-radius: 12px;
  padding: 16px 14px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative; overflow: hidden; user-select: none;
}
.fifa-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  border-radius: 12px; pointer-events: none;
}
.fc-top { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 6px; }
.fc-overall { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 48px; color: #1a1008; line-height: 1; }
.fc-pos { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 15px; color: #1a1008; letter-spacing: 0.08em; }
.fc-flag { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; color: rgba(26,16,8,0.6); margin-top: 2px; }
.fc-img-wrap {
  width: 100%; height: 140px; margin: 4px 0 6px;
  border-radius: 6px; overflow: hidden;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}
.fc-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.fc-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; color: #1a1008; letter-spacing: 0.12em; text-align: center; }
.fc-surname { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px; color: #1a1008; letter-spacing: 0.04em; text-align: center; line-height: 1; margin-bottom: 8px; }
.fc-divider { height: 0.5px; background: rgba(26,16,8,0.3); margin: 6px 0; }
.fc-attrs { display: flex; gap: 0; }
.fc-attrs-col { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.fc-attrs-sep { width: 0.5px; background: rgba(26,16,8,0.2); margin: 0 8px; }
.fc-attr { display: flex; align-items: center; gap: 5px; }
.fc-attr-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 14px; min-width: 22px; text-align: right; line-height: 1; }
.fc-attr-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px; color: #1a1008; letter-spacing: 0.06em; }

/* FIFA legend */
.fifa-legend { flex: 1; min-width: 240px; }
.fifa-legend-inner { background: var(--surface); border: 0.5px solid var(--border2); border-radius: 4px; padding: 1.5rem; }
.fleg-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px; text-transform: uppercase; color: var(--text); margin-bottom: 0.5rem; }
.fleg-desc { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.fleg-attrs { display: flex; flex-direction: column; gap: 10px; }
.fleg-row { display: flex; align-items: center; gap: 10px; }
.fleg-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; color: var(--text-muted); min-width: 32px; }
.fleg-bar-track { flex: 1; height: 5px; background: var(--surface3); border-radius: 3px; overflow: hidden; }
.fleg-bar-fill { height: 100%; border-radius: 3px; transition: width 0.8s ease; }
.fleg-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 15px; min-width: 28px; text-align: right; }

/* ─── OPINIE ──────────────────────────────────────────────── */
.opinie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media(max-width:900px){ .opinie-grid { grid-template-columns: 1fr; } }

.opinia-card {
  background: var(--surface); border: 0.5px solid var(--border2); border-radius: 4px;
  padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.opinia-card:hover { border-color: var(--border); background: var(--surface3); }
.opinia-quote { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.75; font-style: italic; }
.opinia-quote::before { content: '"'; color: var(--green); font-style: normal; font-weight: 700; font-size: 20px; line-height: 1; display: block; margin-bottom: 6px; }
.opinia-footer { display: flex; align-items: center; gap: 10px; }
.opinia-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; box-shadow: 0 0 8px rgba(0,230,118,0.45); }
.opinia-autor { font-size: 13px; font-weight: 600; color: var(--text); }
.opinia-rola { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 1px; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer { position: relative; z-index: 1; border-top: 0.5px solid var(--border); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px; color: var(--text-dim); letter-spacing: 0.04em; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--text-dim); letter-spacing: 0.06em; }

/* ═══════════════════════════════════════════════════════════
   HAMBURGER NAV
   ═══════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: 0.5px solid var(--border2);
  border-radius: 3px;
  padding: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   TABLET (≤ 900px) — hamburger kicks in
   ═══════════════════════════════════════════════════════════ */
@media(max-width: 900px) {
  .nav-hamburger { display: flex; }

  nav ul {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: rgba(6,8,6,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.5rem 0 2rem;
    z-index: 250;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  nav ul.open { display: flex; height: 100vh; }

  nav ul li { width: 100%; }
  nav ul a {
    display: block;
    padding: 1rem 2rem;
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    border-bottom: 0.5px solid var(--border2);
    transition: color 0.15s, background 0.15s;
  }
  nav ul li:last-child a { border-bottom: none; }
  nav ul a:hover { color: var(--green); background: var(--green-dim2); }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE (≤ 768px) — główne poprawki
   ═══════════════════════════════════════════════════════════ */
@media(max-width: 768px) {

  /* ─── NAV ───────────────────────────────────────────────── */
  nav { padding: 0 1.25rem; }
  .nav-logo .name { display: none; }

  /* ─── HERO ──────────────────────────────────────────────── */
  .hero { padding-bottom: 3rem; min-height: 100svh; }
  .hero-content { padding: 0 1.25rem; }
  .hero-bg {
    background:
      linear-gradient(to right, rgba(6,8,6,0.97) 0%, rgba(6,8,6,0.92) 60%, rgba(6,8,6,0.75) 100%),
      linear-gradient(to top, rgba(6,8,6,1) 0%, transparent 40%);
  }
  .hero h1 { font-size: clamp(52px, 13vw, 80px); }
  .hero-quote { font-size: 13px; max-width: 100%; margin-bottom: 1.25rem; }
  .hero-chips { gap: 6px; margin-bottom: 1.5rem; }
  .chip { font-size: 9px; padding: 4px 10px; }
  .hero-socials { gap: 8px; }
  .soc-btn { padding: 9px 14px; font-size: 11px; }
  .hero-meta { gap: 10px; margin-bottom: 1rem; }

  /* ─── GENERAL ────────────────────────────────────────────── */
  .wrap { padding: 2.5rem 1.25rem; }
  .s-title { font-size: clamp(30px, 8vw, 48px); }
  .s-desc { font-size: 13px; line-height: 1.65; margin-bottom: 1.5rem; }

  /* ─── O MNIE ─────────────────────────────────────────────── */
  .about-grid { gap: 1.5rem; }
  .about-text p { font-size: 14px; line-height: 1.75; }

  /* ─── GALERIA ────────────────────────────────────────────── */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }

  /* ─── TIKTOK ─────────────────────────────────────────────── */
  .tiktok-grid { grid-template-columns: 1fr; gap: 1rem; }
  .tiktok-follow-btn { width: 100%; justify-content: center; }

  /* ─── WIDEO ──────────────────────────────────────────────── */
  .video-grid { grid-template-columns: 1fr; }

  /* ─── WYNIKI ─────────────────────────────────────────────── */
  .stat-card { padding: 1.25rem 1rem; }
  .stat-num { font-size: 38px; }
  .attrs-grid { gap: 1rem; }
  .attr-card { padding: 1.25rem 1rem; }

  /* ─── MECZE ──────────────────────────────────────────────── */
  table { font-size: 13px; min-width: 480px; }
  th, td { padding: 0.7rem 0.6rem 0.7rem 0; }
  th:nth-child(3), td:nth-child(3) { display: none; }   /* ukryj kolumnę "Czas" */
  .m-name { font-size: 13px; }
  .m-detail { font-size: 10px; }
  .goals-cell { font-size: 18px; }
  .badge-win, .badge-draw, .badge-loss { font-size: 14px; padding: 2px 8px; }

  /* ─── TURNIEJE ───────────────────────────────────────────── */
  .tournaments-grid { grid-template-columns: 1fr; }
  .tournament-card { padding: 1.25rem; }

  /* ─── MOTTO ──────────────────────────────────────────────── */
  .cr7-quote-section { padding: 2rem 0; }
  .cr7-quote-bg { font-size: 70px; right: 0; opacity: 0.6; }
  blockquote { font-size: clamp(20px, 6vw, 32px); }

  /* ─── KARIERA ────────────────────────────────────────────── */
  .tl-club { font-size: 26px; }
  .tl-desc { font-size: 13px; }

  /* ─── BOISKO ─────────────────────────────────────────────── */
  .outer { flex-direction: column; gap: 1.5rem; }
  .pitch-col { width: 100%; display: flex; justify-content: center; }
  #pitchCanvas { width: 240px; height: 376px; }
  .info-col { min-width: unset; width: 100%; }
  .pos-tag { padding: 0.6rem 0.85rem; }
  .pos-name { font-size: 14px; }

  /* ─── TRENING ────────────────────────────────────────────── */
  .week-nav { gap: 3px; }
  .day-tab { min-width: 38px; padding: 0.45rem 0.2rem 0.4rem; }
  .day-tab-short { font-size: 13px; }
  .day-tab-type { display: none; }
  .day-tab-dots { gap: 2px; margin-top: 4px; }
  .day-dot { width: 4px; height: 4px; }
  .day-header { flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
  .day-full-name { font-size: clamp(28px, 8vw, 40px); }
  .intensity-row { flex-wrap: wrap; gap: 8px 12px; padding: 0.75rem 1rem; }
  .intensity-label { min-width: unset; }
  .time-pill { order: 3; }
  .exercise-item { gap: 10px; padding: 0.75rem 1rem; }
  .ex-name { font-size: 13px; }
  .ex-detail { font-size: 10px; }
  .ex-platform-icon { width: 28px; height: 28px; font-size: 11px; }

  /* ─── COUNTDOWN ─────────────────────────────────────────── */
  .cd-inner { padding: 0.85rem 1.25rem; gap: 0.75rem; }
  .cd-title { font-size: 17px; }
  .cd-num { font-size: 22px; }
  .cd-unit { min-width: 38px; padding: 5px 6px; }

  /* ─── PROGRES ────────────────────────────────────────────── */
  .progres-grid { grid-template-columns: 1fr; gap: 1rem; }
  .progres-card { padding: 1rem; }

  /* ─── OSIĄGNIĘCIA ────────────────────────────────────────── */
  .ach-card { gap: 0.75rem; padding: 0.85rem 1rem; }
  .ach-icon { font-size: 20px; width: 32px; }
  .ach-date { display: none; }

  /* ─── FIFA ───────────────────────────────────────────────── */
  .fifa-section-inner { flex-direction: column; align-items: center; gap: 1.5rem; }
  .fifa-legend { min-width: unset; width: 100%; }

  /* ─── OPINIE ─────────────────────────────────────────────── */
  .opinie-grid { grid-template-columns: 1fr; gap: 1rem; }
  .opinia-card { padding: 1.25rem; }

  /* ─── KONTAKT ────────────────────────────────────────────── */
  .contact-info { padding: 1.25rem; }
  .contact-email { word-break: break-all; font-size: 12px; }
  .contact-info h3 { font-size: 20px; }

  /* ─── FOOTER ─────────────────────────────────────────────── */
  .site-footer { padding: 1.5rem 1.25rem; flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* ═══════════════════════════════════════════════════════════
   MAŁE EKRANY (≤ 380px)
   ═══════════════════════════════════════════════════════════ */
@media(max-width: 380px) {
  .hero h1 { font-size: 48px; }
  .hero-meta-item { font-size: 13px; }
  .stat-num { font-size: 32px; }
  blockquote { font-size: 20px; }
  .tl-club { font-size: 22px; }
  #pitchCanvas { width: 200px; height: 314px; }
}
