/* ============================================================
   LEGJOBB FIZETŐS CASINO — styles.css
   Casino-themed, production-grade, fully responsive
   ============================================================ */

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

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --gold:        #c9963a;
  --gold-light:  #f0c842;
  --gold-dark:   #8a6010;
  --dark:        #07080f;
  --dark-card:   #0f1018;
  --dark-card2:  #13141e;
  --dark-card3:  #191b26;
  --border:      #22253a;
  --border-gold: rgba(201,150,58,0.3);
  --green:       #00c07f;
  --green-dim:   rgba(0,192,127,0.12);
  --red:         #e84545;
  --red-dim:     rgba(232,69,69,0.08);
  --blue:        #4a9eff;
  --blue-dim:    rgba(74,158,255,0.1);
  --text:        #c8cfe0;
  --text-muted:  #6b7280;
  --text-dim:    #3d4156;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(201,150,58,0.15);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,8,15,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo img {
  height: 44px;
  width: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  color: var(--text-muted);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.site-nav a:hover {
  color: var(--gold-light);
  background: rgba(201,150,58,0.08);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  margin-left: 8px;
}
.nav-cta:hover { opacity: .88; background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,150,58,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 5px 14px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-tag::before { content: '★'; font-size: 10px; }

h1.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
h1.hero-title .accent {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-intro {
  font-size: 17px;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.stat-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  text-align: center;
  min-width: 90px;
}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark-card2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 36px auto;
  max-width: 800px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.author-role { color: var(--gold); font-size: 12px; margin-top: 2px; font-weight: 500; }
.author-meta { color: var(--text-muted); font-size: 12px; margin-top: 4px; }

/* ============================================================
   TYPOGRAPHY — Article headings
   ============================================================ */
.article-section { padding: 0 0 12px; }

h2.section-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 60px 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-gold);
  letter-spacing: -.01em;
}
h2.section-heading .emoji { margin-right: 8px; }

h3.sub-heading {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-light);
  margin: 32px 0 12px;
}

p {
  margin-bottom: 16px;
  max-width: 760px;
  color: var(--text);
}

/* ============================================================
   CASINO COMPARISON TABLE  (desktop → mobile cards)
   ============================================================ */
.casino-table-section {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 0 10px;
  margin: 0 0 48px;
  box-shadow: var(--shadow);
}
.casino-table-header {
  padding: 0 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.casino-table-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.casino-table-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.table-badge {
  background: var(--green-dim);
  border: 1px solid rgba(0,192,127,.3);
  color: var(--green);
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---- DESKTOP TABLE ---- */
.casino-compare-table { width: 100%; border-collapse: collapse; }
.casino-compare-table thead th {
  background: var(--dark-card2);
  color: var(--text-muted);
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 18px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.casino-compare-table thead th:first-child { padding-left: 28px; }
.casino-compare-table thead th:last-child { padding-right: 28px; text-align: center; }

.casino-compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.casino-compare-table tbody tr:last-child { border-bottom: none; }
.casino-compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.casino-compare-table tbody td {
  padding: 16px 18px;
  vertical-align: middle;
  font-size: 14px;
}
.casino-compare-table tbody td:first-child { padding-left: 28px; }
.casino-compare-table tbody td:last-child { padding-right: 28px; text-align: center; }

.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 13px;
  border-radius: 50%;
}
.rank-badge.top3 { background: linear-gradient(135deg, #f0c842, #a07820); }

.casino-cell-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  display: block;
}
.casino-cell-emoji { font-size: 18px; margin-right: 6px; }

.offer-text {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
}

.speed-badge {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.speed-instant { background: rgba(0,192,127,.14); color: var(--green); border: 1px solid rgba(0,192,127,.25); }
.speed-fast    { background: rgba(74,158,255,.12); color: var(--blue);  border: 1px solid rgba(74,158,255,.25); }
.speed-medium  { background: rgba(201,150,58,.12); color: var(--gold);  border: 1px solid var(--border-gold); }

/* CTA button in table */
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0e0f14;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(201,150,58,.25);
  border: none;
  cursor: pointer;
}
.btn-play:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,150,58,.4);
  color: #0e0f14;
}
.btn-play-lg {
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 10px;
}

/* ---- MOBILE CARDS (overrides for <768px) ---- */
@media (max-width: 767px) {
  .casino-compare-table thead { display: none; }

  .casino-compare-table,
  .casino-compare-table tbody,
  .casino-compare-table tr,
  .casino-compare-table td { display: block; width: 100%; }

  .casino-compare-table tbody tr {
    margin: 0 14px 14px;
    background: var(--dark-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 16px 16px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }

  .casino-compare-table tbody td {
    padding: 7px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
  }
  .casino-compare-table tbody td:last-child {
    border-bottom: none;
    padding-top: 14px;
    text-align: left;
    justify-content: flex-start;
  }
  .casino-compare-table tbody td:first-child { padding-left: 0; }

  .casino-compare-table tbody td::before {
    content: attr(data-label);
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: .05em;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-right: 8px;
  }

  .casino-compare-table tbody td:last-child::before { display: none; }
  .btn-play { width: 100%; justify-content: center; font-size: 14px; padding: 12px; }
  .casino-compare-table tbody td:first-child { border-bottom: 1px solid var(--border-gold); padding-bottom: 14px; margin-bottom: 4px; }
}

/* ============================================================
   CASINO REVIEW CARDS (individual sections)
   ============================================================ */
.casino-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 28px 0;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}
.casino-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.card-badge {
  position: absolute;
  top: -13px;
  left: 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.casino-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.casino-card-offer {
  color: var(--gold);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}
.casino-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
}
.meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.meta-dot.gold { background: var(--gold); }
.meta-dot.blue { background: var(--blue); }

.casino-card p { max-width: 100%; }

.test-result {
  background: var(--green-dim);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: 13.5px;
  margin: 16px 0;
  color: var(--text);
  line-height: 1.6;
}
.test-result .label {
  color: var(--green);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

/* ============================================================
   ARTICLE IMAGE ILLUSTRATIONS
   ============================================================ */
.article-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
  border: 1px solid var(--border);
}

/* ============================================================
   STYLED LISTS
   ============================================================ */
.styled-list {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 18px 0;
  list-style: none;
}
.styled-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: 15px;
  line-height: 1.65;
}
.styled-list li:last-child { border-bottom: none; padding-bottom: 2px; }
.styled-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-size: 9px;
}
.styled-list li strong {
  color: #e0e5f0;
  font-weight: 600;
}
.styled-list.red-theme {
  background: var(--red-dim);
  border-color: rgba(232,69,69,.2);
}
.styled-list.red-theme li::before { color: var(--red); }

/* ============================================================
   DATA TABLES (payment methods, wagering)
   ============================================================ */
.data-table-wrap {
  overflow-x: auto;
  margin: 20px 0 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}
.data-table-label {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: var(--dark-card2);
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .03em;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  font-size: 13.5px;
}
.data-table thead th {
  background: var(--dark-card2);
  color: var(--text-muted);
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,.015); }
.data-table tbody td { padding: 12px 16px; vertical-align: middle; color: var(--text); }
.data-table tbody td strong { color: #e0e5f0; font-weight: 600; }
.stars { color: var(--gold-light); font-size: 12px; letter-spacing: 1px; }

/* ============================================================
   HOW-TO BLOCKS
   ============================================================ */
.howto-wrap {
  background: var(--dark-card2);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
}
.howto-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.howto-title {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.howto-tag {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 20px;
}
.howto-time {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--dark-card3);
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Sora', sans-serif;
}

.howto-step {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.howto-step:last-child { margin-bottom: 0; }
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.step-content strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: 100%;
}

/* ============================================================
   INFO / TIP BOX
   ============================================================ */
.info-box {
  background: var(--blue-dim);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  font-size: 14px;
  margin: 18px 0;
  line-height: 1.65;
}
.info-box .icon { margin-right: 6px; }

/* ============================================================
   RESPONSIBLE GAMBLING SECTION
   ============================================================ */
.responsible-section {
  background: linear-gradient(135deg, #130a0a, #1a0e0e);
  border: 2px solid rgba(232,69,69,.35);
  border-radius: var(--radius);
  padding: 32px;
  margin: 48px 0 36px;
}
.responsible-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.responsible-section p {
  font-size: 15px;
  max-width: 100%;
  margin-bottom: 14px;
}
.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.help-link {
  background: rgba(232,69,69,.1);
  border: 1px solid rgba(232,69,69,.3);
  color: var(--red);
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.help-link:hover {
  background: rgba(232,69,69,.2);
  color: var(--red);
}

/* ============================================================
   CONCLUSION / SUMMARY BOX
   ============================================================ */
.conclusion-box {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  margin: 48px 0;
}
.conclusion-box h2.section-heading {
  margin-top: 0;
  border-bottom-color: var(--border);
  font-size: 22px;
}
.conclusion-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 42px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 0;
}
.footer-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 9px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-badge {
  background: var(--dark-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.footer-badge.green { border-color: rgba(0,192,127,.3); color: var(--green); }
.footer-disclaimer {
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   SECTION LABEL (small tag above headings)
   ============================================================ */
.sec-label {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,150,58,.1);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  z-index: 90;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { opacity: .9; transform: translateY(-2px); }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark-card); border-bottom: 1px solid var(--border); padding: 14px 20px; gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 14px; width: 100%; border-radius: 8px; }
  .nav-toggle { display: block; }
  .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }

  .hero { padding: 44px 0 44px; }
  .hero-stats { gap: 12px; }
  .stat-item { padding: 10px 14px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .casino-card { padding: 22px 18px; }
  .responsible-section { padding: 22px 18px; }
  .howto-wrap { padding: 22px 18px; }
  .conclusion-box { padding: 22px 18px; }
  .casino-table-header { padding: 0 18px 18px; }

  h2.section-heading { margin-top: 44px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
  .hero-stats { gap: 10px; }
  .stat-item { min-width: 70px; }
  .conclusion-btns { flex-direction: column; }
  .conclusion-btns .btn-play { width: 100%; justify-content: center; }
}

/* ============================================================
   COMPACT TABLE (wagering table with button column)
   ============================================================ */
.data-table--compact thead th {
  padding: 10px 9px;
  font-size: 9.5px;
}
.data-table--compact tbody td {
  padding: 10px 9px;
  font-size: 12.5px;
}
.data-table--compact {
  min-width: unset;
}
.btn-bonus {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  padding: 6px 9px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
  line-height: 1;
}
.btn-bonus:hover {
  background: var(--gold);
  color: var(--dark);
}
