/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: #212121;
  background: #f5f7fa;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1565c0; text-decoration: none; transition: color .2s; }
a:hover { color: #cc0066; }
ul, ol { padding-left: 1.25rem; }

/* === VARIABLES === */
:root {
  --blue: #1565c0;
  --blue-dark: #0d47a1;
  --blue-light: #e3f2fd;
  --pink: #cc0066;
  --pink-light: #fce4ec;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --gold: #f9a825;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-600: #757575;
  --gray-800: #424242;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);
  --radius: 10px;
  --radius-lg: 16px;
  --max-width: 1200px;
}

/* === UTILITY === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-pink { color: var(--pink); }
.text-green { color: var(--green); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === HEADER === */
.site-header {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
  white-space: nowrap;
}
.logo span { color: var(--pink); }

/* Nav */
.main-nav { display: flex; align-items: center; }
.main-nav ul { list-style: none; display: flex; gap: .25rem; padding: 0; flex-wrap: wrap; }
.main-nav a {
  color: rgba(255,255,255,.9);
  padding: .45rem .75rem;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 500;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: .25rem;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1976d2 100%);
  color: var(--white);
  padding: 3.5rem 1rem 3rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  opacity: .92;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.hero-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* === BREADCRUMB === */
.breadcrumb {
  background: var(--white);
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: .85rem;
}
.breadcrumb ol { list-style: none; display: flex; gap: .5rem; padding: 0; max-width: var(--max-width); margin: 0 auto; flex-wrap: wrap; }
.breadcrumb li::after { content: '/'; margin-left: .5rem; color: var(--gray-600); }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--blue); }
.breadcrumb li:last-child { color: var(--gray-600); }

/* === SECTIONS === */
.section { padding: 3rem 0; }
.section:nth-child(even) { background: var(--white); }
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: .5rem;
}
.section-subtitle {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 650px;
}

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* === CASINO TABLE === */
.casino-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.casino-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.casino-table thead {
  background: var(--blue-dark);
  color: var(--white);
}
.casino-table th {
  padding: .85rem 1rem;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: left;
  white-space: nowrap;
}
.casino-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: .92rem;
  vertical-align: middle;
}
.casino-table tbody tr:hover { background: var(--blue-light); }
.casino-table tbody tr:last-child td { border-bottom: none; }

.casino-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: .82rem;
}
.casino-rank.top3 { background: var(--gold); color: #333; }

/* Casino card (alternative list layout) */
.casino-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.casino-card:hover { box-shadow: var(--shadow-md); }
.casino-card-rank {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  min-width: 40px;
  text-align: center;
}
.casino-card-rank.gold { color: var(--gold); }
.casino-card-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .35rem; }
.casino-card-info h3 a { color: var(--blue-dark); }
.casino-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--gray-600);
}
.casino-card-meta span { display: flex; align-items: center; gap: .25rem; }
.casino-card-cta { text-align: center; }

/* Rating stars */
.stars { color: var(--gold); font-size: .95rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; color: var(--blue-dark); font-size: .95rem; margin-left: .25rem; }

/* === PAYMENT BADGES === */
.payment-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.badge-ideal { background: #cc0066; color: #fff; }
.badge-trustly { background: #0b6; color: #fff; }
.badge-visa { background: #1a1f71; color: #fff; }
.badge-mc { background: #eb001b; color: #fff; }
.badge-paypal { background: #003087; color: #fff; }
.badge-skrill { background: #862165; color: #fff; }
.badge-neteller { background: #85b300; color: #fff; }
.badge-paysafe { background: #003d6b; color: #fff; }
.badge-crypto { background: #f7931a; color: #fff; }
.badge-bank { background: #546e7a; color: #fff; }
.badge-wero { background: #5c2d91; color: #fff; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: .7rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover { background: #a30052; color: var(--white); }
.btn-secondary { background: var(--blue); color: var(--white); }
.btn-secondary:hover { background: var(--blue-dark); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #1b5e20; color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }

/* === FEATURE GRID === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-icon.blue { background: var(--blue-light); color: var(--blue); }
.feature-icon.pink { background: var(--pink-light); color: var(--pink); }
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--blue-dark); }
.feature-card p { font-size: .9rem; color: var(--gray-600); }

/* === COMPARISON TABLE === */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.comparison-table th {
  background: var(--blue);
  color: var(--white);
  padding: .75rem 1rem;
  text-align: left;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.comparison-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: .9rem;
}
.comparison-table tbody tr:nth-child(even) { background: var(--gray-50); }
.comparison-table tbody tr:hover { background: var(--blue-light); }
.check { color: var(--green); font-weight: 700; }
.cross { color: #c62828; font-weight: 700; }

/* === PROS CONS === */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.pros, .cons {
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pros { background: var(--green-light); border: 1px solid #c8e6c9; }
.cons { background: #fce4ec; border: 1px solid #f8bbd0; }
.pros h3, .cons h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; }
.pros h3 { color: var(--green); }
.cons h3 { color: #c62828; }
.pros li, .cons li { margin-bottom: .4rem; font-size: .9rem; }

/* === STEP BY STEP === */
.steps { counter-reset: step; margin: 2rem 0; }
.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; color: var(--blue-dark); }
.step-content p { font-size: .92rem; color: var(--gray-800); }

/* === FAQ ACCORDION === */
.faq-list { margin: 2rem 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.15rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: .92rem; color: var(--gray-800); line-height: 1.7; }

/* === INFO BOX === */
.info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .92rem;
}
.info-box.warning {
  background: #fff8e1;
  border-left-color: var(--gold);
}
.info-box.danger {
  background: #fce4ec;
  border-left-color: #c62828;
}
.info-box strong { display: block; margin-bottom: .35rem; }

/* === DISCLAIMER / 18+ === */
.disclaimer-bar {
  background: #263238;
  color: rgba(255,255,255,.85);
  padding: 1rem;
  text-align: center;
  font-size: .82rem;
  line-height: 1.6;
}
.disclaimer-bar strong { color: #ef5350; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #ef5350;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: .85rem;
  margin: 0 .35rem;
  vertical-align: middle;
}

/* === FOOTER === */
.site-footer {
  background: #0d1b2a;
  color: rgba(255,255,255,.75);
  padding: 3rem 1rem 1rem;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: .85rem; line-height: 1.7; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 0 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* === CONTENT ARTICLE === */
.content-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1rem 3rem;
}
.content-article h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 2.5rem 0 .75rem;
  padding-top: .5rem;
}
.content-article h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
  margin: 2rem 0 .5rem;
}
.content-article p { margin-bottom: 1rem; font-size: .95rem; }
.content-article ul, .content-article ol { margin-bottom: 1rem; }
.content-article li { margin-bottom: .35rem; font-size: .93rem; }

/* === TOC === */
.toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.toc h2 { font-size: 1rem !important; margin: 0 0 .75rem !important; padding: 0 !important; }
.toc ol { padding-left: 1.25rem; margin-bottom: 0; }
.toc li { margin-bottom: .35rem; font-size: .9rem; }
.toc a { color: var(--blue); font-weight: 500; }

/* === PAYMENT METHOD CARD === */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.payment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.payment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.payment-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.payment-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--blue-dark); }
.payment-card p { font-size: .88rem; color: var(--gray-600); margin-bottom: .75rem; }
.payment-card .btn { width: 100%; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: .25rem; }
  .main-nav a { display: block; padding: .65rem 1rem; }
  .casino-card { grid-template-columns: 1fr; text-align: center; }
  .casino-card-meta { justify-content: center; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.55rem; }
  .hero p { font-size: 1rem; }
  .section-title { font-size: 1.35rem; }
  .hero { padding: 2.5rem 1rem 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
}

/* === SIMPLE JS TOGGLE (FAQ) === */
.faq-item.open .faq-answer { max-height: 500px; }

/* === LINK GRID === */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.link-grid a {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
}
.link-grid a:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }

/* === HIGHLIGHT NUMBER === */
.highlight-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.highlight-num small { font-size: .85rem; font-weight: 500; color: var(--gray-600); display: block; }
