/* =============================
   RESET & BASE
   ============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-darkest:  #060a12;
  --bg-dark:     #0c1120;
  --bg-card:     #111827;
  --bg-card2:    #0f1a2e;
  --bg-sidebar:  #0e1525;
  --accent:      #f5c518;
  --accent2:     #e8a800;
  --green:       #1a4a2e;
  --green-light: #22c55e;
  --red:         #4a1a1a;
  --red-light:   #ef4444;
  --border:      #1e2d45;
  --text:        #e2e8f0;
  --text-muted:  #7a8fa6;
  --text-dim:    #4a5568;
  --radius:      8px;
  --shadow:      0 4px 20px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg-darkest);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px;
}

.highlight { color: var(--accent); }

/* =============================
   HEADER
   ============================= */
.site-header {
  background: linear-gradient(180deg, #05090f 0%, #080e1c 100%);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.header-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 58px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 30px;
}

.header-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.header-nav a {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--accent);
  background: rgba(245,197,24,0.08);
}

.header-right {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-login {
  padding: 7px 18px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-login:hover { border-color: var(--accent); color: var(--accent); }

.btn-register {
  padding: 7px 18px;
  background: var(--accent);
  border: none;
  color: #000;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-register:hover { background: var(--accent2); }

/* =============================
   TOP BANNER
   ============================= */
.top-banner-wrap {
  background: #000;
  border-bottom: 2px solid var(--gold);
}

.top-banner-link {
  display: block;
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  overflow: hidden;
}

.top-banner-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.top-banner-link:hover .top-banner-img {
  transform: scale(1.03);
}

.top-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.55) 100%);
  text-align: center;
}

.top-banner-logo {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.top-banner-tagline {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  margin: 0;
  text-transform: uppercase;
}

.top-banner-cta {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.top-banner-link:hover .top-banner-cta {
  background: #ffe066;
  transform: scale(1.05);
}

/* =============================
   HERO
   ============================= */
.hero {
  background: linear-gradient(135deg, #06090f 0%, #0c1828 40%, #071224 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

.hero-content {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-num .plus {
  font-size: 18px;
  color: var(--green-light);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(245,197,24,0.3);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* =============================
   CATEGORY BAR
   ============================= */
.category-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.cat-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  display: inline-block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.cat-tab:hover { color: var(--text); }
.cat-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* =============================
   MAIN LAYOUT
   ============================= */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 40px;
  align-items: start;
}

/* =============================
   CONTENT SECTIONS
   ============================= */
.content-section {
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding-left: 12px;
  position: relative;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}

.see-all {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  transition: opacity 0.2s;
}
.see-all:hover { opacity: 0.7; }

/* =============================
   CARDS GRID
   ============================= */
.cards-grid { display: grid; gap: 16px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.card-cat {
  padding: 20px 16px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

.card-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin: 0 16px 6px;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  padding: 0 16px 8px;
  flex: 1;
}

.card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0 16px 10px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: auto;
}

.card-date { font-size: 11px; color: var(--text-dim); }
.card-link { font-size: 11px; color: var(--accent); font-weight: 500; }

/* Card Colors */
.card-green  { background: linear-gradient(160deg, #0d2b1a, #111827); border-color: #1a3a23; }
.card-red    { background: linear-gradient(160deg, #2b0d0d, #111827); border-color: #3a1a1a; }
.card-dark   { background: linear-gradient(160deg, #1a1a2e, #111827); border-color: #252540; }
.card-teal   { background: linear-gradient(160deg, #0d2b2b, #111827); border-color: #1a3a3a; }
.card-maroon { background: linear-gradient(160deg, #2b0d1a, #111827); border-color: #3a1a2a; }
.card-navy   { background: linear-gradient(160deg, #0d1a2b, #111827); border-color: #1a2a3a; }
.card-dark-red   { background: linear-gradient(160deg, #380a0a, #111827); border-color: #4a1414; }
.card-dark-green { background: linear-gradient(160deg, #0a2214, #111827); border-color: #143022; }
.card-golden { background: linear-gradient(160deg, #2b1f05, #111827); border-color: #3a2c10; }
.card-slate  { background: linear-gradient(160deg, #141c2b, #111827); border-color: #1e2a3a; }
.card-indigo { background: linear-gradient(160deg, #0f0d2b, #111827); border-color: #1a1840; }

/* =============================
   ARTICLE LIST
   ============================= */
.article-list { display: flex; flex-direction: column; gap: 16px; }

.article-item {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-item:hover { box-shadow: var(--shadow); transform: translateX(2px); }

.article-img {
  width: 120px;
  min-width: 120px;
  height: 100%;
  min-height: 100px;
  max-height: 140px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.article-item:hover .article-img {
  transform: scale(1.05);
}

.article-body {
  padding: 14px 16px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.article-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.article-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-dim);
}

.read-more { color: var(--accent); font-weight: 500; }

/* =============================
   LONG ARTICLE
   ============================= */
.long-article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.long-article .section-header {
  border-bottom: none;
  margin-bottom: 12px;
}

.long-article .section-title {
  font-size: 18px;
  line-height: 1.4;
}

.article-tags { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(245,197,24,0.12);
  color: var(--accent);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(245,197,24,0.2);
}

.article-full-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.article-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--accent);
}

.article-cta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* =============================
   SIDEBAR
   ============================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 78px;
}

.sidebar-promo {
  background: linear-gradient(160deg, #1a2a0a, #0f1820);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(245,197,24,0.08);
}

.promo-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.promo-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
  text-align: left;
}

.promo-feature {
  font-size: 12px;
  color: var(--text-muted);
  padding: 5px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 5px;
  border-left: 2px solid var(--green-light);
}

.btn-promo {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(245,197,24,0.25);
}
.btn-promo:hover { background: var(--accent2); transform: translateY(-1px); }

.sidebar-widget {
  background: var(--bg-sidebar);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.widget-header {
  background: var(--bg-card2);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

/* News List */
.news-list { padding: 8px 0; }

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.news-item:hover { background: rgba(255,255,255,0.03); }
.news-item:last-child { border-bottom: none; }

.news-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.news-dot-yellow { background: var(--accent); }
.news-dot-green  { background: var(--green-light); }
.news-dot-red    { background: var(--red-light); }

.news-body { display: flex; flex-direction: column; gap: 2px; }

.news-title {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}
.news-title:hover { color: var(--accent); }

.news-date { font-size: 10px; color: var(--text-dim); }

/* Matches */
.matches-list { padding: 8px 0; }

.match-item {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.match-item:last-child { border-bottom: none; }

.match-league {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 4px;
}

.team {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}
.team-right { text-align: right; }

.score {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.score.live { color: var(--accent); border: 1px solid rgba(245,197,24,0.3); }

.match-odds {
  display: flex;
  gap: 4px;
}

.odd {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--bg-card2);
  padding: 4px 4px;
  border-radius: 4px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.odd:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* Coupon */
.coupon-widget { padding-bottom: 4px; }

.coupon-empty {
  padding: 20px;
  text-align: center;
  color: var(--text-dim);
}
.coupon-icon { font-size: 28px; margin-bottom: 8px; }
.coupon-empty p { font-size: 12px; line-height: 1.5; }

.coupon-info {
  padding: 0 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coupon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.coupon-val { font-weight: 700; color: #fff; }
.coupon-win .coupon-val { color: var(--accent); font-size: 14px; }

.coupon-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 8px;
  color: #fff;
  font-size: 12px;
  width: 100px;
  text-align: right;
}
.coupon-input:focus { outline: none; border-color: var(--accent); }

.btn-coupon {
  margin: 8px 14px 14px;
  width: calc(100% - 28px);
  font-size: 13px;
  padding: 10px;
}

/* Quick Links */
.quick-links { padding: 8px 0; }
.quick-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.quick-links li:last-child { border-bottom: none; }
.quick-links a {
  display: block;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--text-muted);
  transition: all 0.2s;
}
.quick-links a:hover { color: var(--accent); padding-left: 18px; }

/* =============================
   FOOTER
   ============================= */
.site-footer {
  background: #040710;
  border-top: 2px solid var(--border);
  padding: 40px 0 0;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .main-layout {
    grid-template-columns: 1fr 260px;
  }
  .header-nav a { padding: 6px 10px; font-size: 12px; }
}

@media (max-width: 860px) {
  .main-layout {
    grid-template-columns: 1fr;
  }
  .sidebar { position: static; }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 600px) {
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 24px; }
  .header-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-img { width: 90px; min-width: 90px; max-height: 120px; }
}

/* =============================
   FEATURED ARTICLE
   ============================= */
.featured-article {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.featured-article:hover { box-shadow: var(--shadow); }

.featured-img-link {
  display: block;
  width: 280px;
  min-width: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  transition: transform 0.3s ease;
}

.featured-img-link:hover .featured-img-photo {
  transform: scale(1.04);
}

.featured-body {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-cat-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.tag-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.spor-tag   { background: rgba(34,197,94,0.15);  color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.casino-tag { background: rgba(239,68,68,0.15);  color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.poker-tag  { background: rgba(168,85,247,0.15); color: #a855f7; border: 1px solid rgba(168,85,247,0.2); }
.bonus-tag  { background: rgba(245,197,24,0.15); color: var(--accent); border: 1px solid rgba(245,197,24,0.2); }
.slot-tag   { background: rgba(249,115,22,0.15); color: #f97316; border: 1px solid rgba(249,115,22,0.2); }

.featured-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.featured-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}

.featured-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.meta-author { color: var(--text-muted); }
.featured-meta .read-more { margin-left: auto; color: var(--accent); font-weight: 600; font-size: 13px; }

/* =============================
   CATEGORY DOT & SECTION LABELS
   ============================= */
.cat-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}
.cat-dot-spor   { background: #22c55e; }
.cat-dot-casino { background: #ef4444; }
.cat-dot-poker  { background: #a855f7; }
.cat-dot-bonus  { background: var(--accent); }
.cat-dot-slot   { background: #f97316; }

/* =============================
   EXTRA ARTICLE IMG COLORS
   ============================= */

/* =============================
   CATEGORY LIST (SIDEBAR)
   ============================= */
.cat-list { padding: 6px 0; }
.cat-list li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.cat-list li:last-child { border-bottom: none; }

.cat-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transition: background 0.2s;
  cursor: pointer;
}
.cat-list-item:hover { background: rgba(255,255,255,0.04); }

.cat-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.cat-name { flex: 1; font-size: 13px; color: var(--text); }
.cat-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--bg-darkest);
  background: var(--accent);
  padding: 1px 7px;
  border-radius: 20px;
}

/* =============================
   POPULAR ARTICLES (SIDEBAR)
   ============================= */
.popular-list { padding: 8px 0; }
.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { background: rgba(255,255,255,0.03); }

.popular-rank {
  font-size: 18px;
  font-weight: 900;
  color: var(--border);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.popular-body { display: flex; flex-direction: column; gap: 3px; }
.popular-title {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 600;
  transition: color 0.2s;
}
.popular-title:hover { color: var(--accent); }
.popular-meta { font-size: 10px; color: var(--text-dim); }

/* =============================
   NO RESULTS
   ============================= */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
}
.no-results-icon { font-size: 40px; margin-bottom: 12px; }
.no-results p { font-size: 15px; }

/* =============================
   SECTION COUNT
   ============================= */
.section-count {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
}

/* =============================
   TRUST BAR
   ============================= */
.trust-bar {
  background: linear-gradient(90deg, #0a1628 0%, #0d2040 50%, #0a1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-icon { font-size: 15px; }
@media (max-width: 600px) {
  .trust-bar-inner { gap: 14px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding: 0 16px; }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
}

/* =============================
   BREADCRUMB
   ============================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.bc-sep { color: var(--border); }
#bc-current { color: var(--text-muted); font-weight: 500; }

/* =============================
   LOAD MORE
   ============================= */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0 8px;
}
.load-more-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.load-more-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(245,197,24,0.06); }

/* =============================
   BONUS TABLE
   ============================= */
.bonus-table-section { margin-top: 40px; }
.bonus-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.bonus-table thead tr { background: rgba(255,255,255,0.04); }
.bonus-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.bonus-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted);
  vertical-align: middle;
}
.bonus-table tbody tr:last-child td { border-bottom: none; }
.bonus-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.bonus-row-highlight td { background: rgba(245,197,24,0.04); }
.bonus-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(245,197,24,0.15);
  color: var(--accent);
  border: 1px solid rgba(245,197,24,0.25);
}
.bonus-badge-blue   { background: rgba(59,130,246,0.15); color: #60a5fa; border-color: rgba(59,130,246,0.25); }
.bonus-badge-purple { background: rgba(168,85,247,0.15); color: #c084fc; border-color: rgba(168,85,247,0.25); }
.bonus-badge-orange { background: rgba(249,115,22,0.15); color: #fb923c; border-color: rgba(249,115,22,0.25); }
.bonus-badge-teal   { background: rgba(20,184,166,0.15); color: #2dd4bf; border-color: rgba(20,184,166,0.25); }
.bonus-table-btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.bonus-table-btn:hover { background: #ffe066; }

/* =============================
   FAQ
   ============================= */
.faq-section { margin-top: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245,197,24,0.3); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--accent); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 16px; }

/* =============================
   TELEGRAM BUTTON
   ============================= */
.telegram-btn {
  position: fixed;
  bottom: 130px;
  right: 20px;
  background: #229ED9;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(34,158,217,0.35);
  transition: background 0.2s, transform 0.2s;
}
.telegram-btn:hover { background: #1a8bbf; transform: translateY(-2px); }
@media (max-width: 600px) {
  .telegram-btn { bottom: 120px; right: 12px; padding: 8px 12px; font-size: 11px; }
}

/* =============================
   SCROLLBAR STYLING
   ============================= */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* =============================
   MOBİL – HAMBURGER MENU
   ============================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.mobile-menu a {
  padding: 12px 20px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--accent); }
.mobile-menu.open { display: flex; }

/* =============================
   MOBİL – FEATURED ARTICLE
   ============================= */
@media (max-width: 700px) {
  .featured-article {
    grid-template-columns: 1fr;
  }
  .featured-img-link {
    width: 100%;
    min-width: unset;
    height: 200px;
  }
  .featured-img-photo { min-height: 200px; }
  .featured-body { padding: 16px; }
  .featured-title { font-size: 18px; }
}

/* =============================
   MOBİL – GENEL 600px
   ============================= */
@media (max-width: 600px) {
  .hamburger { display: flex; }
  .header-nav { display: none; }

  .top-banner-img { height: 90px; }
  .top-banner-logo { height: 28px; }
  .top-banner-tagline { font-size: 10px; }
  .top-banner-cta { font-size: 10px; padding: 4px 12px; }

  .hero { padding: 32px 16px; }
  .hero h1 { font-size: 20px; }
  .hero p { font-size: 13px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .stat-item { min-width: 100px; }

  .category-bar { padding: 0 8px; gap: 6px; }
  .cat-tab { padding: 8px 12px; font-size: 12px; }

  .content-section { padding: 0; }
  .section-title { font-size: 16px; }

  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .card { padding: 18px; }

  .article-item { flex-direction: column; }
  .article-img {
    width: 100%;
    min-width: unset;
    height: 160px;
    max-height: 160px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* =============================
   SCROLL PROGRESS BAR
   ============================= */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #ffe066);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* =============================
   STICKY CTA
   ============================= */
.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,197,24,0.4);
  text-decoration: none;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  white-space: nowrap;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover { background: #ffe066; transform: translateY(-2px); }

/* =============================
   BAŞA DÖN
   ============================= */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* =============================
   OKUMA SÜRESİ
   ============================= */
.read-time {
  font-size: 10px;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

/* =============================
   EXIT POPUP
   ============================= */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 1100;
  backdrop-filter: blur(6px);
}
.exit-popup-overlay.active { display: block; }

.exit-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.94);
  width: 92%;
  max-width: 460px;
  z-index: 1200;
  text-align: center;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), opacity 0.25s ease;
  opacity: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,197,24,0.15);
}
.exit-popup.active {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.exit-popup-top {
  background: linear-gradient(135deg, #0c1f10 0%, #0d2b1a 60%, #152b0a 100%);
  padding: 36px 32px 28px;
  position: relative;
}

.exit-popup-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 1;
}
.exit-popup-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.exit-popup-icon {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(245,197,24,0.4));
}

.exit-popup-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.exit-popup-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.exit-popup-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.exit-popup-bottom {
  background: #0d1520;
  padding: 24px 32px 28px;
}

.exit-popup-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 20px;
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.18);
  padding: 10px 18px;
  border-radius: 10px;
}
.exit-popup-timer::before { content: '⏱'; font-size: 14px; }
.exit-popup-timer span {
  color: var(--gold);
  font-weight: 900;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}

.exit-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #ffe066 100%);
  color: #000;
  font-weight: 900;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(245,197,24,0.35);
  letter-spacing: 0.2px;
}
.exit-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,197,24,0.45);
}

.exit-popup-skip {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.exit-popup-skip:hover { color: rgba(255,255,255,0.6); }

/* =============================
   COOKIE BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 800;
  transition: bottom 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.cookie-banner.visible { bottom: 0; }
.cookie-banner p { font-size: 13px; color: var(--text-muted); margin: 0; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.cookie-accept { background: var(--gold); color: #000; border-color: var(--gold); }
.cookie-accept:hover { background: #ffe066; }
.cookie-reject { background: transparent; color: var(--text-dim); }
.cookie-reject:hover { background: rgba(255,255,255,0.06); color: var(--text); }

@media (max-width: 600px) {
  .sticky-cta { right: 12px; bottom: 70px; font-size: 12px; padding: 10px 16px; }
  .back-to-top { right: 12px; bottom: 16px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 14px 16px; }
  .exit-popup-top { padding: 28px 20px 22px; }
  .exit-popup-bottom { padding: 20px 20px 24px; }
  .exit-popup-title { font-size: 20px; }
  .exit-popup-icon { font-size: 36px; }
}
