/* ═══════════════════════════════════════
   BonusBuySlots.info - Global Styles
   Dark purple / neon accent theme
   ═══════════════════════════════════════ */

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

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

:root {
  --bg-deep: #0f0a1e;
  --bg-card: #1a1333;
  --bg-card-hover: #231a42;
  --border: rgba(255, 255, 255, 0.06);
  --neon-pink: #e94e8a;
  --neon-blue: #4a9ede;
  --neon-orange: #e8a838;
  --neon-teal: #3dd6c8;
  --text-primary: #e8e4f0;
  --text-secondary: #9a8fb8;
  --text-muted: #6b5f87;
  --glow-pink: rgba(233, 78, 138, 0.15);
  --glow-blue: rgba(74, 158, 222, 0.15);
  --glow-orange: rgba(232, 168, 56, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(233, 78, 138, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(74, 158, 222, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(232, 168, 56, 0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

a { color: var(--neon-blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--neon-pink); }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ═══════ Sticky Nav ═══════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 10, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover { color: var(--neon-blue); }

/* ═══════ Hero ═══════ */
.hero-wrap {
  background: url('images/bg-3.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 30, 0.6);
}

.hero {
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(233, 78, 138, 0.1);
  border: 1px solid rgba(233, 78, 138, 0.25);
  color: var(--neon-pink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--neon-blue) 50%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 12px;
  font-weight: 300;
}

.hero-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  cursor: pointer;
  text-decoration: none;
}

.scroll-indicator span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--neon-pink);
  border-bottom: 2px solid var(--neon-pink);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ═══════ TOC Nav ═══════ */
.toc {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 0 60px;
}

.toc a {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.toc a:hover {
  background: var(--bg-card-hover);
  color: var(--neon-blue);
  border-color: rgba(74, 158, 222, 0.3);
}

/* ═══════ Sections ═══════ */
section { margin-bottom: 56px; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-orange);
  margin-bottom: 10px;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--neon-blue);
}

p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ═══════ Highlight Card ═══════ */
.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-orange));
}

.highlight-card ul { list-style: none; padding: 0; }

.highlight-card li {
  padding: 10px 0 10px 20px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.highlight-card li:last-child { border-bottom: none; }

.highlight-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
}

/* ═══════ Feature Grid ═══════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: rgba(74, 158, 222, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-box .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.feature-box .icon.pink { background: var(--glow-pink); }
.feature-box .icon.blue { background: var(--glow-blue); }
.feature-box .icon.orange { background: var(--glow-orange); }

.feature-box h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-box p { font-size: 0.83rem; margin: 0; line-height: 1.6; }

/* ═══════ Operator Table ═══════ */
.table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin: 24px 0 32px;
}

table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }

thead th {
  background: var(--bg-card);
  color: var(--neon-orange);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr { background: rgba(15, 10, 30, 0.5); transition: background 0.2s ease; }
tbody tr:hover { background: var(--bg-card); }

.operator-name { font-weight: 600; color: var(--text-primary); white-space: nowrap; }

.count-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}

.count-high { background: rgba(233,78,138,0.12); color: var(--neon-pink); border: 1px solid rgba(233,78,138,0.2); }
.count-mid { background: rgba(74,158,222,0.12); color: var(--neon-blue); border: 1px solid rgba(74,158,222,0.2); }
.count-low { background: rgba(232,168,56,0.12); color: var(--neon-orange); border: 1px solid rgba(232,168,56,0.2); }

/* ═══════ Bar Chart ═══════ */
.bar-chart { margin: 32px 0; }

.bar-row { display: flex; align-items: center; margin-bottom: 14px; gap: 14px; }

.bar-label {
  width: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 32px;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 8px;
  display: flex; align-items: center;
  padding-left: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  width: 0;
  transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bar-fill.pink { background: linear-gradient(90deg, var(--neon-pink), rgba(233,78,138,0.7)); }
.bar-fill.blue { background: linear-gradient(90deg, var(--neon-blue), rgba(74,158,222,0.7)); }
.bar-fill.orange { background: linear-gradient(90deg, var(--neon-orange), rgba(232,168,56,0.7)); }
.bar-fill.teal { background: linear-gradient(90deg, var(--neon-teal), rgba(61,214,200,0.7)); }

/* ═══════ Recommendation Cards ═══════ */
.rec-list { counter-reset: rec; list-style: none; padding: 0; }

.rec-list li {
  counter-increment: rec;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px 20px 60px;
  margin-bottom: 12px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: border-color 0.25s ease;
}

.rec-list li:hover { border-color: rgba(74,158,222,0.2); }

.rec-list li::before {
  content: counter(rec);
  position: absolute;
  left: 20px; top: 18px;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--glow-blue);
  color: var(--neon-blue);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ═══════ Risk Cards ═══════ */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.risk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--neon-orange);
  border-radius: 10px;
  padding: 20px;
}

.risk-card p { font-size: 0.88rem; margin: 0; }

/* ═══════ Sources ═══════ */
.sources {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
}

.sources ul { list-style: none; padding: 0; }

.sources li {
  padding: 8px 0 8px 16px;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.sources li:last-child { border-bottom: none; }

.sources li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* ═══════ Disclaimer ═══════ */
.disclaimer {
  text-align: center;
  padding: 48px 0 24px;
  color: var(--text-muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

/* ═══════ Simple Footer (blog posts) ═══════ */
footer:not(.site-footer) {
  text-align: center;
  padding: 16px 0 40px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ═══════ Trust Stats ═══════ */
.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.trust-stat { text-align: center; }

.trust-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ═══════ Author Box ═══════ */
.author-box {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.author-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--neon-pink), var(--neon-blue));
}

.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(233, 78, 138, 0.3);
  flex-shrink: 0;
}

.author-info { flex: 1; }

.author-meta { margin-bottom: 8px; }

.author-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2px 0 0;
}

.author-bio {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

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

.author-tag {
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(74, 158, 222, 0.08);
  border: 1px solid rgba(74, 158, 222, 0.15);
  color: var(--neon-blue);
  font-size: 0.7rem;
  font-weight: 600;
}

/* ═══════ Methodology Grid ═══════ */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: rgba(232, 168, 56, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.method-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(232, 168, 56, 0.15);
  line-height: 1;
  margin-bottom: 10px;
}

.method-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.method-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

/* ═══════ Chart Section ═══════ */
.chart-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.chart-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.chart-card > p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.chart-card-wide {
  margin-bottom: 24px;
}

/* Donut chart */
.donut-chart-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.donut-chart { flex-shrink: 0; }

.donut-legend { display: flex; flex-direction: column; gap: 6px; }

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.legend-item strong { color: var(--text-primary); margin-left: 4px; }

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* Cost chart */
.cost-chart { margin-top: 8px; }

.cost-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.cost-label {
  width: 90px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
  flex-shrink: 0;
}

.cost-track {
  flex: 1;
  height: 26px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  overflow: hidden;
}

.cost-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  width: 0;
  transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Volatility chart */
.vol-chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  height: 220px;
  padding: 20px 0 0;
}

.vol-col-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 120px;
}

.vol-col {
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.vol-bar {
  width: 100%;
  height: 0;
  border-radius: 8px 8px 4px 4px;
  transition: height 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vol-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.vol-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* RTP comparison */
.rtp-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.rtp-item { text-align: center; }

.rtp-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.rtp-circle.base {
  border: 3px solid var(--neon-blue);
  box-shadow: 0 0 24px rgba(74, 158, 222, 0.15);
}

.rtp-circle.buy {
  border: 3px solid var(--neon-orange);
  box-shadow: 0 0 24px rgba(232, 168, 56, 0.15);
}

.rtp-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.rtp-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.rtp-vs {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.rtp-diff { text-align: center; max-width: 220px; }

.rtp-diff-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 6px;
  background: rgba(232, 168, 56, 0.1);
  border: 1px solid rgba(232, 168, 56, 0.2);
  color: var(--neon-orange);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.rtp-diff p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ═══════ Site Footer ═══════ */
.site-footer {
  background: #0a0716;
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding: 56px 0 32px;
  position: relative;
  z-index: 1;
}

.rg-section {
  text-align: center;
  padding-bottom: 36px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.rg-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-orange);
  margin: 0 0 12px;
}

.rg-section > p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.rg-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.rg-badge { opacity: 0.85; transition: opacity 0.2s ease; }
.rg-badge:hover { opacity: 1; }
.rg-badge a { display: block; }

.rg-helplines {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.rg-helplines p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.rg-helplines strong { color: var(--text-secondary); }

.footer-disclaimer {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer-disclaimer p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

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

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links a:hover { color: var(--neon-blue); }

/* ═══════════════════════════════════════
   BLOG SECTION
   ═══════════════════════════════════════ */
.blog-section {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(74, 158, 222, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: inherit;
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 570 / 430;
  background: var(--bg-card-hover);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body time {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}

.read-more {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neon-pink);
  transition: color 0.2s ease;
}

.blog-card:hover .read-more { color: var(--neon-blue); }

.blog-load-more {
  display: flex;
  justify-content: center;
  padding: 12px 0 24px;
}

.btn-load-more {
  padding: 12px 32px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(233, 78, 138, 0.3);
  color: var(--neon-pink);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-load-more:hover {
  background: rgba(233, 78, 138, 0.1);
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(233, 78, 138, 0.15);
}

/* ═══════════════════════════════════════
   BLOG POST PAGE
   ═══════════════════════════════════════ */
.post-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 1024 / 571;
  max-height: 480px;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(transparent, rgba(15, 10, 30, 0.95));
}

.post-hero-overlay time {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.post-hero-overlay h1 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 8px;
  color: var(--text-primary);
}

/* Article body */
.post-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content h2 {
  font-size: 1.35rem;
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
}

.post-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 12px;
  color: var(--neon-blue);
}

.post-content h4 {
  font-size: 0.95rem;
  margin: 24px 0 10px;
  color: var(--neon-teal);
  font-weight: 600;
}

.post-content p {
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.post-content ul,
.post-content ol {
  margin: 0 0 20px 20px;
  color: var(--text-secondary);
}

.post-content li {
  margin-bottom: 8px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.post-content strong { color: var(--text-primary); }

.post-content blockquote {
  border-left: 3px solid var(--neon-pink);
  margin: 24px 0;
  padding: 16px 24px;
  background: rgba(233, 78, 138, 0.05);
  border-radius: 0 10px 10px 0;
}

.post-content blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--text-secondary);
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}

.post-content a {
  color: var(--neon-blue);
  border-bottom: 1px solid rgba(74, 158, 222, 0.3);
}

.post-content a:hover {
  color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
}

/* Back link */
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin: 40px 0 32px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.post-back:hover {
  color: var(--neon-blue);
  border-color: rgba(74, 158, 222, 0.3);
}

/* Related posts */
.related-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

/* ═══════ Scroll Animations ═══════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════ Responsive ═══════ */
@media (max-width: 640px) {
  .hero { padding: 48px 16px 40px; }
  .toc { gap: 8px; }
  .toc a { padding: 6px 12px; font-size: 0.75rem; }
  .highlight-card { padding: 20px; }
  .bar-label { width: 70px; font-size: 0.78rem; }
  .bar-fill { font-size: 0.7rem; }
  .rec-list li { padding-left: 50px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-hero-overlay { padding: 24px 20px 20px; }
  .post-hero-overlay h1 { font-size: 1.3rem; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.75rem; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .author-tags { justify-content: center; }
  .trust-stats { gap: 16px; }
  .trust-divider { display: none; }
  .chart-row { grid-template-columns: 1fr; }
  .donut-chart-wrap { flex-direction: column; }
  .rtp-compare { flex-direction: column; }
  .rtp-vs { transform: rotate(90deg); }
  .vol-chart { gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .rg-helplines { flex-direction: column; gap: 8px; }
  .cost-label { width: 70px; font-size: 0.72rem; }
  .methodology-grid { grid-template-columns: 1fr; }
}
