/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style-position: inside;
}

/* ===================================
   LAYOUT
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  min-height: 60vh;
}

/* ===================================
   HEADER
   =================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.header-logo-wrapper {
  display: flex;
  justify-content: center;
}

.header-logo {
  display: block;
  transition: opacity 0.2s;
}

.header-logo:hover {
  opacity: 0.8;
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header-separator {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  max-width: 800px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  font-size: 14px;
  font-weight: 500;
  color: #dc2626;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: opacity 0.2s;
}

.nav-dropdown-trigger:hover {
  opacity: 0.8;
}

.caret {
  font-size: 10px;
  line-height: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 320px;
  max-width: 400px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 110;
}

.nav-dropdown.active .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.5;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #f9fafb;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  top: 24px;
  right: 20px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #1f2937;
  transition: all 0.3s;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #1f2937;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  white-space: nowrap;
}

.language-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-link {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  transition: color 0.2s;
}

.lang-link:hover {
  color: #2563eb;
}

.separator {
  color: #d1d5db;
  font-size: 14px;
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 90%;
  height: 100%;
  background: #ffffff;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  padding: 14px 16px;
  font-size: 16px;
  color: #1f2937;
  border-radius: 8px;
  transition: background-color 0.2s;
  display: block;
}

.mobile-nav-link:hover {
  background-color: #f3f4f6;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
  padding: 60px 0 40px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 16px;
}

.intro-text {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===================================
   RANKINGS SECTION
   =================================== */
.rankings-section {
  padding: 40px 0;
}

.casino-card {
  background: #1e293b;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-wrap: wrap;
}

.rank-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.casino-logo {
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
}

.casino-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.casino-info {
  flex: 1;
  min-width: 200px;
}

.casino-name {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stars {
  color: #fbbf24;
  font-size: 16px;
}

.rating-text {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 500;
}

.casino-bonus {
  color: #cbd5e1;
  font-size: 15px;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #475569;
}

.btn-secondary:hover {
  background: #334155;
  border-color: #64748b;
}
.btn-cta {
  position: relative;
  border-radius: 10px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  transform: translateZ(0);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.btn[aria-disabled="true"],
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 120% at 20% 0%, rgba(255,255,255,0.28), rgba(255,255,255,0) 55%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    padding: 14px 18px;
  }
}
.btn-centered {
  display: inline-flex;
  margin: 20px auto;
}
.btn-centered {
  display: block;
  width: fit-content;
  margin: 24px auto;
}
/* ===================================
   CONTENT SECTION
   =================================== */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  margin-top: 32px;
}

.content-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
  margin-top: 20px;
}

.content-section p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.content-section ul,
.content-section ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #4b5563;
}

.content-section strong {
  color: #1f2937;
  font-weight: 600;
}

.info-box {
  background: #f0f9ff;
  border-left: 4px solid #2563eb;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.info-box h4 {
  margin-top: 0;
  color: #1e40af;
}

.info-box ul {
  margin-bottom: 0;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
  padding: 60px 0 80px;
  background: #f9fafb;
}

.faq-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: #2563eb;
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background-color: #f9fafb;
}

.faq-content {
  padding: 0 24px 20px;
}

.faq-content p {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.faq-content a {
  color: #2563eb;
  text-decoration: underline;
}

.faq-content a:hover {
  color: #1d4ed8;
}

/* ===== FOOTER BASE ===== */

footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 20px;
  text-align: center;
}

footer p {
  margin: 0 auto 18px;
  max-width: 900px;
  line-height: 1.6;
  font-size: 14px;
}

/* ===== TRUST TEXT ===== */

.footer-trust-text {
  opacity: 0.85;
}

/* ===== TRUST LOGOS ===== */

.footer-new-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.footer-new-trust a {
  display: inline-block;
}

.footer-new-trust img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.footer-new-trust img:hover {
  opacity: 0.8;
}

/* ===== FOOTER LINKS ===== */

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.75;
}

/* ===== COPYRIGHT ===== */

footer > p:last-child {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  footer {
    padding: 30px 16px;
  }

  .footer-new-trust {
    gap: 16px;
  }

  .footer-new-trust img {
    height: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  footer p {
    font-size: 13px;
  }

}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

  .intro-text {
    font-size: 20px;
  }

  .casino-card {
    flex-wrap: nowrap;
  }

  .casino-actions {
    flex-direction: row;
    min-width: 280px;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 16px 0;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-image {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: 32px;
  }

  .hero-section {
    padding: 40px 0 30px;
  }

  .casino-card {
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .rank-badge {
    top: 20px;
    left: 20px;
  }

  .casino-logo {
    margin-left: 0;
    width: 80px;
    height: 80px;
  }

  .casino-info {
    width: 100%;
  }

  .casino-actions {
    width: 100%;
  }

  .casino-actions .btn {
    width: 100%;
  }

  .content-section h2 {
    font-size: 28px;
  }

  .faq-section h2 {
    font-size: 28px;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  .intro-text {
    font-size: 16px;
  }
}

.pros-cons{margin:24px 0;}
.pros-cons__grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}

.pc-card{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:18px 18px 16px;box-shadow:0 4px 12px rgba(0,0,0,.06);}
.pc-card__title{margin:0 0 12px;font-size:18px;line-height:1.2;font-weight:700;color:#111827;}

.pc-card--pros{border-left:4px solid #16a34a;}
.pc-card--cons{border-left:4px solid #dc2626;}

.pc-list{margin:0;padding:0;list-style:none;display:grid;gap:10px;}
.pc-list__item{position:relative;padding-left:30px;line-height:1.6;color:#4b5563;}

.pc-list__item::before{position:absolute;left:0;top:2px;width:20px;height:20px;border-radius:999px;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;}

.pc-list--pros .pc-list__item::before{content:"✓";background:rgba(22,163,74,.12);border:1px solid rgba(22,163,74,.25);color:#166534;}
.pc-list--cons .pc-list__item::before{content:"✕";background:rgba(220,38,38,.10);border:1px solid rgba(220,38,38,.22);color:#991b1b;}

@media (max-width:767px){
  .pros-cons__grid{grid-template-columns:1fr;}
  .pc-card{padding:16px;}
  .pc-card__title{font-size:17px;}
}

/* Table fix: responsive without horizontal scroll, CSS-only */
.table-wrap{
  width:100%;
  max-width:100%;
  overflow:hidden;
  border-radius:16px;
  background:#ffffff;
  border:1px solid #e5e7eb;
}

.data-table{
  width:100%;
  max-width:100%;
  border-collapse:separate;
  border-spacing:0;
  table-layout:fixed;
}

.data-table th,
.data-table td{
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  hyphens:auto;
  min-width:0;
}

.data-table thead th{
  text-align:left;
  font-weight:700;
  color:#ffffff;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  padding:14px 16px;
}

.data-table tbody td{
  padding:14px 16px;
  border-top:1px solid #e5e7eb;
  color:#4b5563;
  vertical-align:top;
}

.data-table tbody tr:first-child td{
  border-top:none;
}

.data-table tbody tr:nth-child(even) td{
  background:#f9fafb;
}

.data-table tbody tr:hover td{
  background:#eef2ff;
}

.data-table td:first-child{
  font-weight:600;
  color:#111827;
}

@media (max-width:767px){
  .table-wrap{
    overflow:hidden;
  }

  .data-table{
    width:100%;
    max-width:100%;
    table-layout:fixed;
  }

  .data-table thead th,
  .data-table tbody td{
    padding:12px 12px;
  }
}
.howto{
  margin:28px 0;
  padding:18px;
  border:1px solid #e5e7eb;
  border-radius:16px;
  background:linear-gradient(135deg,#eef2ff,#ffffff);
  box-shadow:0 12px 26px rgba(37,99,235,.14);
}

.howto__head{
  margin-bottom:12px;
}

.howto__title{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.2;
  font-weight:800;
  color:#111827;
}

.howto__subtitle{
  margin:0;
  color:#4b5563;
  line-height:1.6;
}

.howto__steps{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.howto__step{
  display:grid;
  grid-template-columns:32px 1fr;
  gap:12px;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#ffffff;
}

.howto__num{
  width:32px;
  height:32px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:13px;
  color:#ffffff;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.howto__step-title{
  margin:0 0 4px;
  font-weight:800;
  color:#111827;
}

.howto__step-text{
  margin:0;
  color:#4b5563;
  line-height:1.6;
}

.table-wrap{
  margin:28px 0;
  border-radius:16px;
  border:1px solid #e5e7eb;
  background:#ffffff;
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}

.data-table thead th:first-child{
  border-top-left-radius:16px;
}

.data-table thead th:last-child{
  border-top-right-radius:16px;
}

.data-table tbody tr:last-child td:first-child{
  border-bottom-left-radius:16px;
}

.data-table tbody tr:last-child td:last-child{
  border-bottom-right-radius:16px;
}

@media (max-width:767px){
  .howto{
    padding:16px;
  }

  .howto__step{
    grid-template-columns:30px 1fr;
    padding:11px;
  }

  .howto__num{
    width:30px;
    height:30px;
    font-size:12px;
  }
}
@media (max-width:767px){
  .rankings-section{padding-bottom:24px;}
  .content-section{padding-top:24px;padding-bottom:24px;}
  .content-section h2{margin-top:24px;}
  .content-section h3{margin-top:20px;}
  .table-wrap{margin-top:16px;margin-bottom:16px;}
}
@media (max-width: 767px){
  .site-header{
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .mobile-menu-toggle{
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1100;
    display: flex;
    background: rgba(255,255,255,.92);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
  }

  body.menu-open .mobile-menu-toggle{
    background: rgba(255,255,255,.98);
  }
}
.btn-cta {
  position: relative;
  border-radius: 10px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  transform: translateZ(0);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.btn[aria-disabled="true"],
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 120% at 20% 0%, rgba(255,255,255,0.28), rgba(255,255,255,0) 55%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    padding: 14px 18px;
  }
}
.btn {
  display: inline-flex;
  justify-content: center;
}

.btn-primary {
  margin: 24px auto;
}
.btn-centered {
  display: block;
  width: fit-content;
  margin: 24px auto;
}

.center-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
}

.btn-primary {
  background: #28a745;
  color: #fff;
}

.btn-primary:hover {
  background: #218838;
}

.btn-secondary {
  background: #ffc107;
  color: #000;
}

.btn-secondary:hover {
  background: #e0a800;
}