/* =============================================
   90MinFootball — Main Stylesheet
   OneFootball-inspired design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; }

/* --- BASE --- */
body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  background: #000;
  padding: 0 28px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #1c1c1c;
}

.nav-left { display: flex; align-items: center; gap: 28px; }

.logo {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.logo span { color: #e63946; }

.nav-links { display: flex; gap: 2px; }

.nl {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  padding: 7px 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  position: relative;
  display: block;
  white-space: nowrap;
}
.nl:hover { color: #fff; background: #111; }
.nl.active { color: #fff; }
.nl.has-drop::after { content: ' ▾'; font-size: 9px; opacity: 0.6; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 6px;
  min-width: 190px;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
.dropdown a:hover { background: #222; color: #fff; }
.nl.has-drop:hover .dropdown { display: block; }

.nav-right { display: flex; align-items: center; gap: 10px; }

.nav-icon-btn {
  background: none;
  border: none;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.nav-icon-btn:hover { background: #1a1a1a; color: #fff; }
.nav-icon-btn svg { stroke: currentColor; }

.btn-signin {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
}
.btn-signin:hover { background: #111; color: #fff; }

.btn-join {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 7px 18px;
  border-radius: 8px;
  border: 1.5px solid #333;
  background: none;
  transition: background 0.15s, border-color 0.15s;
  display: inline-block;
}
.btn-join:hover { background: #fff; color: #000; border-color: #fff; }

/* =============================================
   LIVE SCORES STRIP
   ============================================= */
.scores-strip {
  background: #000;
  border-bottom: 1px solid #1c1c1c;
  padding: 10px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.scores-strip::-webkit-scrollbar { display: none; }

.scores-inner {
  display: flex;
  gap: 8px;
  width: max-content;
}

.score-pill {
  background: #111;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 180px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.score-pill:hover { background: #1a1a1a; }

.sp-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.sp-team {
  font-size: 12px;
  font-weight: 600;
  color: #ccc;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-team:last-child { text-align: right; }
.sp-scores {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.sp-score { font-size: 15px; font-weight: 800; color: #fff; min-width: 14px; text-align: center; }
.sp-score.bold { color: #fff; }
.sp-divider { font-size: 13px; color: #444; }
.sp-vs { font-size: 11px; font-weight: 600; color: #555; }
.sp-status {
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  margin-top: 7px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.sp-status.live-dot { color: #e63946; }
.sp-status.live-dot::before {
  content: '● ';
  font-size: 8px;
}
.sp-status.ended { color: #555; }
.sp-status.soon { color: #4a9eff; }

/* Scorer names below FT pills */
.sp-scorers-line {
  font-size: 9.5px; color: #555; text-align: center;
  margin-top: 4px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  max-width: 168px; letter-spacing: 0.2px;
}

/* =============================================
   BREAKING TICKER
   ============================================= */
.ticker {
  background: #e63946;
  padding: 7px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}
.ticker-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.2);
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-anim 1.5s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-items {
  display: flex;
  gap: 40px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.96);
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}
.t-sep { color: rgba(255,255,255,0.4); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   LAYOUT
   ============================================= */
.main-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 60px;
}

.section {
  margin-bottom: 40px;
}

.section-head {
  margin-bottom: 18px;
}
.section-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 13px;
  color: #555;
  margin-top: 3px;
}
.see-all {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  float: right;
  margin-top: 2px;
  transition: color 0.15s;
}
.see-all:hover { color: #fff; }

/* =============================================
   LEAGUE / CATEGORY TAGS
   ============================================= */
.league-tag, .card-league-tag, .wc-tag, .tc-league, .tsc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.pl  { background: rgba(56,0,60,0.9);  color: #c89bff; }
.ll  { background: rgba(255,69,0,0.9);  color: #fff; }
.ucl { background: rgba(7,29,73,0.9);   color: #7eb0ff; }
.tr  { background: rgba(0,80,60,0.9);   color: #52d68a; }
.lm  { background: rgba(100,0,0,0.9);   color: #ff9a9a; }
.bl  { background: rgba(0,40,80,0.9);   color: #7ec8ff; }
.confirmed-tag { background: rgba(0,120,60,0.9); color: #52d68a; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 6px; display: inline-block; }

/* =============================================
   SOURCE AVATAR
   ============================================= */
.source-avatar, .src-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}
.source-avatar.red, .src-av.red { background: #e63946; }
.src-av.small { width: 22px; height: 22px; font-size: 9px; }

.source-name, .src-info { font-size: 12px; color: #666; font-weight: 500; }
.source-dot { color: #333; }
.source-time { font-size: 12px; color: #555; }

/* =============================================
   BOOKMARK BUTTON
   ============================================= */
.bookmark-btn, .bk-btn {
  background: none;
  border: none;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.15s;
  flex-shrink: 0;
}
.bookmark-btn:hover, .bk-btn:hover { color: #fff; }
.bookmark-btn svg, .bk-btn svg { stroke: currentColor; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section { margin-bottom: 40px; }

/* =============================================
   HERO CAROUSEL
   ============================================= */
.hero-carousel-section {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
  height: 400px;
}

.hc-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hc-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 400px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.hc-slide-img-wrap {
  position: relative;
  overflow: hidden;
}
.hc-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.hc-slide:hover .hc-slide-img { transform: scale(1.03); }
.hc-slide-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, #111 100%);
  pointer-events: none;
}
.hc-slide-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.hc-slide-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.hc-slide-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}
.hc-slide-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}
.hc-slide-title {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.hc-slide-excerpt {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hc-slide-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #555;
}

/* Loading state */
.hc-loading {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc-loading-inner { color: #444; font-size: 14px; }

/* Arrow buttons */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid #333;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.15s, border-color 0.15s;
  backdrop-filter: blur(4px);
}
.hc-arrow:hover { background: rgba(230,57,70,0.85); border-color: #e63946; }
.hc-prev { left: 16px; }
.hc-next { right: 16px; }

/* Dot indicators */
.hc-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.hc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.hc-dot.active {
  background: #e63946;
  transform: scale(1.3);
}

.hero-card {
  display: grid;
  grid-template-columns: 58% 42%;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
  transition: background 0.15s;
}
.hero-card:hover { background: #161616; }

.hero-img-wrap {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #111 100%);
  pointer-events: none;
}
.hero-badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.hero-content {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.hero-source {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-text { flex: 1; }
.hero-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.hero-excerpt {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}
.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.read-time { font-size: 12px; color: #555; }

/* =============================================
   4-COLUMN GRID
   ============================================= */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.card {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.15s, transform 0.15s;
  cursor: pointer;
}
.card:hover { background: #161616; transform: translateY(-2px); }

.card-img-wrap {
  position: relative;
  height: 160px;
  flex-shrink: 0;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card:hover .card-img { transform: scale(1.03); }
.card-league-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.card-title.small { font-size: 13px; }
.card-source {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-source .src-info { flex: 1; }

/* =============================================
   TRANSFER CARDS (dynamic)
   ============================================= */
.xfer-card {
  display: block;
  background: #111;
  border-radius: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
  transition: background 0.12s;
  cursor: pointer;
  text-decoration: none;
}
.xfer-card:hover { background: #161616; }
.xfer-card:last-child { border-bottom: none; }
.xfer-headline { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.xfer-meta-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.xfer-source { font-size: 11px; font-weight: 700; }
.xfer-time { font-size: 11px; color: #555; }
.xfer-reliability-wrap { display: flex; align-items: center; gap: 8px; }
.xfer-bar-track { flex: 1; height: 4px; background: #1a1a1a; border-radius: 4px; overflow: hidden; }
.xfer-bar-fill { height: 100%; border-radius: 4px; transition: width 0.6s; }
.xfer-pct { font-size: 10px; font-weight: 700; white-space: nowrap; }

/* Competition icon with real logo */
.comp-icon img { width: 32px; height: 32px; object-fit: contain; }
.team-badge img { width: 38px; height: 38px; object-fit: contain; }

/* =============================================
   WIDE 2-COLUMN CARDS
   ============================================= */
.grid-2-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wide-card {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42% 58%;
  transition: background 0.15s;
  cursor: pointer;
  min-height: 140px;
}
.wide-card:hover { background: #161616; }

.wc-img-wrap {
  position: relative;
  overflow: hidden;
}
.wc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.wide-card:hover .wc-img { transform: scale(1.04); }

.wc-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.wc-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  flex: 1;
}
.wc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wc-source { display: flex; align-items: center; gap: 7px; }

/* =============================================
   COMPETITIONS GRID
   ============================================= */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.comp-card {
  background: #111;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.comp-card:hover { background: #1a1a1a; }

.comp-icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 10px;
}
.comp-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.comp-label {
  font-size: 10px;
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comp-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.comp-arrow { color: #444; flex-shrink: 0; stroke: currentColor; }

/* =============================================
   TEAMS GRID
   ============================================= */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.team-card {
  background: #111;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.team-card:hover { background: #1a1a1a; }

.team-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.team-badge.barca  { background: linear-gradient(135deg, #a50044, #004d98); color: #fff; }
.team-badge.rm     { background: linear-gradient(135deg, #fff9e6, #f5d062); color: #1a1a00; }
.team-badge.manu   { background: linear-gradient(135deg, #da020d, #8b0000); color: #fff; }
.team-badge.mci    { background: linear-gradient(135deg, #6cabdd, #1c2d5e); color: #fff; }
.team-badge.lfc    { background: linear-gradient(135deg, #c8102e, #00b2a9); color: #fff; }
.team-badge.che    { background: linear-gradient(135deg, #034694, #001f5b); color: #fff; }

.team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.team-label {
  font-size: 10px;
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.team-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* =============================================
   TRANSFER TRACKER
   ============================================= */
.transfers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.transfer-hero {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: background 0.15s;
}
.th-img-wrap {
  position: absolute;
  inset: 0;
}
.th-img { width: 100%; height: 100%; object-fit: cover; }
.th-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.th-body {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.th-tag { margin-bottom: 10px; }
.th-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}
.th-meta { font-size: 12px; color: #666; }

.transfer-list {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
}
.transfer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #1a1a1a;
  transition: background 0.12s;
  cursor: pointer;
}
.transfer-item:last-child { border-bottom: none; }
.transfer-item:hover { background: #161616; }
.confirmed-item { }

.ti-left { display: flex; align-items: center; gap: 12px; }
.ti-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.ti-info { }
.ti-name { font-size: 13px; font-weight: 700; color: #fff; }
.ti-clubs { font-size: 11px; color: #555; margin-top: 2px; }
.ti-arrow { color: #e63946; margin: 0 4px; }

.ti-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.ti-fee {
  font-size: 12px;
  font-weight: 700;
  color: #e63946;
}
.ti-fee.rumour { color: #f39c12; }
.ti-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ti-status.done { color: #52d68a; }
.ti-status.rumour-st { color: #f39c12; }

/* =============================================
   TOPIC SECTION (Premier League, etc.)
   ============================================= */
.topic-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.topic-hero-card {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.tc-img-wrap { position: absolute; inset: 0; }
.tc-img { width: 100%; height: 100%; object-fit: cover; }
.tc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.tc-body {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.tc-league { margin-bottom: 10px; }
.tc-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 12px;
}
.tc-source { display: flex; align-items: center; gap: 8px; }

.topic-side { display: flex; flex-direction: column; gap: 10px; }

.topic-small-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr;
  cursor: pointer;
  transition: background 0.15s;
  flex: 1;
}
.topic-small-card:hover { background: #161616; }
.tsc-img { position: relative; overflow: hidden; }
.tsc-img img { width: 100%; height: 100%; object-fit: cover; }
.tsc-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.tsc-tag { }
.tsc-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.tsc-meta { font-size: 11px; color: #555; }

/* =============================================
   BARCELONA HERO CARD
   ============================================= */
.barca-hero-card {
  display: grid;
  grid-template-columns: 58% 42%;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.barca-hero-card:hover { background: #161616; }

.bhc-img-wrap { position: relative; overflow: hidden; }
.bhc-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.barca-hero-card:hover .bhc-img { transform: scale(1.03); }
.bhc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #111 100%);
}

.bhc-text {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.bhc-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  letter-spacing: -0.2px;
}
.bhc-source { display: flex; align-items: center; gap: 8px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1c1c1c;
  padding: 48px 24px 24px;
  margin-top: 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.footer-logo span { color: #e63946; }
.footer-desc {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px;
  height: 34px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  transition: background 0.15s, color 0.15s;
}
.social-btn:hover { background: #2a2a2a; color: #fff; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: #444;
  transition: color 0.15s;
}
.footer-links a:hover { color: #ccc; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: #333; }

/* =============================================
   ARTICLE PAGE
   ============================================= */
.article-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.article-main { min-width: 0; }
.article-sidebar { }

.article-crumbs {
  font-size: 12px;
  color: #555;
  margin-bottom: 20px;
}
.article-crumbs a { color: #555; transition: color 0.15s; }
.article-crumbs a:hover { color: #fff; }
.article-crumbs span { color: #333; margin: 0 6px; }

.article-tag { margin-bottom: 14px; }

.article-title {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.article-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 28px;
}
.article-meta-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-meta-time { font-size: 12px; color: #555; }
.article-meta-read { font-size: 12px; color: #555; }

.article-hero-img {
  width: 100%;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-caption {
  font-size: 12px;
  color: #444;
  margin-top: 8px;
  margin-bottom: 32px;
  text-align: center;
}

.article-body {
  font-size: 17px;
  color: #bbb;
  line-height: 1.85;
}
.article-body p { margin-bottom: 22px; }
.article-body h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 12px;
}
.article-body strong { color: #fff; font-weight: 700; }
.article-body blockquote {
  border-left: 3px solid #e63946;
  padding: 16px 20px;
  background: #111;
  border-radius: 0 10px 10px 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 18px;
  color: #999;
  line-height: 1.7;
}
.article-body hr {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 36px 0;
}

/* Sidebar widgets */
.sidebar-widget {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.sidebar-widget-head {
  padding: 14px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.sidebar-related { }
.sidebar-related-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  transition: background 0.12s;
}
.sidebar-related-item:last-child { border-bottom: none; }
.sidebar-related-item:hover { background: #161616; }
.sri-img { height: 70px; overflow: hidden; position: relative; }
.sri-img img { width: 100%; height: 100%; object-fit: cover; }
.sri-body { padding: 10px 12px; display: flex; flex-direction: column; justify-content: center; }
.sri-title { font-size: 12px; font-weight: 700; color: #ddd; line-height: 1.35; margin-bottom: 4px; }
.sri-meta { font-size: 11px; color: #555; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-img-wrap { height: 240px; }
  .hero-img-overlay { background: linear-gradient(to top, #111 0%, transparent 100%); }
  .barca-hero-card { grid-template-columns: 1fr; }
  .hero-carousel-section { height: 520px; }
  .hc-slide { grid-template-columns: 1fr; }
  .hc-slide-img-wrap { height: 220px; }
  .hc-slide-img-overlay { background: linear-gradient(to top, #111 0%, transparent 100%); }
  .hc-slide-body { padding: 18px; }
  .hc-slide-title { font-size: 17px; }
  .hc-arrow { width: 36px; height: 36px; }
  .hc-prev { left: 8px; }
  .hc-next { right: 8px; }
  .bhc-img-wrap { height: 200px; }
  .transfers-layout { grid-template-columns: 1fr; }
  .topic-layout { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .grid-2-wide { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .main-wrap { padding: 20px 16px 40px; }
  .scores-strip { padding: 10px 16px; }
  .ticker { padding: 7px 16px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .comp-grid { grid-template-columns: 1fr 1fr; }
  .teams-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 32px 16px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
