/* =============================================
   SPORTAI — STYLESHEET PRINCIPAL
   Thème : Editorial sombre, rouge/noir, Bebas Neue
   ============================================= */

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

:root {
  --red: #D62828;
  --red-dark: #A01E1E;
  --red-light: #FEF0F0;
  --gold: #F4A523;
  --gold-dark: #B87A10;
  --dark: #0D0D0D;
  --dark2: #1A1A1A;
  --dark3: #2A2A2A;
  --mid: #444;
  --light: #F5F3EE;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #666;
  --text-light: #999;
  --border: rgba(0,0,0,0.1);
  --border-dark: rgba(255,255,255,0.12);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 0;
  overflow: hidden;
}
.topbar-inner {
  display: flex; gap: 24px; align-items: center;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.sep { opacity: 0.3; }

/* ---- HEADER ---- */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 14px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--dark);
  flex-shrink: 0;
}
.logo span { color: var(--red); }

.main-nav { display: flex; gap: 4px; flex: 1; }
.main-nav a {
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.15s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); background: var(--light); }
.main-nav .nav-premium { color: var(--gold-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-premium {
  background: var(--red);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-premium:hover { background: var(--red-dark); }

.menu-toggle { display: none; background: none; font-size: 22px; padding: 4px; }

/* ---- BUTTONS ---- */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  transition: all 0.15s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ---- LIVE DOT ---- */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 6px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ---- HERO ---- */
.hero {
  background: var(--dark);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex; align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative; z-index: 2;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-cta .btn-outline { color: white; border-color: rgba(255,255,255,0.3); }
.hero-cta .btn-outline:hover { border-color: white; }

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hstat { display: flex; flex-direction: column; }
.hstat strong { font-family: var(--font-display); font-size: 2rem; letter-spacing: 1px; }
.hstat span { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }

.hero-bg-text {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22vw;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -5px;
}

/* ---- AD BANNER ---- */
.ad-banner { margin: 24px auto; }
.ad-inner {
  background: #FFF8EC;
  border: 1px solid #F4A523;
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.ad-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  border: 1px solid #ddd;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.ad-content { font-size: 14px; flex: 1; }
.ad-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s;
}
.ad-cta:hover { background: var(--gold-dark); color: white; }

/* ---- SECTIONS ---- */
.section { padding: 60px 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--dark);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 1px;
}
.section-tag { font-size: 12px; color: var(--text-muted); }
.see-all { font-size: 13px; font-weight: 500; color: var(--red); }
.see-all:hover { text-decoration: underline; }

/* ---- FEATURED GRID ---- */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}
.card-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid var(--border);
}
.card-featured:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card-img {
  height: 280px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.card-img-football { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%); }
.card-img-basket { background: linear-gradient(135deg, #1a0000 0%, #3d0000 50%, #6b0000 100%); }
.card-img-tennis { background: linear-gradient(135deg, #0d2b12 0%, #1a4a2e 50%, #2d6e47 100%); }
.card-img-f1 { background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 50%, #6b2d00 100%); }
.card-img-rugby { background: linear-gradient(135deg, #0a1a0d 0%, #1a3d21 50%, #2d6b35 100%); }

/* Decorative sport icons */
.card-img::before {
  content: attr(data-sport);
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 5rem;
  opacity: 0.15;
}

.card-img-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 14px;
}
.sport-tag {
  font-size: 11px; font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 0.5px;
}
.sport-tag.football { background: rgba(214,40,40,0.9); color: white; }
.sport-tag.basket { background: rgba(244,165,35,0.9); color: #1a1a1a; }
.sport-tag.tennis { background: rgba(45,110,71,0.9); color: white; }
.sport-tag.f1 { background: rgba(107,45,0,0.9); color: white; }
.sport-tag.rugby { background: rgba(45,107,53,0.9); color: white; }

.ia-tag {
  font-size: 10px; font-weight: 700;
  background: rgba(214,40,40,0.9);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.card-body { padding: 20px; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }

.side-articles { display: flex; flex-direction: column; gap: 16px; }
.card-side {
  display: flex; gap: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.card-side:hover { border-color: var(--red); box-shadow: var(--shadow); }
.card-side-img {
  width: 100px; min-width: 100px; height: 90px;
  border-radius: var(--radius) 0 0 var(--radius);
}
.card-side-body { padding: 12px 12px 12px 0; flex: 1; }
.card-side-body .sport-tag { display: inline-block; margin-bottom: 6px; }
.card-side-body h4 { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }

.card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.view-count { color: var(--red); font-weight: 500; }

/* ---- ARTICLES GRID ---- */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.article-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow); }
.article-card-img { height: 160px; }
.article-card-body { padding: 16px; }
.article-card-body h4 { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.1; margin-bottom: 8px; letter-spacing: 0.5px; }
.article-card-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.4; }
.load-more { text-align: center; }

/* ---- PRONOSTICS PROMO ---- */
.prono-promo {
  background: var(--dark);
  padding: 80px 0;
  color: white;
}
.prono-promo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.prono-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.prono-promo-text h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 16px;
}
.prono-promo-text p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.6; font-weight: 300; }
.prono-perf { display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap; }
.perf-stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); }
.perf-stat span { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }

.prono-promo-cards { display: flex; flex-direction: column; gap: 12px; }
.mini-prono {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  transition: border-color 0.2s;
}
.mini-prono:hover { border-color: rgba(255,255,255,0.25); }
.mp-match { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.5px; margin-bottom: 4px; }
.mp-sport { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.mp-pred { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pred-badge {
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 5px;
  letter-spacing: 0.5px;
}
.pred-badge.green { background: rgba(59,109,17,0.8); color: white; }
.pred-badge.orange { background: rgba(244,165,35,0.8); color: #1a1a1a; }
.pred-badge.red { background: rgba(214,40,40,0.7); color: white; }
.pred-conf { font-size: 12px; color: rgba(255,255,255,0.5); }
.mp-cote { font-size: 13px; color: rgba(255,255,255,0.6); }
.mp-cote strong { color: var(--gold); }
.bookie-link { color: var(--gold); font-weight: 600; margin-left: 4px; }
.bookie-link:hover { text-decoration: underline; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: var(--light);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.newsletter-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.newsletter-inner h2 { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 1px; margin-bottom: 12px; }
.newsletter-inner p { font-size: 16px; color: var(--text-muted); margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto 12px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px;
  outline: none; transition: border-color 0.15s;
}
.newsletter-form input:focus { border-color: var(--red); }
.nl-sub { font-size: 12px; color: var(--text-light); }

/* ---- PREMIUM CTA ---- */
.premium-cta-section {
  background: var(--dark2);
  padding: 80px 0;
  color: white;
}
.premium-cta-inner { text-align: center; }
.prem-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
  letter-spacing: 1px; margin-bottom: 20px;
}
.premium-cta-inner h2 {
  font-family: var(--font-display);
  font-size: 3rem; letter-spacing: 1px;
  margin-bottom: 36px;
}
.premium-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; max-width: 700px; margin: 0 auto 40px;
}
.pf {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.pf span { color: var(--gold); font-weight: 700; }
.premium-pricing { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-align: center;
  min-width: 200px;
  transition: border-color 0.2s;
}
.price-card:hover { border-color: rgba(255,255,255,0.4); }
.price-card.featured-price { border-color: var(--gold); position: relative; }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 20px; letter-spacing: 0.5px; white-space: nowrap;
}
.price-name { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.price-amount { font-family: var(--font-display); font-size: 2.5rem; letter-spacing: 1px; margin-bottom: 6px; }
.price-amount span { font-size: 1rem; color: rgba(255,255,255,0.4); font-family: var(--font-body); }
.price-save { font-size: 12px; color: var(--gold); margin-bottom: 16px; }
.price-card .btn-red { width: 100%; text-align: center; margin-top: 8px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-size: 1.8rem; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a { font-size: 12px; padding: 5px 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: 5px; transition: all 0.15s; }
.footer-social a:hover { border-color: rgba(255,255,255,0.5); color: white; }
.footer-links h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(0,0,0,0.08); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 16px; cursor: pointer; transition: background 0.15s;
}
.modal-close:hover { background: rgba(0,0,0,0.15); }

/* ---- PRONOSTICS PAGE ---- */
.page-hero {
  background: var(--dark);
  color: white;
  padding: 60px 0 40px;
}
.page-hero h1 { font-family: var(--font-display); font-size: 3.5rem; letter-spacing: 2px; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 300; }

.prono-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.prono-card-full {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
}
.prono-card-full:hover { border-color: var(--red); box-shadow: var(--shadow); }
.prono-card-full.premium-locked { opacity: 0.7; position: relative; overflow: hidden; }
.prono-card-full.premium-locked::after {
  content: '⭐ Premium requis';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--gold-dark);
}
.prono-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 16px; }
.prono-match-big { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.5px; }
.prono-league { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.prono-time { font-size: 13px; font-weight: 500; color: var(--red); }
.prono-analysis { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.prono-odds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.odd-box {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}
.odd-box:hover { border-color: var(--red); }
.odd-box.selected { border-color: var(--red); background: var(--red-light); }
.odd-box .odd-team { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.odd-box .odd-value { font-size: 1.1rem; font-weight: 700; }
.prono-prediction { display: flex; align-items: center; justify-content: space-between; }
.prono-confidence { font-size: 13px; color: var(--text-muted); }
.conf-bar { height: 6px; border-radius: 3px; background: #eee; margin-top: 4px; overflow: hidden; }
.conf-fill { height: 6px; background: var(--red); border-radius: 3px; }
.prono-btn { background: var(--red); color: white; padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.15s; border: none; }
.prono-btn:hover { background: var(--red-dark); }

/* ---- PREMIUM PAGE ---- */
.premium-hero { background: linear-gradient(135deg, var(--dark) 0%, #2a0808 100%); color: white; padding: 80px 0; text-align: center; }
.premium-hero h1 { font-family: var(--font-display); font-size: 4rem; letter-spacing: 2px; margin-bottom: 16px; }
.premium-hero h1 span { color: var(--gold); }
.premium-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 40px; font-weight: 300; }

.plans-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin: 48px 0; }
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.plan-card.featured { border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,40,40,0.1); }
.plan-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: white; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.plan-name { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 1px; margin-bottom: 8px; }
.plan-price { font-size: 2.5rem; font-weight: 700; margin-bottom: 4px; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.plan-period { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.plan-features li:last-child { border-bottom: none; }
.plan-features .check { color: var(--red); font-weight: 700; }
.plan-features .cross { color: #ccc; }
.plan-card .btn-red, .plan-card .btn-outline { display: block; text-align: center; width: 100%; }

/* ---- ADMIN PAGE ---- */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--dark); color: white; padding: 0; }
.admin-sidebar-logo { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-menu { padding: 16px 0; }
.admin-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s; cursor: pointer;
}
.admin-menu a:hover, .admin-menu a.active { background: rgba(255,255,255,0.08); color: white; }
.admin-menu a .menu-icon { font-size: 18px; width: 22px; }
.admin-main { background: var(--light); padding: 32px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-header h1 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 1px; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.admin-stat {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
}
.admin-stat .as-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.admin-stat .as-value { font-family: var(--font-display); font-size: 2rem; margin-bottom: 4px; }
.admin-stat .as-change { font-size: 12px; color: #3B6D11; }

.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 24px; }
.admin-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; }

.gen-form { display: flex; flex-direction: column; gap: 12px; }
.gen-form select, .gen-form input {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.15s;
  background: white;
}
.gen-form select:focus, .gen-form input:focus { border-color: var(--red); }
.gen-form .btn-red { width: 100%; text-align: center; padding: 12px; font-size: 15px; }

.revenue-table { width: 100%; border-collapse: collapse; }
.revenue-table th { font-size: 12px; font-weight: 600; text-align: left; color: var(--text-muted); padding: 8px 12px; border-bottom: 1.5px solid var(--border); text-transform: uppercase; letter-spacing: 0.5px; }
.revenue-table td { padding: 12px; font-size: 14px; border-bottom: 1px solid var(--border); }
.revenue-table tr:last-child td { border-bottom: none; }
.rev-green { color: #3B6D11; font-weight: 600; }

.article-list-admin { display: flex; flex-direction: column; gap: 10px; }
.article-list-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--light);
  font-size: 13px;
}
.ali-status { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ali-title { flex: 1; font-weight: 500; }
.ali-views { color: var(--text-muted); }
.ali-actions { display: flex; gap: 6px; }
.ali-btn { padding: 4px 10px; border: 1px solid var(--border); border-radius: 5px; font-size: 12px; background: white; cursor: pointer; transition: all 0.15s; }
.ali-btn:hover { border-color: var(--red); color: var(--red); }

/* ---- NOTIFICATIONS ---- */
.notif {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--dark);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}
.notif.show { transform: translateY(0); opacity: 1; }
.notif.success { border-left: 4px solid #3B6D11; }
.notif.info { border-left: 4px solid var(--red); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .featured-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .prono-promo-inner { grid-template-columns: 1fr; gap: 40px; }
  .prono-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .premium-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-title { font-size: 3.5rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .prono-odds-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .premium-features-grid { grid-template-columns: 1fr; }
}
