/* ============================================
   Game Landing Template — Self-Contained CSS
   Arctic / Ice Theme — Light, clean, blue tones
   Fully autonomous: does NOT depend on style.css
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Chakra Petch", sans-serif;
  background: #F0F9FF;
  color: #475569;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
a { color: #0EA5E9; text-decoration: none; transition: color .2s; }
a:hover { color: #38BDF8; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: "Russo One", sans-serif;
  line-height: 1.25;
  color: #0C4A6E;
}
p { max-width: 100%; }

/* === SELECTION === */
::selection {
  background: #0EA5E9;
  color: #fff;
}

/* === FOCUS VISIBLE === */
:focus-visible {
  outline: 2px solid #0EA5E9;
  outline-offset: 2px;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === CONTAINER === */
.container { max-width: 1350px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1920px; margin: 0 auto; }

/* ============================================
   HEADER
   ============================================ */
.header {
  background: #FFFFFF;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(14,165,233,.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-title {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Russo One", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0EA5E9;
}
.site-title img { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-menu a {
  color: #0C4A6E;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}
.nav-menu a:hover { color: #0EA5E9; }
.header-cta {
  background: linear-gradient(180deg, #EF4444, #DC2626);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(239,68,68,.3);
  color: #fff !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #0C4A6E;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switch {
  position: relative;
}
.lang-switch__current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #0C4A6E;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.lang-switch__current:hover {
  border-color: #0EA5E9;
  box-shadow: 0 2px 8px rgba(14,165,233,.08);
}
.lang-switch .flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}
.lang-switch__list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(14,165,233,.1);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  min-width: 160px;
  z-index: 1001;
}
.lang-switch.open .lang-switch__list {
  display: block;
}
.lang-switch__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: #0C4A6E;
  transition: background .15s;
}
.lang-switch__link:hover {
  background: #E0F2FE;
  color: #0EA5E9;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 50%, #BAE6FD 100%);
  padding: 60px 0 50px;
  position: relative;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-content { flex: 1; }
.hero-content h1 {
  font-size: 38px;
  margin-bottom: 18px;
  line-height: 1.2;
  color: #0C4A6E;
}
.hero-content h1 span { color: #0EA5E9; }
.hero-content p {
  font-size: 17px;
  color: #475569;
  margin-bottom: 28px;
  max-width: 560px;
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.demo-btn {
  display: inline-block;
  background: #0EA5E9;
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .2s, box-shadow .2s;
}
.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,165,233,.3);
  color: #fff !important;
}
.hero-btn {
  display: inline-block;
  background: linear-gradient(180deg, #EF4444, #DC2626);
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  animation: gl-pulse 2s infinite;
  transition: transform .2s;
}
.hero-btn:hover { transform: translateY(-2px); color: #fff !important; }
@keyframes gl-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.45); }
  70%  { box-shadow: 0 0 0 14px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.hero-image { flex: 0 0 480px; text-align: right; }
.hero-image img { max-height: 500px; margin-left: auto; }

/* ============================================
   NAVIGATION TABS
   ============================================ */
.nav-container {
  padding: 20px 0;
  background: #E0F2FE;
}
.nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #0EA5E9 !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  border: 1.5px solid #0EA5E9;
  box-shadow: 0 2px 8px rgba(14,165,233,.08);
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  min-height: 44px;
  cursor: pointer;
}
.nav-link:hover {
  background: #0EA5E9;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14,165,233,.1);
}

/* ============================================
   SECTION HEADINGS (consolidated)
   ============================================ */
.section-heading,
.section-intro h2,
.facts-section h2,
.instructions-section h2,
.features-section h2,
.pros-cons h2,
.mobile-section h2,
.odds-section h2,
.strategies-section h2,
.faq-section h2,
.content-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0EA5E9;
}
.section-intro h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

/* ============================================
   SECTION INTRO
   ============================================ */
.section-intro { padding: 40px 0 20px; }
.section-intro p {
  font-size: 16px;
  color: #475569;
  max-width: 800px;
}

/* ============================================
   CASINO CARDS
   ============================================ */
.casino-grid { padding: 20px 0 40px; }
.casino-card {
  display: grid;
  grid-template-columns: auto 200px 1fr auto;
  align-items: center;
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 18px 24px;
  position: relative;
  border: 1px solid #CBD5E1;
  border-left: 5px solid #94A3B8;
  box-shadow: 0 2px 8px rgba(14,165,233,.08);
  transition: transform .2s, box-shadow .2s;
  gap: 20px;
}
.casino-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,233,.15);
}
.casino-card.green  { border-left-color: #22C55E; }
.casino-card.orange { border-left-color: #F97316; }
.casino-card.gray   { border-left-color: #94A3B8; }

.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.casino-card.green .rank-badge  { background: #22C55E; }
.casino-card.orange .rank-badge { background: #F97316; }
.casino-card.gray .rank-badge   { background: #94A3B8; color: #333; }

.special-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 3px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.special-badge.gold   { background: #0EA5E9; color: #fff; }
.special-badge.silver { background: #BAE6FD; color: #0C4A6E; }

.logo-wrapper {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-wrapper img {
  max-height: 80px;
  max-width: 190px;
  object-fit: contain;
}

.card-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}
.info-section { flex: 0 0 160px; }
.info-section .casino-name {
  font-size: 17px;
  font-weight: 700;
  color: #0C4A6E;
  margin-bottom: 2px;
}
.info-section .rating {
  font-size: 14px;
  color: #0EA5E9;
  font-weight: 600;
}
.info-section .rating .stars { margin-right: 4px; }
.star-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #0EA5E9;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  vertical-align: middle;
  margin-right: 4px;
}
.bonus-section {
  flex: 1;
  font-size: 14px;
  color: #475569;
  min-width: 200px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #EF4444, #DC2626);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  min-height: 44px;
}
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(239,68,68,.3);
  color: #fff !important;
}

/* ============================================
   TABLES SHARED (Facts, Requirements, Odds)
   ============================================ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

/* Generic content tables (no class needed) */
main table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 24px;
}
main table th {
  background: #0EA5E9;
  color: #fff;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}
main table td {
  padding: 14px 20px;
  font-size: 15px;
  color: #475569;
}
main table tr:nth-child(odd) td { background: #FFFFFF; }
main table tr:nth-child(even) td { background: #E0F2FE; }
main table tr:first-child th:first-child { border-radius: 12px 0 0 0; }
main table tr:first-child th:last-child  { border-radius: 0 12px 0 0; }
main table tr:last-child td:first-child  { border-radius: 0 0 0 12px; }
main table tr:last-child td:last-child   { border-radius: 0 0 12px 0; }

main > p { font-size: 15px; color: #475569; margin-bottom: 14px; line-height: 1.7; }
main > p:has(> img) { max-width: 100%; }
main > ul, main > ol { margin: 14px 0 14px 20px; }
main > ul li { list-style: disc; font-size: 15px; color: #475569; padding: 4px 0; }
main > ol li { list-style: decimal; font-size: 15px; color: #475569; padding: 4px 0; }
main > h2 { font-size: 28px; margin: 32px 0 16px; color: #0EA5E9; }
main > h3 { font-size: 20px; margin: 24px 0 10px; color: #0C4A6E; }

.facts-section { padding: 40px 0; }
.facts-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.facts-table tr:nth-child(odd) { background: #FFFFFF; }
.facts-table tr:nth-child(even) { background: #E0F2FE; }
.facts-table td {
  padding: 14px 20px;
  font-size: 15px;
  color: #475569;
}
.facts-table td:first-child {
  font-weight: 700;
  color: #0EA5E9;
  width: 200px;
}
.facts-table tr:first-child td:first-child { border-radius: 12px 0 0 0; }
.facts-table tr:first-child td:last-child  { border-radius: 0 12px 0 0; }
.facts-table tr:last-child td:first-child  { border-radius: 0 0 0 12px; }
.facts-table tr:last-child td:last-child   { border-radius: 0 0 12px 0; }

/* ============================================
   GAME INSTRUCTIONS
   ============================================ */
.instructions-section { padding: 40px 0; }
.instructions-section h2 { margin-bottom: 30px; }
.step-block {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.step-block:nth-child(even) { flex-direction: row-reverse; }
.step-text { flex: 1; }
.step-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0C4A6E;
}
.step-text p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}
.step-image {
  flex: 0 0 380px;
}
.step-image img {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(14,165,233,.1);
  max-width: 100%;
}

/* ============================================
   GAME FEATURES
   ============================================ */
.features-section { padding: 40px 0; }
.features-section h2 { margin-bottom: 24px; }
.feature-item {
  padding: 16px 0;
  border-bottom: 1px solid #CBD5E1;
}
.feature-item:last-child { border-bottom: none; }
.feature-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #0C4A6E;
}
.feature-item p {
  font-size: 15px;
  color: #475569;
}

/* ============================================
   PROS & CONS
   ============================================ */
.pros-cons { padding: 40px 0; }
.pros-cons h2 { margin-bottom: 24px; }
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pros-box, .cons-box {
  padding: 28px;
  border-radius: 12px;
  transition: transform .2s;
}
.pros-box:hover, .cons-box:hover { transform: translateY(-3px); }
.pros-box {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
}
.cons-box {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.25);
}
.pros-box h3 {
  color: #22C55E;
  font-size: 20px;
  margin-bottom: 16px;
}
.cons-box h3 {
  color: #EF4444;
  font-size: 20px;
  margin-bottom: 16px;
}
.pros-box li, .cons-box li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: #475569;
}
.pros-box li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #22C55E;
  font-weight: 700;
  font-size: 16px;
}
.cons-box li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 700;
  font-size: 16px;
}

/* ============================================
   CONTENT SECTIONS (Graphics, Comparison, etc.)
   ============================================ */
.content-section { padding: 40px 0; }
.content-section h3 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: #0C4A6E;
}
.content-section p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 14px;
  line-height: 1.7;
}
.content-section ul {
  margin: 14px 0 14px 20px;
}
.content-section ul li {
  font-size: 15px;
  color: #475569;
  padding: 4px 0;
  list-style: disc;
}
.content-section img {
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 4px 16px rgba(14,165,233,.1);
}

/* ============================================
   MOBILE SECTION
   ============================================ */
.mobile-section { padding: 40px 0; }
.mobile-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.mobile-text { flex: 1; }
.mobile-text p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 16px;
  line-height: 1.7;
}
.mobile-image { flex: 0 0 320px; text-align: center; }
.mobile-image img {
  max-height: 440px;
  border-radius: 16px;
}
.req-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 600px;
  margin: 24px 0;
}
.req-table tr:nth-child(odd) { background: #FFFFFF; }
.req-table tr:nth-child(even) { background: #E0F2FE; }
.req-table td {
  padding: 12px 18px;
  font-size: 14px;
  color: #475569;
}
.req-table td:first-child {
  font-weight: 700;
  color: #0EA5E9;
  width: 160px;
}
.download-btn {
  display: inline-block;
  background: linear-gradient(180deg, #EF4444, #DC2626);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  min-height: 44px;
}
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239,68,68,.3);
  color: #fff !important;
}

/* ============================================
   ODDS TABLES
   ============================================ */
.odds-section { padding: 40px 0; }
.odds-section h3 {
  font-size: 20px;
  margin: 28px 0 14px;
  color: #0C4A6E;
}
.odds-section p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 14px;
  line-height: 1.7;
}
.odds-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto 24px;
}
.odds-table th {
  background: #0EA5E9;
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.odds-table td {
  padding: 10px 18px;
  font-size: 14px;
  color: #475569;
}
.odds-table tr:nth-child(odd) td { background: #FFFFFF; }
.odds-table tr:nth-child(even) td { background: #E0F2FE; }
.odds-table tr:first-child th:first-child { border-radius: 12px 0 0 0; }
.odds-table tr:first-child th:last-child  { border-radius: 0 12px 0 0; }
.odds-table tr:last-child td:first-child  { border-radius: 0 0 0 12px; }
.odds-table tr:last-child td:last-child   { border-radius: 0 0 12px 0; }
.odds-section img {
  border-radius: 12px;
  margin: 20px auto;
  box-shadow: 0 4px 16px rgba(14,165,233,.1);
  display: block;
}

/* ============================================
   STRATEGIES / SLIDER
   ============================================ */
.strategies-section { padding: 40px 0; }
.strategies-section p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 14px;
  line-height: 1.7;
}

/* slider */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 24px 0;
  max-width: 700px;
}
.slider__track {
  display: flex;
  transition: transform .4s ease;
}
.slider__slide {
  min-width: 100%;
  flex-shrink: 0;
}
.slider__slide img {
  width: 100%;
  border-radius: 12px;
}
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  color: #0EA5E9;
  border: 2px solid #0EA5E9;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.slider__btn:hover { background: #BAE6FD; }
.slider__btn--prev { left: 12px; }
.slider__btn--next { right: 12px; }
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}
.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.slider__dot.active { background: #0EA5E9; }

.strategy-list { margin-top: 20px; }
.strategy-item {
  padding: 14px 0;
  border-bottom: 1px solid #CBD5E1;
}
.strategy-item:last-child { border-bottom: none; }
.strategy-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #0C4A6E;
}
.strategy-item p {
  font-size: 15px;
  color: #475569;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding: 40px 0; }
.faq-item {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 50px 18px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #0EA5E9;
  position: relative;
  list-style: none;
  transition: background .2s;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #EF4444;
  transition: transform .3s;
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item summary:hover { background: rgba(14,165,233,.04); }
.faq-item p {
  padding: 0 22px 20px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  animation: gl-fadeIn .3s ease;
}
@keyframes gl-fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   AUTHOR SECTION
   ============================================ */
.author-section {
  padding: 40px 0;
  border-top: 1px solid #CBD5E1;
}
.author-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid #0EA5E9;
  box-shadow: 0 2px 8px rgba(14,165,233,.08);
}
.author-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #0EA5E9, #38BDF8);
  padding: 3px;
}
.author-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h3 {
  font-size: 20px;
  color: #0C4A6E;
  margin-bottom: 2px;
}
.author-info .role {
  font-size: 14px;
  color: #64748B;
}
.expertise-badge {
  display: inline-block;
  background: rgba(14,165,233,.1);
  color: #0EA5E9;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.author-bio {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}
.highlight-box {
  background: rgba(14,165,233,.06);
  border-left: 3px solid #0EA5E9;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin-top: 16px;
  font-size: 14px;
  color: #475569;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0C4A6E;
  padding: 40px 0 24px;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-responsible {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  max-width: 800px;
  margin: 0 auto 28px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-nav__link {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}
.footer-nav__link:hover {
  color: rgba(255,255,255,.9);
}
.footer-certs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-certs img {
  height: 40px;
  opacity: .75;
  transition: opacity .2s;
}
.footer-certs img:hover { opacity: 1; }
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* ============================================
   SCROLL-MARGIN-TOP (anchor offset for sticky header)
   ============================================ */
[id] {
  scroll-margin-top: 80px;
}

/* ============================================
   FLOATING TOC FAB
   ============================================ */
.toc-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #0EA5E9;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(14,165,233,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
  transition: opacity .3s, transform .3s, background .2s;
}
.toc-fab.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.toc-fab:hover {
  background: #38BDF8;
}
.toc-fab__icon { display: block; }
.toc-fab__icon--close { display: none; }
.toc-fab[aria-expanded="true"] .toc-fab__icon--menu { display: none; }
.toc-fab[aria-expanded="true"] .toc-fab__icon--close { display: block; }

/* ============================================
   TOC PANEL
   ============================================ */
.toc-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 895;
  width: 280px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #CBD5E1;
  box-shadow: 0 8px 32px rgba(14,165,233,.18), 0 0 0 1px rgba(14,165,233,.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity .25s, transform .25s;
  overflow: hidden;
}
.toc-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.toc-panel__header {
  padding: 14px 20px;
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  color: #0C4A6E;
  border-bottom: 1px solid #CBD5E1;
}
.toc-panel__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  max-height: 60vh;
  overflow-y: auto;
}
.toc-panel__link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  color: #475569 !important;
  border-left: 3px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.toc-panel__link:hover {
  background: rgba(14,165,233,.04);
  color: #0EA5E9 !important;
}
.toc-panel__link.active {
  border-left-color: #0EA5E9;
  background: rgba(14,165,233,.08);
  color: #0EA5E9 !important;
  font-weight: 700;
}

/* ============================================
   TOC BACKDROP
   ============================================ */
.toc-backdrop {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: rgba(12,74,110,.25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.toc-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   BACK-TO-TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: #0EA5E9;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
  transition: opacity .3s, transform .3s, background .2s, color .2s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.back-to-top:hover {
  background: #0EA5E9;
  color: #fff;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.25rem; background: #0C4A6E;
  color: #E0F2FE; font-size: .875rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center;
  transform: translateY(100%); transition: transform .4s; z-index: 4000;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: #EF4444; }
.cookie-btn {
  background: #EF4444; color: #fff;
  border: none; border-radius: 4px; padding: .5rem 1.25rem;
  font-weight: 600; cursor: pointer; transition: background .2s;
}
.cookie-btn:hover { background: #DC2626; }

/* ============================================
   RESPONSIVE — Tablet <= 1024px
   ============================================ */
@media (max-width: 1024px) {
  .casino-card {
    display: flex;
    flex-wrap: wrap;
    padding: 18px;
    gap: 16px;
  }
  .card-info { flex: 1 1 100%; }
  .hero-image { flex: 0 0 360px; }
  .step-block, .step-block:nth-child(even) {
    flex-direction: column;
  }
  .step-image { flex: 0 0 auto; max-width: 100%; }
}

/* ============================================
   RESPONSIVE — Mobile <= 767px
   ============================================ */
@media (max-width: 767px) {
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .menu-toggle { display: flex; }
  .nav-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 12px;
    padding-top: 0;
    transition: max-height .35s ease, padding .35s ease;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(14,165,233,.08);
    z-index: 999;
  }
  .nav-menu.open {
    display: flex;
    max-height: 320px;
    padding: 12px 0;
  }
  .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    min-height: 44px;
  }
  .site-title { font-size: 18px; }

  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 15px; margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }
  .hero-image { flex: 0 0 auto; max-width: 85vw; margin: 0 auto; }

  .pros-cons-grid { grid-template-columns: 1fr; }

  .casino-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .rank-badge {
    position: static;
    transform: none;
    margin-bottom: 4px;
  }
  .logo-wrapper {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }
  .logo-wrapper img {
    max-height: 100px;
    max-width: 240px;
  }
  .card-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .info-section {
    flex: 0 0 auto;
    text-align: center;
  }
  .info-section .casino-name {
    font-size: 19px;
  }
  .bonus-section {
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    color: #0C4A6E;
    padding: 8px 12px;
    background: rgba(14, 165, 233, .06);
    border-radius: 8px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 8px;
  }

  .mobile-inner { flex-direction: column; }
  .mobile-image { flex: 0 0 auto; max-width: 260px; }

  .step-block, .step-block:nth-child(even) { flex-direction: column; }
  .step-image { flex: 0 0 auto; }

  .container { padding: 0 16px; }

  .section-heading,
  .section-intro h2,
  .facts-section h2,
  .instructions-section h2,
  .features-section h2,
  .pros-cons h2,
  .mobile-section h2,
  .odds-section h2,
  .strategies-section h2,
  .faq-section h2,
  .content-section h2 {
    font-size: 22px;
  }

  .author-header { flex-direction: column; text-align: center; }

  .nav-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    gap: 8px;
  }
  .nav-row::-webkit-scrollbar {
    display: none;
  }
  .nav-link {
    padding: 8px 16px;
    font-size: 13px;
  }

  .lang-switch__current span {
    display: none;
  }
  .lang-switch__current {
    padding: 6px 8px;
  }
  .lang-switch__list {
    right: 0;
    min-width: 150px;
  }

  .cookie-banner { flex-direction: column; text-align: center; }
}

/* ============================================
   RESPONSIVE — Small <= 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 22px; }
  .btn-group { flex-direction: column; align-items: center; }
  .demo-btn, .hero-btn { width: 100%; text-align: center; justify-content: center; }
  .facts-table td:first-child { width: auto; }
  .casino-card { padding: 20px 16px; }
  .logo-wrapper img {
    max-height: 88px;
    max-width: 220px;
  }
  .nav-link {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 40px;
  }

  .toc-fab {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 16px;
  }
  .back-to-top {
    bottom: 84px;
    right: 16px;
  }
  .toc-panel {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 84px;
  }
}

/* ============================================
   FLOATING TOC/BTT — RESPONSIVE
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .toc-fab,
  .toc-panel,
  .toc-backdrop,
  .back-to-top {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .toc-fab,
  .toc-panel,
  .toc-backdrop,
  .back-to-top {
    display: none !important;
  }
}

/* ============================================
   Contact Form — Ice Fishing Theme
   Prefix: .cf-
   ============================================ */

.cf-wrap {
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(14,165,233,.08);
  padding: 2rem 2.5rem;
}

.cf-title {
  font-family: "Russo One", sans-serif;
  color: #0C4A6E;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cf-group {
  margin-bottom: 1.25rem;
}

.cf-label {
  display: block;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  color: #0C4A6E;
  margin-bottom: .35rem;
  font-size: .95rem;
}

.cf-label .cf-req {
  color: #EF4444;
  margin-left: 2px;
}

.cf-input,
.cf-textarea {
  width: 100%;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1rem;
  color: #334155;
  background: #fff;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: .65rem .85rem;
  transition: border-color .2s, box-shadow .2s;
}

.cf-input:focus,
.cf-textarea:focus {
  outline: none;
  border-color: #0EA5E9;
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}

.cf-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Honeypot — hidden from humans */
.cf-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.cf-btn {
  display: block;
  width: 100%;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, #EF4444, #DC2626);
  border: none;
  border-radius: 8px;
  padding: .8rem 1.5rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  margin-top: .5rem;
}

.cf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220,38,38,.3);
}

.cf-btn:active {
  transform: translateY(0);
}

.cf-msg {
  text-align: center;
  padding: .85rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: .95rem;
}

.cf-msg--ok {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.cf-msg--err {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Responsive */
@media (max-width: 640px) {
  .cf-wrap {
    margin: 1rem;
    padding: 1.5rem 1.25rem;
  }

  .cf-title {
    font-size: 1.4rem;
  }
}
