/* ============================================================
   EnergyCasino24.pl — Brand Stylesheet
   Design: Light, premium, modern — inspired by top 5 EU casinos
   Accent: #FFD700 (electric gold/yellow — EnergyCasino brand)
   ============================================================ */

/* ── Brand Color Palette ── */
:root {
  --accent:      #FFD700;
  --accent-dark: #E6C200;
  --accent-mid:  #FFF0A0;
  --accent-soft: #FFFBE6;
  --energy-green:#00D474;

  --bg-body:     #FAFBFC;
  --bg-card:     #FFFFFF;
  --bg-section:  #F3F5F8;
  --bg-dark:     #1A1A2E;
  --bg-nav:      #FFFFFF;

  --text-primary:   #1A1A2E;
  --text-secondary: #4A5568;
  --text-muted:     #718096;
  --text-on-accent: #1A1A2E;
  --text-on-dark:   #FFFFFF;

  --border:       #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-accent:0 4px 20px rgba(255,215,0,0.30);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --nav-height: 68px;
  --max-width: 1140px;
  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-section); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Typography ── */
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
main { padding: 0 0 80px; }
section { margin-bottom: 64px; }

/* ── Header ── */
header {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); gap: 24px;
}
.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 32px;
  width: auto;
}

.nav-links { display: flex; gap: 12px; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  background: var(--accent-soft); color: var(--text-primary);
}
.nav-cta { margin-left: 8px; }

/* ── Burger ── */
.burger {
  display: none; padding: 8px; color: var(--text-primary);
  border-radius: var(--radius-sm);
}
.burger span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: var(--transition); border-radius: 2px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .burger { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--bg-nav); padding: 12px 0;
    box-shadow: var(--shadow-md); border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 20px; font-size: 1rem; border-radius: 0; }
  .nav-links a:hover { background: var(--accent-soft); }
  .nav-cta { display: none; }
}

/* ── Buttons ── */
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: var(--text-on-accent);
  font-weight: 700; font-size: 1rem;
  padding: 13px 28px; border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-accent);
  position: relative; overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.cta-btn:hover::before { left: 100%; }
.cta-btn:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,215,0,0.4); }
.cta-btn:active { transform: translateY(0); }

.cta-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--accent); color: #fff;
  font-weight: 600; font-size: 0.95rem;
  padding: 11px 24px; border-radius: var(--radius-md);
  transition: var(--transition);
}
.cta-btn-outline:hover { background: var(--accent); color: var(--text-on-accent); }

.btn-sm { padding: 8px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); }

/* ── Hero ── */
.hero, .page-header {
  background: linear-gradient(rgba(10, 10, 20, 0.75), rgba(10, 10, 20, 0.85)), url('/foto/hero-img.webp') center/cover no-repeat;
  color: var(--text-on-dark);
  padding: 100px 20px;
  position: relative; overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}
.hero::before, .page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,215,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner, .page-header .container { 
  max-width: 900px; width: 100%; position: relative; z-index: 2; 
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge, .page-header .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,215,0,0.2); color: var(--accent);
  border: 1px solid rgba(255,215,0,0.4);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1, .page-header h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero h1 span, .page-header h1 span { color: var(--accent); }
.hero-sub, .page-header p {
  font-size: 1.15rem; color: rgba(255,255,255,0.9);
  max-width: 680px; margin: 0 auto 32px; line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.hero-actions, .page-header-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 64px; justify-content: center; flex-wrap: wrap;
}
.hero-stat-value {
  font-size: 2rem; font-weight: 800; color: var(--accent);
  display: block; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .hero { padding: 56px 16px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { gap: 24px; }
}

/* ── Hero Banner Image ── */
.brand-banner-wrap {
  width: 100%; max-width: 900px; margin: 0 auto 32px; display: block;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.brand-banner-wrap img { width: 100%; height: auto; display: block; }

/* ── Section Headers ── */
.section-header {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header .badge { margin-bottom: 12px; }
.section-header p {
  margin-top: 12px;
  font-size: 1.05rem;
  max-width: 100%;
  line-height: 1.6;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent-soft); color: var(--accent-dark);
  border: 1px solid rgba(255,215,0,0.3);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.badge.green { background: rgba(0,212,116,0.1); color: var(--energy-green); border-color: rgba(0,212,116,0.2); }
.badge.dark { background: var(--bg-dark); color: var(--accent); border-color: rgba(255,215,0,0.2); }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.92rem; }

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

/* ── Info Box (highlighted) ── */
.info-box {
  background: linear-gradient(135deg, #FFFBE6 0%, #FFF9DC 100%);
  border: 1px solid rgba(255,215,0,0.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { color: var(--text-primary); font-size: 0.95rem; }
.info-box strong { color: var(--accent-dark); }

.info-box-green {
  background: linear-gradient(135deg, rgba(0,212,116,0.06) 0%, rgba(0,212,116,0.03) 100%);
  border: 1px solid rgba(0,212,116,0.2);
  border-left: 4px solid var(--energy-green);
}

/* ── Offer Card (bonus highlight) ── */
.offer-card {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative; overflow: hidden;
  text-align: center;
}
.offer-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.12) 0%, transparent 70%);
}
.offer-card > * { position: relative; }
.offer-card-value {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: var(--accent); line-height: 1;
  text-shadow: 0 0 40px rgba(255,215,0,0.4);
}
.offer-card-label { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin: 8px 0 24px; }
.offer-card .cta-btn { margin-top: 20px; }

/* ── Image CTA Banner ── */
.image-banner {
  background: url('/foto/hero-img.webp') center/cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.6) 100%);
}
.image-banner > * { position: relative; z-index: 1; }
.image-banner h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px; color: #fff; line-height: 1.2; }
.image-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; }

/* ── Tables ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
th {
  background: var(--bg-dark); color: var(--accent);
  font-weight: 600; font-size: 0.85rem;
  padding: 12px 16px; text-align: left;
  text-transform: uppercase; letter-spacing: 0.04em;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; color: var(--text-secondary); }
tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--accent-soft); }
td:first-child { font-weight: 500; color: var(--text-primary); }

@media (max-width: 600px) {
  table, thead, tbody, th, td, tr { display: block; }
  thead tr { display: none; }
  td { padding: 8px 12px; border-bottom: none; position: relative; padding-left: 40%; }
  td::before { content: attr(data-label); font-weight: 600; color: var(--accent-dark); font-size: 0.75rem; text-transform: uppercase; position: absolute; left: 12px; top: 10px; }
  tr { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; }
  tbody tr:hover td { background: var(--accent-soft); }
}

/* ── Game Cards Grid ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.game-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.game-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.game-card-body { padding: 10px 12px; }
.game-card-title { font-weight: 600; font-size: 0.85rem; color: var(--text-primary); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card-provider { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 480px) { .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ── Steps / How to ── */
.steps { counter-reset: steps; }
.step {
  display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start;
}
.step-num {
  counter-increment: steps;
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent); color: var(--text-on-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  box-shadow: var(--shadow-accent);
}
.step-num::before { content: counter(steps); }
.step-content h4 { margin-bottom: 4px; font-size: 1rem; }
.step-content p { font-size: 0.9rem; }

/* ── Features List ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.feature-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: var(--bg-card);
  border-radius: var(--radius-md); border: 1px solid var(--border-light);
}
.feature-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { font-size: 0.9rem; margin-bottom: 2px; }
.feature-item p { font-size: 0.82rem; }

/* ── FAQ Accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
details[open] { border-color: var(--accent); box-shadow: var(--shadow-accent); }
summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; color: var(--text-primary);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-weight: 700; transition: var(--transition); flex-shrink: 0; }
details[open] summary::after { content: "−"; }
details p {
  padding: 0 20px 16px;
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
}

/* ── Pros/Cons ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros-cons .pros { border-left: 3px solid var(--energy-green); }
.pros-cons .cons { border-left: 3px solid #EF4444; }
.pros-cons h4 { margin-bottom: 12px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
.pros-cons .pros h4 { color: var(--energy-green); }
.pros-cons .cons h4 { color: #EF4444; }
.pros-cons ul { display: flex; flex-direction: column; gap: 8px; }
.pros-cons li { font-size: 0.9rem; padding-left: 20px; position: relative; color: var(--text-secondary); }
.pros-cons .pros li::before { content: "✓"; position: absolute; left: 0; color: var(--energy-green); font-weight: 700; }
.pros-cons .cons li::before { content: "✗"; position: absolute; left: 0; color: #EF4444; font-weight: 700; }

@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
  margin: 0 0 24px; color: rgba(255,255,255,0.6);
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 4px; color: rgba(255,255,255,0.4); }

.page-header {
  min-height: 400px;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px;
}
.trust-bar-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; gap: 32px; align-items: center; flex-wrap: wrap;
  justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.trust-item-icon { font-size: 1.2rem; }
.trust-item strong { color: var(--text-primary); }

/* ── Divider ── */
.divider { height: 1px; background: var(--border-light); margin: 48px 0; }

/* ── Callout ── */
.callout {
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 0.9rem;
}
.callout-warning { background: #FFFBEB; border: 1px solid #F59E0B; color: #92400E; }
.callout-info { background: #EFF6FF; border: 1px solid #3B82F6; color: #1E40AF; }

/* ── Footer ── */
footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.6);
  padding: 48px 20px 24px; margin-top: 80px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 40px; margin-bottom: 32px; align-items: start; }
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; max-width: 360px; line-height: 1.6; }
.footer-links-col h4 { color: rgba(255,255,255,0.4); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-links-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; transition: var(--transition); }
.footer-links-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; flex-wrap: wrap;
}
.footer-legal p { font-size: 0.78rem; line-height: 1.7; }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--accent); }
.footer-rg { font-size: 0.78rem; }
.footer-rg a { color: rgba(255,255,255,0.4); }
.footer-rg a:hover { color: var(--accent); }
.footer-18+ { display: flex; align-items: center; gap: 12px; }
.footer-18+ span { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; padding: 4px 8px; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ── Mobile Sticky CTA Bar ── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent);
  padding: 10px 16px 14px;
  z-index: 300;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-cta-bar a {
  color: var(--text-on-accent); font-weight: 800; font-size: 1rem;
  text-decoration: none; display: block; line-height: 1.3;
}
.mobile-cta-bar a:hover { text-decoration: none; opacity: 0.92; }
.mobile-cta-bar .mcta-bonus { font-size: 1.05rem; font-weight: 900; display: block; }
.mobile-cta-bar .mcta-sub { font-size: 0.68rem; font-weight: 500; display: block; margin-top: 2px; opacity: 0.7; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
}

/* ── Bonus Tag ── */
.bonus-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 0.75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 8px;
}

/* ── Responsive tweaks ── */
@media (max-width: 480px) {
  .hero { padding: 40px 16px 48px; }
  .cta-btn { width: 100%; display: flex; }
  .offer-card { padding: 28px 20px; }
  .card { padding: 20px; }
  main { padding-bottom: 40px; }
  section { margin-bottom: 40px; }
}

/* ── Bonus Page Special (accented sections) ── */
.bonus-highlight {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #FFF9DC 100%);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}

/* ── Code Block (promo codes) ── */
.promo-code-box {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg-dark); color: var(--accent);
  border: 2px dashed rgba(255,215,0,0.4);
  border-radius: var(--radius-md);
  padding: 12px 20px; font-family: monospace; font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.1em;
}
.promo-code-label { font-family: system-ui; font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 400; letter-spacing: 0; }

/* ── Interlinking Section ── */
.interlinking-section {
  padding: 64px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border);
}
.interlinking-section h3 {
  margin-bottom: 24px;
  font-size: 1.4rem;
  color: var(--text-primary);
}
.interlinking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.interlinking-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.interlinking-link:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.interlinking-link span {
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .interlinking-grid { grid-template-columns: 1fr; }
}
