/* SoccerLife News — Premium Football Media */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --green: #00C853;
  --green-dark: #009624;
  --green-dim: #00C85322;
  --black: #0a0a0a;
  --surface: #111111;
  --surface2: #1a1a1a;
  --surface3: #222222;
  --border: #2a2a2a;
  --border2: #333333;
  --text: #f0f0f0;
  --text2: #aaaaaa;
  --text3: #666666;
  --red: #FF3B30;
  --amber: #FFB800;
  --white: #ffffff;
  --radius: 6px;
  --radius-lg: 10px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 62px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 2px; }

/* ──── LAYOUT ──── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-sm { padding: 36px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }

/* ──── NAV ──── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px; letter-spacing: 1px;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .accent { color: var(--green); }
.nav-logo .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; margin-right: 2px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text2); padding: 6px 10px; border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-dim); }
.nav-live-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff;
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 4px;
  animation: flash 2s infinite;
}
@keyframes flash { 0%,100%{opacity:1} 50%{opacity:.7} }
.nav-live-badge::before { content:''; width:6px; height:6px; background:#fff; border-radius:50%; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-search-btn {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid var(--border2); color: var(--text2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s; font-size: 15px;
}
.nav-search-btn:hover { border-color: var(--green); color: var(--green); }
.hamburger { display: none; flex-direction: column; gap: 4px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text2); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 16px 20px; z-index: 999; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-cond); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text2); padding: 10px 12px; border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--green); background: var(--green-dim); }
body.nav-open { overflow: hidden; }
.page-body { margin-top: var(--nav-h); }

/* ──── TICKER ──── */
.score-ticker {
  background: var(--surface); border-bottom: 1px solid var(--border);
  overflow: hidden; height: 36px; display: flex; align-items: center;
}
.ticker-label {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--red); color: #fff;
  padding: 0 12px; height: 100%; display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-track { display: flex; animation: ticker 60s linear infinite; gap: 0; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 8px; padding: 0 20px;
  font-family: var(--font-cond); font-size: 13px; font-weight: 600;
  white-space: nowrap; border-right: 1px solid var(--border);
}
.ticker-item .score { color: var(--green); font-weight: 800; }
.ticker-item .live-dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ──── HERO ──── */
.hero-main {
  position: relative; min-height: 90vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-main img.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-main .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.97) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.1) 100%);
}
.hero-main .hero-content {
  position: relative; z-index: 2;
  width: 100%; padding: 60px 20px;
  max-width: 1240px; margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--green); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.hero-eyebrow::before { content:''; display:block; width:24px; height:2px; background:var(--green); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(52px, 8vw, 100px);
  line-height: .95; color: var(--white); margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-title span { color: var(--green); }
.hero-sub { font-size: 18px; color: var(--text2); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ──── BUTTONS ──── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 12px 24px; border-radius: var(--radius);
  transition: all .2s; white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--black); }
.btn-primary:hover { background: #00E060; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.btn-ghost { background: rgba(255,255,255,.07); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #ff5047; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ──── CARDS ──── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--border2); transform: translateY(-2px); }
.card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-tag {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--green);
}
.card-title { font-family: var(--font-cond); font-size: 18px; font-weight: 700; line-height: 1.2; color: var(--white); }
.card-meta { font-size: 12px; color: var(--text3); margin-top: auto; padding-top: 8px; }
.card-lead { font-size: 14px; color: var(--text2); line-height: 1.5; }

/* ──── AFFILIATE CARDS ──── */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.shop-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s;
}
.shop-card:hover { border-color: var(--green); transform: translateY(-2px); }
.shop-icon { font-size: 32px; }
.shop-name { font-family: var(--font-cond); font-size: 17px; font-weight: 700; color: var(--white); }
.shop-desc { font-size: 13px; color: var(--text2); line-height: 1.5; }
.shop-tag {
  display: inline-block; font-size: 10px; font-family: var(--font-cond);
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 3px; background: var(--green-dim); color: var(--green);
}

/* ──── TICKET CARDS ──── */
.ticket-card {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
  transition: border-color .2s;
}
.ticket-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
}
.ticket-card:hover { border-color: var(--green); }
.ticket-match { font-family: var(--font-cond); font-size: 16px; font-weight: 700; color: var(--white); }
.ticket-meta { font-size: 13px; color: var(--text2); }
.ticket-price { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: var(--green); }

/* ──── LIVE SCORE TABLE ──── */
.score-table { width: 100%; border-collapse: collapse; }
.score-table th {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text3);
  padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border);
}
.score-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.score-table tr:hover td { background: var(--surface2); }
.score-table tr:last-child td { border-bottom: none; }
.badge-live { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; }
.badge-ft { display: inline-block; background: var(--surface3); color: var(--text2); font-size: 10px; font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; }
.badge-ns { display: inline-block; background: var(--border2); color: var(--text3); font-size: 10px; font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; }
.score-strong { font-family: var(--font-cond); font-size: 18px; font-weight: 800; color: var(--white); }

/* ──── STANDINGS TABLE ──── */
.standings-table { width: 100%; border-collapse: collapse; }
.standings-table th {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text3);
  padding: 8px 10px; text-align: center; border-bottom: 1px solid var(--border);
}
.standings-table th:first-child, .standings-table th:nth-child(2) { text-align: left; }
.standings-table td { padding: 8px 10px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text); text-align: center; }
.standings-table td:nth-child(2) { text-align: left; font-weight: 600; }
.standings-table tr:hover td { background: var(--surface2); }
.standings-table tr:last-child td { border-bottom: none; }
.pos-num { font-family: var(--font-cond); font-size: 14px; font-weight: 700; color: var(--text3); }
.pos-cl { color: var(--green); }
.pos-eur { color: var(--amber); }
.pos-rel { color: var(--red); }
.pts-bold { font-family: var(--font-cond); font-weight: 800; font-size: 16px; color: var(--white); }

/* ──── SECTION TITLE ──── */
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; gap: 12px; }
.section-title {
  font-family: var(--font-display); font-size: 36px; text-transform: uppercase;
  color: var(--white); letter-spacing: .02em; line-height: 1;
}
.section-title span { color: var(--green); }
.section-more { font-family: var(--font-cond); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text3); transition: color .2s; }
.section-more:hover { color: var(--green); }

/* ──── PANEL ──── */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.panel-title { font-family: var(--font-cond); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text2); margin-bottom: 16px; }

/* ──── TABS ──── */
.tabs { display: flex; gap: 4px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px; width: fit-content; }
.tab-btn {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 7px 16px; border-radius: 4px; color: var(--text2);
  transition: all .2s; cursor: pointer;
}
.tab-btn.active, .tab-btn:hover { background: var(--green); color: var(--black); }

/* ──── FORM ELEMENTS ──── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-cond); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text2); }
.form-input, .form-select, .form-textarea {
  background: var(--surface2); border: 1px solid var(--border2); border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  padding: 12px 16px; outline: none; width: 100%;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ──── AFFILIATE BANNER ──── */
.aff-banner {
  background: linear-gradient(135deg, var(--surface2) 0%, var(--surface3) 100%);
  border: 1px solid var(--border); border-left: 3px solid var(--green);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.aff-banner .aff-logo { font-family: var(--font-display); font-size: 24px; color: var(--green); white-space: nowrap; }
.aff-banner .aff-text { flex: 1; min-width: 200px; }
.aff-banner .aff-text strong { font-family: var(--font-cond); font-size: 16px; display: block; color: var(--white); margin-bottom: 4px; }
.aff-banner .aff-text span { font-size: 13px; color: var(--text2); }

/* ──── HERO MINI ──── */
.hero-mini {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 40px 0 32px;
}
.hero-mini h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase; line-height: .95; color: var(--white); margin-bottom: 10px;
}
.hero-mini h1 span { color: var(--green); }
.hero-mini p { font-size: 16px; color: var(--text2); max-width: 600px; }
.hero-mini .breadcrumb { font-family: var(--font-cond); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text3); margin-bottom: 10px; }
.hero-mini .breadcrumb a:hover { color: var(--green); }

/* ──── FOOTER ──── */
#site-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-family: var(--font-display); font-size: 30px; color: var(--white); margin-bottom: 12px; }
.footer-brand .logo span { color: var(--green); }
.footer-brand p { font-size: 14px; color: var(--text2); line-height: 1.6; max-width: 280px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--surface2); border: 1px solid var(--border2);
  color: var(--text2); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-btn:hover { background: var(--green); border-color: var(--green); color: var(--black); }
.footer-col h4 { font-family: var(--font-cond); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; color: var(--text2); transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text3); }
.footer-bottom a { color: var(--text3); transition: color .2s; }
.footer-bottom a:hover { color: var(--green); }
.footer-disclaimer { font-size: 11px; color: var(--text3); line-height: 1.5; margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; }

/* ──── LOADING STATE ──── */
.loading-state { padding: 80px 20px; text-align: center; color: var(--text2); }
.loading-state h2 { font-family: var(--font-display); font-size: 36px; text-transform: uppercase; margin-bottom: 12px; }

/* ──── PLAYER CARD ──── */
.player-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color .2s, transform .2s;
}
.player-card:hover { border-color: var(--green); transform: translateY(-2px); }
.player-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--surface2); }
.player-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.player-card:hover .player-card-img img { transform: scale(1.04); }
.player-card-body { padding: 14px; }
.player-name { font-family: var(--font-cond); font-size: 18px; font-weight: 700; color: var(--white); }
.player-club { font-size: 12px; color: var(--text2); }
.player-pos { font-family: var(--font-cond); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); }

/* ──── LEAGUE / CLUB CARD ──── */
.entity-card {
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 16px; display: flex; align-items: center; gap: 14px;
  transition: border-color .2s, transform .2s;
}
.entity-card:hover { border-color: var(--green); transform: translateY(-1px); }
.entity-badge {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--surface3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-family: var(--font-display);
}
.entity-name { font-family: var(--font-cond); font-size: 15px; font-weight: 700; color: var(--white); }
.entity-sub { font-size: 12px; color: var(--text2); }

/* ──── TRANSFER ITEM ──── */
.transfer-row td { vertical-align: middle; }
.transfer-status { display: inline-block; font-size: 10px; font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.status-done { background: #00C85322; color: var(--green); }
.status-rumor { background: var(--amber)22; color: var(--amber); }
.status-loan { background: #1a6eff22; color: #4d94ff; }
.status-free { background: var(--surface3); color: var(--text2); }

/* ──── CONTACT PAGE ──── */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { font-size: 20px; width: 44px; height: 44px; background: var(--green-dim); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ──── UTILITY ──── */
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-amber { color: var(--amber); }
.text-muted { color: var(--text2); }
.text-sm { font-size: 13px; }
.fw-700 { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.tag {
  display: inline-block; font-family: var(--font-cond); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 3px; background: var(--surface3); color: var(--text2);
}
.tag-green { background: var(--green-dim); color: var(--green); }
.tag-red { background: #FF3B3022; color: var(--red); }
.tag-amber { background: #FFB80022; color: var(--amber); }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.stack { display: flex; flex-direction: column; gap: 20px; }

/* ──── RESPONSIVE ──── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 48px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 28px; }
}
