/* Global site style (aligned to mega888-login) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --blue-dark: #1D4ED8;
  --indigo: #6366F1;
  --bg: #F8FAFF;
  --surface: #FFFFFF;
  --card: #FFFFFF;
  --border: #E2E8F4;
  --text: #1A1F36;
  --muted: #64748B;
  --light: #F1F5FE;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.10);
  --ring: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Links */
a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--blue-dark); }

/* Accessible focus */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
}

/* Icon system (Lucide) */
.icon {
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.15em;
  color: currentColor;
}
.icon-lg { width: 1.35em; height: 1.35em; }
.icon-xl { width: 1.8em; height: 1.8em; }
.icon-muted { color: var(--muted); }

/* Nav */
nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
}
.nav-toggle:hover { border-color: rgba(59,130,246,0.35); color: var(--blue-dark); }

/* Top quick download strip */
.dl-top {
  background: linear-gradient(135deg, rgba(59,130,246,0.10), rgba(99,102,241,0.08));
  border-bottom: 1px solid var(--border);
}
.dl-top-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.dl-top-left { min-width: 260px; }
.dl-top-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
}
.dl-top-sub {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.dl-top-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; display: block; }
nav ul { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.35rem 0.25rem;
}
nav ul a:hover { color: var(--blue); }
nav ul a.active { color: var(--blue); font-weight: 600; }
.nav-cta, .nav-login-btn, .nav-dl {
  background: var(--blue);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  font-weight: 700 !important;
  border: 1px solid rgba(29, 78, 216, 0.0);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.18);
}
.nav-cta:hover, .nav-login-btn:hover, .nav-dl:hover {
  background: var(--blue-dark);
  color: #fff !important;
}

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: var(--shadow-md);
  display: none;
  z-index: 200;
}
.nav-drop-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
  /* Hover bridge: allows cursor to travel down */
  background: transparent;
}
.nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
}
.nav-drop-menu a:hover {
  background: var(--light);
  color: var(--blue-dark);
}
.nav-dropdown.open .nav-drop-menu { display: block; }

@media (min-width: 901px) {
  /* Desktop: hover open (less sensitive, no gap) */
  .nav-dropdown:hover .nav-drop-menu { display: block; }
}

/* Page hero */
.hero {
  background: linear-gradient(135deg, #EEF2FF 0%, #F0F9FF 50%, #F8FAFF 100%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.25rem;
  align-items: start;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb-sep { color: var(--border); }

h1 {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
h1 span, h1 em { color: var(--blue); font-style: normal; }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}
.chip.green { border-color: #D1FAE5; color: var(--success); background: #F0FDF4; }

/* Containers / sections */
.container { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.section-alt, .section-divider, .features-bg, .cta-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-tag, .section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
p { color: var(--muted); margin-bottom: 0.9rem; font-size: 0.95rem; }
p strong { color: var(--text); }

/* Cards */
.card, .login-widget, .feature-card, .tip-card, .step-item, .sec-card, .alt-card, .faq-item, .problem-card, .security-item, .game-card, .toc, .verdict-box, .app-card, .stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.feature-card, .tip-card { padding: 1.25rem; }
.security-item { padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.security-icon { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.login-widget { padding: 2rem; box-shadow: var(--shadow-md); }
.widget-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.widget-header h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.widget-header p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.18);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(59,130,246,0.28);
  color: #fff !important;
}
.btn-primary:focus-visible { color: #fff !important; }
.btn:active { transform: translateY(0px); }
.btn-outline {
  background: rgba(255,255,255,0.65);
  color: var(--text);
  border-color: rgba(100,116,139,0.25);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}
.btn-outline:hover {
  border-color: rgba(59,130,246,0.45);
  background: rgba(59,130,246,0.08);
  color: var(--blue-dark);
  transform: translateY(-1px);
}
.btn:visited { color: inherit; }
.btn-primary:visited { color: #fff; }

/* Buttons on dark surfaces */
.cta-box .btn-outline,
.final-verdict .btn-outline,
.trusted-panel .btn-outline,
.trusted-panel .btn {
  background: rgba(255,255,255,0.08);
  border-color: rgba(226,232,240,0.22);
  color: rgba(248,250,252,0.92);
}
.cta-box .btn-outline:hover,
.final-verdict .btn-outline:hover,
.trusted-panel .btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(226,232,240,0.34);
  color: #fff;
}
.btn-block { width: 100%; }
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.88rem; border-radius: 8px; }

/* CTA block (shared) */
.cta-box {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  margin: 0 2rem;
  box-shadow: var(--shadow-md);
}
.cta-box h2 { color: #fff; }
.cta-box p { color: rgba(255,255,255,0.82); }
.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--blue);
  padding: 0.85rem 2.25rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 24px rgba(15,23,42,0.10);
}
.cta-btn-white:hover { transform: translateY(-2px); }

/* Small divider row */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Forms */
.form-field { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-forgot {
  display: block;
  text-align: right;
  font-size: 0.78rem;
  color: var(--blue);
  text-decoration: none;
  margin-top: 0.3rem;
}

/* FAQ */
.faq-list, .faq-wrap { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.faq-q {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  user-select: none;
  color: var(--text);
}
.faq-q:hover { color: var(--blue); }
.faq-a { padding: 0 1.25rem 0.9rem; font-size: 0.88rem; color: var(--muted); display: none; }
.faq-item.open .faq-a { display: block; }
.faq-arrow { color: var(--blue); transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* Partners / verified brands */
.partners-wrap { margin-top: 2rem; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.25rem; }
.partner-card { padding: 1.25rem; display: flex; gap: 1rem; align-items: center; }
.partner-logo {
  width: 88px;
  height: 40px;
  border: 1px dashed rgba(100,116,139,0.45);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(241,245,254,0.8), rgba(248,250,255,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.partner-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.partner-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.partner-name { font-weight: 800; font-size: 0.95rem; color: var(--text); }
.partner-note { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* Trusted partners hero (dark module inside light site) */
.trusted {
  padding: 1.25rem 0 0;
}
.trusted-panel {
  border-radius: 18px;
  padding: 1.25rem;
  background: radial-gradient(1200px 300px at 20% 0%, rgba(99,102,241,0.20), transparent 65%),
              radial-gradient(900px 260px at 90% 90%, rgba(59,130,246,0.18), transparent 55%),
              linear-gradient(180deg, #0B1220 0%, #060B16 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.35);
  color: #E5E7EB;
  overflow: hidden;
}
.trusted-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.trusted-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: #F8FAFC;
}
.trusted-sub {
  margin: 0.35rem 0 0;
  color: rgba(226,232,240,0.72);
  font-size: 0.86rem;
}
.trusted-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.1rem;
}
.trusted-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.trusted-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.14);
  width: 100%;
}
.trusted-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.22);
  color: #86EFAC;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.trusted-name-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}
.trusted-name {
  font-weight: 900;
  color: #F8FAFC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trusted-desc {
  margin: 0.15rem 0 0;
  color: rgba(226,232,240,0.65);
  font-size: 0.8rem;
}
.trusted-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(148,163,184,0.10);
  border: 1px dashed rgba(148,163,184,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.trusted-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.82rem;
  text-decoration: none;
  color: #0B1220;
  background: #F8FAFC;
  border: 1px solid rgba(226,232,240,0.85);
  box-shadow: 0 10px 18px rgba(2,6,23,0.28);
  white-space: nowrap;
}
.btn-dark:hover { transform: translateY(-1px); }
.trusted-promo {
  border-radius: 16px;
  padding: 1.1rem;
  background: radial-gradient(700px 220px at 15% 10%, rgba(34,197,94,0.20), transparent 60%),
              linear-gradient(180deg, rgba(15,23,42,0.72), rgba(2,6,23,0.72));
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.trusted-promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.78);
}
.trusted-promo h3 {
  color: #F8FAFC;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}
.trusted-promo h3 span { color: #22C55E; }
.trusted-promo p {
  margin: 0;
  color: rgba(226,232,240,0.68);
  font-size: 0.86rem;
}
.trusted-promo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}
.trusted-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.15);
  flex-shrink: 0;
}
.trusted-footnote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(226,232,240,0.62);
  font-size: 0.78rem;
}

/* Login guide steps */
.login-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; position: relative; }
.login-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.lstep { display: flex; gap: 1.25rem; align-items: flex-start; padding: 0 0 2rem; position: relative; }
.lstep:last-child { padding-bottom: 0; }
.lstep-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg);
}
.lstep-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; flex: 1; }
.lstep-box h3 { color: var(--blue); }

/* Problem cards */
.problem-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.problem-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; border-radius: 12px; }
.problem-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #FEF3C7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400E;
}
.problem-icon.red { background: #FEE2E2; color: #991B1B; }
.problem-icon.green { background: #D1FAE5; color: #065F46; }
.problem-solution { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* Alt link grid */
.alt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.alt-card { padding: 1.25rem; text-align: center; }
.alt-icon { display: flex; justify-content: center; margin-bottom: 0.6rem; color: var(--blue); }
.alt-card h3 { font-size: 0.88rem; margin-bottom: 0.3rem; }
.alt-card p { font-size: 0.8rem; margin: 0; }

/* Security tips grid */
.sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.sec-card { padding: 1.25rem; }
.sec-card h3 { display: flex; align-items: center; gap: 0.55rem; }

/* Review page components */
.article-layout { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; }
.toc {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
}
.toc-title {
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}
.toc ol { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; }
.toc a { color: var(--blue); text-decoration: none; font-size: 0.9rem; }
.toc a:hover { text-decoration: underline; }

.procon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.procon-box { border-radius: 14px; padding: 1.25rem; border: 1px solid var(--border); }
.procon-box.pros { background: #F0FDF4; border-color: #BBF7D0; }
.procon-box.cons { background: #FEF2F2; border-color: #FCA5A5; }
.procon-title {
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.procon-title.green { color: #16A34A; }
.procon-title.red { color: #DC2626; }
.procon-list { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; }
.procon-list li { font-size: 0.88rem; color: #475569; }
.pros .procon-list li::marker { color: #16A34A; }
.cons .procon-list li::marker { color: #DC2626; }

.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.game-card { padding: 1rem; text-align: center; }
.game-icon { color: var(--blue); margin-bottom: 0.5rem; display: flex; justify-content: center; }
.game-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.25rem; color: var(--text); }
.game-rtp {
  display: inline-block;
  background: #EEF2FF;
  border: 1px solid rgba(99,102,241,0.25);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 8px;
}

.compare-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.compare-table th {
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
}
.compare-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); }
.compare-table tr:nth-child(even) td { background: var(--light); }
.compare-table .highlight { color: var(--blue-dark); font-weight: 800; }
.badge { display: inline-block; padding: 0.15rem 0.55rem; border-radius: 999px; font-size: 0.75rem; font-weight: 800; }
.badge-green { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.badge-amber { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }

blockquote {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: #EEF2FF;
  border-radius: 0 12px 12px 0;
}
blockquote p { color: var(--text); font-style: italic; margin: 0; }

.pull-quote {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 2rem 0;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.4;
}
.pull-quote span { color: rgba(255,255,255,0.9); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.35); }

.final-verdict {
  background: linear-gradient(135deg, var(--text), #0F172A);
  color: #fff;
  border-radius: 16px;
  padding: 2.25rem;
  margin: 2rem 0;
}
.fv-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.fv-text { color: rgba(255,255,255,0.82); margin-bottom: 1.25rem; font-size: 0.95rem; }
.fv-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Games list */
.games-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.games-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.game-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 190px;
}
.game-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(59,130,246,0.35); }
.game-thumb {
  height: 92px;
  background: linear-gradient(135deg, #EEF2FF, #F0F9FF);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-body { padding: 0.9rem 0.95rem 1rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.game-name {
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.2;
  min-height: 2.2em;
}
.game-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.rtp-label { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); }
.rtp-value { font-weight: 900; color: var(--blue-dark); font-size: 0.9rem; }
.rtp-bar {
  height: 8px;
  background: var(--light);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(226,232,244,0.9);
}
.rtp-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  border-radius: 999px;
  transition: width 0.35s ease;
}
.rtp-note { margin: 0; color: var(--muted); font-size: 0.78rem; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.56);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 999;
}
.modal.open { display: flex; }
.modal-card {
  width: min(560px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(2,6,23,0.42);
  overflow: hidden;
}
.modal-head {
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}
.modal-title { font-weight: 900; margin: 0; font-size: 1.05rem; }
.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
}
.modal-body { padding: 1.2rem; }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1rem; }
.modal-small { color: var(--muted); font-size: 0.86rem; margin: 0.25rem 0 0; }

/* Layout helpers used by pages */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.stack { display: flex; flex-direction: column; gap: 1rem; }
.muted { color: var(--muted); }

/* Footer / disclaimer */
.disclaimer {
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Professional footer */
.site-footer {
  background: radial-gradient(1200px 420px at 10% 0%, rgba(99,102,241,0.18), transparent 60%),
              radial-gradient(900px 380px at 90% 40%, rgba(59,130,246,0.14), transparent 60%),
              linear-gradient(180deg, #0B1220 0%, #060B16 100%);
  color: rgba(226,232,240,0.86);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.25rem 2rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #F8FAFC;
}
.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(2,6,23,0.45));
}
.footer-desc {
  margin: 0;
  color: rgba(226,232,240,0.72);
  font-size: 0.92rem;
  max-width: 520px;
}
.footer-note {
  margin: 0;
  color: rgba(226,232,240,0.55);
  font-size: 0.8rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: rgba(226,232,240,0.82);
}
.footer-badge strong { color: #F8FAFC; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 2rem 0;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(226,232,240,0.72);
  margin-bottom: 0.25rem;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(226,232,240,0.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 0.25rem 0;
}
.footer-link:hover { color: #FFFFFF; text-decoration: underline; text-decoration-color: rgba(226,232,240,0.35); }
.footer-link .icon { opacity: 0.95; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 0.82rem;
  color: rgba(226,232,240,0.62);
  flex-wrap: wrap;
}
.footer-mini-links {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-mini-links a {
  color: rgba(226,232,240,0.72);
  text-decoration: none;
  font-weight: 750;
}
.footer-mini-links a:hover { color: #fff; text-decoration: underline; text-decoration-color: rgba(226,232,240,0.35); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  nav { position: sticky; }
  nav ul {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0.9rem 1.1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    box-shadow: var(--shadow-md);
    z-index: 180;
  }
  nav ul.open { display: flex; }
  nav ul a {
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 650;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: rgba(241,245,254,0.55);
    border: 1px solid rgba(226,232,244,0.9);
  }
  nav ul a.active {
    background: rgba(59,130,246,0.10);
    border-color: rgba(59,130,246,0.22);
    color: var(--blue-dark);
  }
  nav ul a:hover { background: rgba(59,130,246,0.08); border-color: rgba(59,130,246,0.22); }
  nav ul li:last-child a.nav-cta,
  nav ul li:last-child a.nav-dl,
  nav ul li:last-child a.nav-login-btn {
    justify-content: center;
  }
  nav ul a.nav-cta,
  nav ul a.nav-dl,
  nav ul a.nav-login-btn {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-color: rgba(29,78,216,0.0);
    color: #fff !important;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(29, 78, 216, 0.18);
  }
  nav ul a.nav-cta:hover,
  nav ul a.nav-dl:hover,
  nav ul a.nav-login-btn:hover {
    background: linear-gradient(135deg, var(--blue-dark), var(--indigo));
    border-color: rgba(29,78,216,0.0);
  }
  .nav-drop-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0.45rem 0 0.1rem;
    margin-left: 0.25rem;
    display: none;
  }
  .nav-drop-menu a {
    background: transparent;
    border: 0;
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
    color: var(--muted);
  }
  .nav-drop-menu a:hover {
    background: rgba(59,130,246,0.08);
    color: var(--blue-dark);
  }
  .nav-drop-menu::before { display: none; }
  .nav-dropdown.open .nav-drop-menu { display: block; }
  .dl-top-inner { padding: 1rem 1.25rem; }
  .dl-top-actions { width: 100%; }
  .dl-top-actions .btn { flex: 1; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .alt-grid { grid-template-columns: 1fr; }
  .procon-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .compare-table { display: block; overflow-x: auto; }
  .partners-grid { grid-template-columns: 1fr; }
  .cta-box { margin: 0 1rem; padding: 2.25rem 1.5rem; }
  .trusted-grid { grid-template-columns: 1fr; }
  .trusted-panel { padding: 1rem; }
  .trusted-top { flex-direction: column; }
  .trusted-top .btn-dark { width: 100%; }
  .trusted-item { flex-wrap: wrap; }
  .trusted-item .btn-dark { width: 100%; justify-content: center; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-actions { grid-template-columns: 1fr; }
  .footer-inner { padding: 2.5rem 1.25rem 1.75rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-badges { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
