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

:root {
  --dark: #060d18;
  --dark-2: #0c1829;
  --dark-3: #132238;
  --green: #00e676;
  --green-dim: #00c853;
  --cyan: #00b0ff;
  --gold: #ffd600;
  --red: #ff3d57;
  --bg: #eef1f6;
  --bg-2: #e4e9f0;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 2px 8px rgba(6, 13, 24, 0.04), 0 8px 32px rgba(6, 13, 24, 0.06);
  --shadow-hover: 0 4px 16px rgba(6, 13, 24, 0.08), 0 20px 48px rgba(6, 13, 24, 0.12);
  --font: "Noto Sans SC", -apple-system, sans-serif;
  --font-display: "Oswald", "Noto Sans SC", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; text-decoration: none; }

/* Live dot */
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
  box-shadow: 0 0 8px var(--green);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--dark);
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 230, 118, 0.15);
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  background: rgba(0, 230, 118, 0.12);
  height: 100%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ticker-track {
  display: flex;
  gap: 56px;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  padding-left: 24px;
}

.ticker-track span {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(6, 13, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s, background 0.3s;
}

.site-header.scrolled {
  background: rgba(6, 13, 24, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-mark.sm { width: 32px; height: 32px; }

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 4px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s;
  position: relative;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a.active {
  color: var(--dark);
  background: var(--green);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== LEAGUE THUMB GRADIENTS ===== */
.thumb-epl { --thumb-c1: #3d0066; --thumb-c2: #9333ea; --thumb-accent: #c084fc; }
.thumb-laliga { --thumb-c1: #991b1b; --thumb-c2: #ea580c; --thumb-accent: #fb923c; }
.thumb-bundesliga { --thumb-c1: #991b1b; --thumb-c2: #dc2626; --thumb-accent: #f87171; }
.thumb-seriea { --thumb-c1: #1e3a5f; --thumb-c2: #0284c7; --thumb-accent: #38bdf8; }
.thumb-ligue1 { --thumb-c1: #1e1b4b; --thumb-c2: #4338ca; --thumb-accent: #818cf8; }
.thumb-ucl { --thumb-c1: #0c1a3a; --thumb-c2: #1d4ed8; --thumb-accent: #60a5fa; }
.thumb-worldcup { --thumb-c1: #14532d; --thumb-c2: #059669; --thumb-accent: #34d399; }
.thumb-football { --thumb-c1: #064e3b; --thumb-c2: #10b981; --thumb-accent: #6ee7b7; }
.thumb-basketball { --thumb-c1: #9a3412; --thumb-c2: #f97316; --thumb-accent: #fdba74; }
.thumb-champion { --thumb-c1: #854d0e; --thumb-c2: #eab308; --thumb-accent: #fde047; }
.thumb-lottery { --thumb-c1: #7f1d1d; --thumb-c2: #ef4444; --thumb-accent: #fca5a5; }
.thumb-platform { --thumb-c1: #4c1d95; --thumb-c2: #8b5cf6; --thumb-accent: #c4b5fd; }
.thumb-trusted { --thumb-c1: #1e3a8a; --thumb-c2: #3b82f6; --thumb-accent: #93c5fd; }
.thumb-op7 { --thumb-c1: #1a0533; --thumb-c2: #6d28d9; --thumb-accent: #c4b5fd; }
.thumb-op7-sport { --thumb-c1: #0c4a6e; --thumb-c2: #0284c7; --thumb-accent: #38bdf8; }
.thumb-op7-ent { --thumb-c1: #701a75; --thumb-c2: #c026d3; --thumb-accent: #e879f9; }
.thumb-op7-live { --thumb-c1: #991b1b; --thumb-c2: #dc2626; --thumb-accent: #fca5a5; }
.thumb-op7-score { --thumb-c1: #14532d; --thumb-c2: #16a34a; --thumb-accent: #86efac; }
.thumb-transfer { --thumb-c1: #78350f; --thumb-c2: #d97706; --thumb-accent: #fbbf24; }
.thumb-national { --thumb-c1: #831843; --thumb-c2: #db2777; --thumb-accent: #f472b6; }
.thumb-tactics { --thumb-c1: #134e4a; --thumb-c2: #0d9488; --thumb-accent: #2dd4bf; }
.thumb-default { --thumb-c1: #0c1829; --thumb-c2: #1e3a5f; --thumb-accent: #00e676; }

/* ===== HERO ===== */
.hero-section {
  padding: 40px 0 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 100%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(0, 176, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero-main {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  background: linear-gradient(145deg, var(--thumb-c1), var(--thumb-c2));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}

.hero-main:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: 0 32px 80px rgba(0, 230, 118, 0.15);
}

.hero-main-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.02) 80px,
      rgba(255, 255, 255, 0.02) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.02) 80px,
      rgba(255, 255, 255, 0.02) 81px
    );
}

.hero-main-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  color: #fff;
}

.hero-labels {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-main h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-excerpt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 600px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}

.hero-main:hover .hero-cta {
  background: #fff;
  transform: translateX(4px);
}

.hero-deco-ball {
  position: absolute;
  right: -20px;
  top: 20px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-deco-ball::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-deco-ball::after {
  content: "⚽";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  opacity: 0.12;
}

/* Hero side */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.side-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-count {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
}

.side-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  flex: 1;
}

.side-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateX(4px);
}

.side-card-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--thumb-c1), var(--thumb-c2));
  position: relative;
  overflow: hidden;
}

.side-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.side-card-body {
  flex: 1;
  min-width: 0;
}

.side-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--thumb-accent, var(--green));
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.side-card-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  margin: 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.side-card-body time {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== SCORES STRIP ===== */
.scores-strip {
  background: var(--dark-2);
  padding: 0 0 40px;
}

.scores-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  overflow-x: auto;
}

.scores-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.score-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.score-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  white-space: nowrap;
}

.score-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.score-item .team {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.score-item .score {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  min-width: 52px;
  text-align: center;
}

/* ===== BADGES ===== */
.category-badge {
  display: inline-block;
  background: var(--green);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-badge.ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
}

.category-badge.large {
  font-size: 0.78rem;
  padding: 6px 14px;
  margin-bottom: 16px;
}

/* ===== SECTIONS ===== */
.news-section {
  padding: 56px 0;
  background: var(--bg);
}

.leagues-section {
  padding: 0 0 72px;
  background: var(--bg);
}

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

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  font-size: 1.4rem;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.section-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.section-more:hover { color: var(--green-dim); }

/* ===== POST CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--text);
}

.card-thumb {
  position: relative;
  height: 180px;
  background: linear-gradient(145deg, var(--thumb-c1), var(--thumb-c2));
  overflow: hidden;
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.thumb-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 21px
  );
}

.card-thumb .category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.thumb-icon {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 3rem;
  opacity: 0.2;
  z-index: 1;
}

.card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.date {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.read-time {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
}

.post-card h2 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.post-card:hover h2 { color: var(--green-dim); }

.summary {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.tag-epl { background: #f3e8ff; color: #7e22ce; }
.tag-laliga { background: #fff7ed; color: #c2410c; }
.tag-bundesliga { background: #fef2f2; color: #dc2626; }
.tag-seriea { background: #eff6ff; color: #2563eb; }
.tag-ucl { background: #eff6ff; color: #1d4ed8; }
.tag-transfer { background: #fffbeb; color: #d97706; }
.tag-tactics { background: #f0fdfa; color: #0d9488; }
.tag-football { background: #ecfdf5; color: #059669; }
.tag-basketball { background: #fff7ed; color: #ea580c; }
.tag-worldcup { background: #f0fdf4; color: #16a34a; }
.tag-champion { background: #fefce8; color: #ca8a04; }
.tag-lottery { background: #fef2f2; color: #dc2626; }
.tag-platform { background: #f5f3ff; color: #7c3aed; }
.tag-trusted { background: #eff6ff; color: #2563eb; }
.tag-op7 { background: #f5f3ff; color: #6d28d9; }
.tag-op7-sport { background: #eff6ff; color: #0284c7; }
.tag-op7-ent { background: #fdf4ff; color: #c026d3; }
.tag-op7-live { background: #fef2f2; color: #dc2626; }
.tag-op7-score { background: #f0fdf4; color: #16a34a; }
.tag-national { background: #fdf2f8; color: #db2777; }
.tag-default { background: #f0fdf4; color: #059669; }

.card-arrow {
  color: var(--green-dim);
  display: flex;
  transition: transform 0.25s;
}

.post-card:hover .card-arrow { transform: translateX(5px); }

/* ===== LEAGUE CARDS ===== */
.league-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.league-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  color: #fff;
  overflow: hidden;
  min-height: 140px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.league-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.league-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.league-card:hover .league-bg { opacity: 1; }

.league-epl .league-bg { background: linear-gradient(145deg, #2d0052, #7c3aed); }
.league-laliga .league-bg { background: linear-gradient(145deg, #9a0007, #f97316); }
.league-ucl .league-bg { background: linear-gradient(145deg, #0a1628, #1e40af); }
.league-bundesliga .league-bg { background: linear-gradient(145deg, #7f0012, #ef4444); }
.league-seriea .league-bg { background: linear-gradient(145deg, #0c2340, #0284c7); }
.league-transfer .league-bg { background: linear-gradient(145deg, #713f12, #f59e0b); }
.league-op7-sport .league-bg { background: linear-gradient(145deg, #0c4a6e, #0284c7); }
.league-op7-live .league-bg { background: linear-gradient(145deg, #991b1b, #ef4444); }
.league-op7-score .league-bg { background: linear-gradient(145deg, #14532d, #22c55e); }
.league-op7-ent .league-bg { background: linear-gradient(145deg, #701a75, #d946ef); }

.league-icon { font-size: 1.6rem; position: relative; z-index: 1; margin-bottom: 8px; }
.league-name { font-size: 0.62rem; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; position: relative; z-index: 1; }
.league-cn { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; position: relative; z-index: 1; margin-top: 2px; }
.league-arrow { position: absolute; bottom: 12px; right: 14px; opacity: 0; transform: translateX(-8px); transition: all 0.25s; font-size: 0.9rem; z-index: 1; }
.league-card:hover .league-arrow { opacity: 1; transform: translateX(0); }

/* ===== PAGE HEADER ===== */
/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-list a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--border);
  user-select: none;
}

.breadcrumb-current {
  color: var(--text);
  font-weight: 500;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-header {
  background: var(--dark);
  color: #fff;
  padding: 56px 0;
}

.page-header h1 { font-size: 2rem; font-weight: 900; }
.page-header p { color: rgba(255, 255, 255, 0.6); margin-top: 8px; }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  position: relative;
  padding: 64px 0 48px;
  color: #fff;
  background: linear-gradient(145deg, var(--thumb-c1), var(--thumb-c2));
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 61px),
    linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

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

.article-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.35;
  max-width: 820px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.meta-dot { opacity: 0.4; }

.article-wrap { padding-bottom: 64px; }

.article-body {
  background: var(--card);
  border-radius: var(--radius);
  padding: 48px 56px;
  margin-top: -32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.article-tags { margin-bottom: 28px; }
.article-tags .tag { text-decoration: none; }

.article-lead {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.85;
  padding: 24px 28px;
  margin-bottom: 36px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 500;
}

.content { font-size: 1.06rem; }
.content h2 {
  margin: 40px 0 16px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-2);
}
.content h3 { margin: 28px 0 12px; font-size: 1.1rem; font-weight: 700; }
.content p { margin-bottom: 20px; }
.content ul, .content ol { margin: 0 0 20px 28px; }
.content blockquote {
  border-left: 4px solid var(--green);
  padding: 16px 24px;
  margin: 24px 0;
  background: #f0fdf4;
  color: #166534;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.content th, .content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}
.content th { background: var(--bg); font-weight: 700; }

.related-posts {
  margin-top: 56px;
}

.related-posts h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s, gap 0.2s;
}

.back-link:hover { color: var(--green-dim); gap: 12px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.page-btn {
  background: var(--dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s;
}

.page-btn:hover {
  background: var(--green);
  color: var(--dark);
  transform: translateY(-2px);
}

.page-info { color: var(--muted); font-size: 0.88rem; }

/* ===== FOOTER ===== */
.site-footer { margin-top: auto; }

.footer-top {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 320px; }

.footer-social {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner p { margin: 0; }

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--accent, #00e676);
}

main { flex: 1; }

/* ===== KEYWORDS ===== */
.keywords-section {
  padding: 0 0 72px;
  background: var(--bg);
}

.keyword-group {
  margin-bottom: 28px;
}

.keyword-group-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.25s;
}

.keyword-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green);
  color: var(--green-dim);
}

.pill-football { border-left: 3px solid #10b981; }
.pill-basketball { border-left: 3px solid #f97316; }
.pill-worldcup { border-left: 3px solid #059669; }
.pill-champion { border-left: 3px solid #eab308; }
.pill-lottery { border-left: 3px solid #ef4444; }
.pill-platform { border-left: 3px solid #8b5cf6; }
.pill-trusted { border-left: 3px solid #3b82f6; }
.pill-op7 { border-left: 3px solid #6d28d9; font-weight: 700; }
.pill-op7-sport { border-left: 3px solid #0284c7; font-weight: 700; }
.pill-op7-ent { border-left: 3px solid #c026d3; font-weight: 700; }
.pill-op7-live { border-left: 3px solid #dc2626; font-weight: 700; }
.pill-op7-score { border-left: 3px solid #16a34a; font-weight: 700; }
.pill-epl { border-left: 3px solid #9333ea; }
.pill-laliga { border-left: 3px solid #ea580c; }
.pill-ucl { border-left: 3px solid #1d4ed8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1 1 calc(50% - 6px); }
  .league-cards { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  }

  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; }
  .logo-sub { display: none; }

  .hero-main { min-height: 360px; }
  .hero-main-content { min-height: 360px; padding: 28px; }
  .hero-side { flex-direction: column; }
  .side-card { flex: none; }

  .scores-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .score-items { flex-wrap: wrap; gap: 8px; }
  .score-divider { display: none; }
  .score-item { padding: 4px 0; }

  .news-grid { grid-template-columns: 1fr; }
  .league-cards { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .article-body { padding: 28px 22px; }
}

/* ===== REDIRECT BANNER ===== */
.redirect-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #0a1628 0%, #0d2137 100%);
  border-top: 1px solid rgba(0, 230, 118, 0.35);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  animation: redirectSlideUp 0.35s ease-out;
}

@keyframes redirectSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.redirect-banner-inner {
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.redirect-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
}

.redirect-text strong {
  color: var(--accent, #00e676);
  font-weight: 700;
  min-width: 1ch;
}

.redirect-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.redirect-go {
  padding: 8px 18px;
  background: var(--accent, #00e676);
  color: #060d18;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 6px;
  text-decoration: none;
  transition: filter 0.2s;
}

.redirect-go:hover {
  filter: brightness(1.08);
}

.redirect-cancel {
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.redirect-cancel:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

@media (max-width: 640px) {
  .redirect-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .redirect-actions {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== TRUST PAGES ===== */
.trust-page {
  padding: 48px 0 80px;
}

.trust-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8ecf0);
  border-radius: 12px;
  padding: 40px 44px;
  line-height: 1.85;
  color: var(--text, #1a1a2e);
}

.trust-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--dark, #060d18);
}

.trust-content h2:first-child {
  margin-top: 0;
}

.trust-content p,
.trust-content li {
  color: var(--muted, #5a6478);
  margin-bottom: 12px;
}

.trust-content ul,
.trust-content ol {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.trust-content a {
  color: var(--accent, #00a854);
  text-decoration: none;
}

.trust-content a:hover {
  text-decoration: underline;
}

.trust-content strong {
  color: var(--text, #1a1a2e);
}

@media (max-width: 640px) {
  .trust-content {
    padding: 28px 22px;
  }
}
