
:root {
  --g:         #16A34A;
  --g-dark:    #166534;
  --g-deeper:  #14532D;
  --g-bright:  #22C55E;
  --g-light:   #F0FDF4;
  --g-mid:     #BBF7D0;
  --g-tint:    #DCFCE7;
  --bg:        #FFFFFF;
  --surface:   #FFFFFF;
  --surface-alt:#F8FAF9;
  --border:    #E2E8F0;
  --border-g:  #BBF7D0;
  --ink:       #0F172A;
  --ink-dim:   #475569;
  --ink-mute:  #94A3B8;
  --gold:      #B45309;
  --gold-bg:   #FFFBEB;
  --radius:    8px;
  --r-lg:      14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  background: linear-gradient(145deg, var(--g-deeper) 0%, var(--g-dark) 45%, var(--g) 100%);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g-mid);
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 5px 15px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: normal;
  color: var(--g-mid);
}
.hero-text {
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: .95rem;
}

.deposit-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 36px;
}
.tier-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-lg);
  padding: 14px 13px;
  backdrop-filter: blur(8px);
  text-align: left;
  transition: background .2s, border-color .2s;
  cursor: default;
}
.tier-card:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.3);
}
.tier-top { display: flex; align-items: center; gap: 9px; margin-bottom: 5px; }
.tier-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.tier-name { font-size: .8rem; font-weight: 700; color: #fff; line-height: 1.2; }
.tier-desc { font-size: .71rem; color: rgba(255,255,255,.68); line-height: 1.45; padding-left: 39px; }
.tier-tag {
  display: inline-block;
  margin-top: 6px;
  margin-left: 39px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--g-mid);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
}

.section-head { text-align: center; margin-bottom: 36px; }
.eyebrow {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.15;
}
.section-head h2 em { font-style: normal; color: var(--g); }
.section-head p { color: var(--ink-dim); max-width: 800px; margin: 10px auto 0; font-size: .9rem; }

.results-section {
  padding: 64px 0 72px;
  background: var(--bg);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: #fff;
  min-width: 700px;
}

.results-table thead tr {
  background: var(--g-deeper);
}
.results-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  border: none;
}
.results-table thead th:first-child { border-radius: var(--r-lg) 0 0 0; }
.results-table thead th:last-child  { border-radius: 0 var(--r-lg) 0 0; text-align: center; }

.results-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.results-table tbody tr:last-child { border-bottom: none; }
.results-table tbody tr:hover { background: var(--g-light); }
.results-table tbody tr:nth-child(even) { background: var(--surface-alt); }
.results-table tbody tr:nth-child(even):hover { background: var(--g-light); }

.results-table td {
  padding: 14px 16px;
  vertical-align: middle;
  color: var(--ink-dim);
}

.col-name {
  min-width: 180px;
}
.casino-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.casino-label {
  font-weight: 700;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.3;
}

.col-offer { min-width: 200px; }
.offer-text {
  font-weight: 600;
  color: var(--gold);
  font-size: .88rem;
}

.col-deposit { white-space: nowrap; }
.deposit-tag {
  display: inline-block;
  background: var(--g-tint);
  border: 1px solid var(--border-g);
  color: var(--g-dark);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.col-payments { min-width: 180px; }
.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.payment-chip {
  display: inline-block;
  background: #F1F5F9;
  border: 1px solid var(--border);
  color: var(--ink-dim);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.col-score { text-align: center; white-space: nowrap; }
.score-num {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--g-dark);
}
.score-denom {
  font-size: .72rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.col-action { text-align: center; white-space: nowrap; min-width: 110px; }
.visit-btn {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
  background: var(--g);
  color: #fff;
  box-shadow: 0 2px 10px rgba(22,163,74,.3);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.visit-btn:hover {
  background: var(--g-dark);
  transform: scale(1.04);
  box-shadow: 0 4px 18px rgba(22,163,74,.45);
}

.disclosure {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: .76rem;
  color: var(--ink-mute);
  line-height: 1.75;
  max-width: 100%;
}
.disclosure a { color: var(--g-dark); text-decoration: underline; }

.guide-section {
  padding: 64px 0 80px;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}
.guide-body { margin: 0 auto; }
.guide-body h2 {
  
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.guide-body h3 {
  
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 48px 0 14px;
  padding-top: 20px;
  border-top: 2px solid var(--border-g);
}
.guide-body h4 {
  
  font-size: clamp(.93rem, 2vw, 1.05rem);
  font-weight: 700;
  color: var(--g-dark);
  margin: 26px 0 9px;
}
.guide-body p { color: var(--ink-dim); margin-bottom: 14px; }
.guide-body ul,
.guide-body ol { color: var(--ink-dim); margin: 0 0 14px 1.5em; padding-left: .25em; }
.guide-body li { margin-bottom: 5px; }
.guide-body a { color: var(--g); text-decoration: underline; }

.table-overflow {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.guide-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  font-size: .88rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
  border: none;
  min-width: 500px;
}
.guide-body th,
.guide-body td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  line-height: 1.45;
}
.guide-body th {
  background: var(--g-light);
  color: var(--g-dark);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-g);
}
.guide-body td { color: var(--ink-dim); background: #fff; }
.guide-body tr:last-child td { border-bottom: none; }
.guide-body tr:nth-child(even) td { background: var(--surface-alt); }
.guide-body td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 28px;
}
.verdict-box {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.verdict-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-weight: 700;
  font-size: .9rem;
}
.verdict-marker {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 900;
  flex-shrink: 0;
  background: rgba(255,255,255,.22);
  color: #fff;
}
.verdict-pros .verdict-title { background: var(--g-dark); color: #fff; }
.verdict-cons .verdict-title { background: #991B1B; color: #fff; }
.verdict-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.verdict-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .87rem;
  color: var(--ink-dim);
  line-height: 1.45;
  margin: 0;
}
.verdict-items li:last-child { border-bottom: none; }
.verdict-items li::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-size: 9px;
  background-repeat: no-repeat;
  background-position: center;
}
.verdict-pros .verdict-items li::before {
  background-color: var(--g-tint);
  border: 1px solid var(--border-g);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5l2.5 2.5 4.5-5' stroke='%2316A34A' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.verdict-cons .verdict-items li::before {
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2.5 2.5l5 5M7.5 2.5l-5 5' stroke='%23DC2626' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.reviews-section {
  padding: 64px 0 80px;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.review-item {
  padding-top: 48px;
  margin-bottom: 8px;
}

.review-item h2 {
  
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 20px;
}

.review-item h3 {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 14px;
  padding-top: 20px;
  border-top: 2px solid var(--border-g);
}

.review-item p {
  color: var(--ink-dim);
  margin-bottom: 14px;
}

.feature-summary {
  background: var(--g-light);
  border: 1px solid var(--border-g);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .87rem;
  color: var(--ink-dim);
  margin-bottom: 20px;
  line-height: 1.6;
}
.feature-summary strong {
  color: var(--g-dark);
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 20px;
}
.quick-stat {
  background: var(--g-light);
  border: 1px solid var(--border-g);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--g-dark);
}
.stat-value {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
@media (max-width: 640px) {
  .review-stats { grid-template-columns: 1fr; gap: 6px; }
}

.review-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .025em;
  padding: 15px 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #FFD814 0%, #F0C000 100%);
  border: 1px solid #C7A000;
  box-shadow: 0 2px 8px rgba(0,0,0,.14), 0 1px 3px rgba(0,0,0,.08);
  transition: background .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}
.review-cta::after {
  content: '→';
  font-size: 1.05em;
  transition: transform .18s ease;
}
.review-cta:hover {
  background: linear-gradient(180deg, #F5CA00 0%, #E5B800 100%);
  box-shadow: 0 4px 14px rgba(0,0,0,.18), 0 1px 4px rgba(0,0,0,.1);
}
.review-cta:hover::after {
  transform: translateX(5px);
}

footer {
  background: var(--g-deeper);
  padding: 52px 0 32px;
}
.footer-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-title {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.01em;
  line-height: 1.4;
}
.footer-desc {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav-label {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--g-mid);
  margin: 0 0 8px;
}
.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 0;
  line-height: 1.6;
}
footer a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .72rem; }
footer a:hover { color: var(--g-mid); }
.footer-nav-links a::after { content: " · "; color: rgba(255,255,255,.22); white-space: pre; }
.footer-nav-links a:last-child::after { content: ""; }
footer p { font-size: .7rem; color: rgba(255,255,255,.4); line-height: 1.75; margin: 0; }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p + p { margin-top: 4px; }

@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero h1      { animation: fade-up .55s ease both; }
.hero-text     { animation: fade-up .55s .1s ease both; }
.deposit-tiers   { animation: fade-up .55s .2s ease both; }

@media (max-width: 900px) {
  .deposit-tiers { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .wrap { padding: 0 16px; }

  .hero { padding: 36px 0 32px; }
  .hero-label { font-size: .62rem; padding: 4px 12px; }
  .hero-text { font-size: .88rem; margin-bottom: 20px; }
  .deposit-tiers { grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 24px; }
  .tier-card { padding: 12px 11px; }
  .tier-desc { font-size: .68rem; }

  .results-section { padding: 44px 0 52px; }
  .section-head h2 { font-size: 1.4rem; }

  
  .table-wrap { overflow-x: visible; box-shadow: none; border: none; border-radius: 0; background: transparent; }
  .results-table { min-width: 0; background: transparent; font-size: .88rem; }
  .results-table thead { display: none; }
  .results-table tbody tr { display: block; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-md); background: #fff; overflow: hidden; margin-bottom: 14px; }
  .results-table tbody tr:nth-child(even),
  .results-table tbody tr:hover,
  .results-table tbody tr:nth-child(even):hover { background: #fff; }
  .results-table td { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--ink-dim); vertical-align: top; }
  .results-table td:last-child { border-bottom: none; }
  .results-table td[data-label]::before { content: attr(data-label); font-size: .63rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); flex-shrink: 0; width: 108px; padding-top: 2px; }
  .col-name { background: var(--g-deeper); padding: 14px; }
  .col-name::before { display: none; }
  .col-name .casino-label { color: #fff; font-size: .9rem; }
  .col-action { padding: 12px 14px; background: var(--g-light); align-items: center; }
  .col-action::before { display: none; }
  .visit-btn { width: 100%; text-align: center; font-size: .82rem; padding: 12px 20px; }
  .col-score { justify-content: flex-start; text-align: left; }

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

  .guide-section { padding: 44px 0 60px; }
  .guide-body h3 { margin: 28px 0 10px; }

  footer { padding: 36px 0 24px; }
  .footer-body { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 420px) {
  .deposit-tiers { grid-template-columns: 1fr 1fr; }
  .visit-btn { padding: 12px 16px; font-size: .78rem; }
}
