*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple-deep: #3B1E6D;
  --purple-violet: #7B5CFF;
  --mint: #20C7A8;
  --mint-light: #e6faf6;
  --teal-dark: #173B3D;
  --teal-mid: #1e4a4d;
  --white: #FFFFFF;
  --card-bg: #F6F8F9;
  --text-dark: #1A2233;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border: #E2E8F0;
  --border-mint: rgba(32,199,168,0.25);
  --star: #F6C90E;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
.site-header {
  background: var(--teal-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(32,199,168,0.18);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.logo-text span { color: var(--mint); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.header-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.header-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.28);
}

.header-nav a[aria-current="page"] {
  color: var(--mint);
  background: rgba(32,199,168,0.12);
  border-color: rgba(32,199,168,0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0f2a2c 40%, var(--purple-deep) 100%);
  padding: 48px 20px 52px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(123,92,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(32,199,168,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: rgba(255,255,255,0.75); }

.hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 .accent { color: var(--mint); }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.author-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 18px;
  flex-wrap: wrap;
}

.author-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.author-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.author-avatar.av1 { background: linear-gradient(135deg, var(--purple-violet), #5b3cd4); }
.author-avatar.av2 { background: linear-gradient(135deg, var(--mint), #16a389); }

.author-label { font-size: 11px; color: rgba(255,255,255,0.4); display: block; }
.author-name { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; }

.author-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

.updated-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 5px;
}

.rg-notice {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  max-width: 600px;
  line-height: 1.5;
}

.rg-notice svg { flex-shrink: 0; margin-top: 1px; }

/* ── MAIN LAYOUT ── */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 4px;
  white-space: nowrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  white-space: nowrap;
}

.tag:hover, .tag.active {
  border-color: var(--mint);
  color: var(--mint);
  background: var(--mint-light);
}

.tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.filter-btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-btn:hover { border-color: var(--purple-violet); color: var(--purple-violet); }

/* ── CASINO CARDS ── */
.casino-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }

.casino-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 158px 1fr 188px;
  align-items: stretch;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}

.casino-card:hover {
  border-color: var(--border-mint);
  box-shadow: 0 6px 32px rgba(32,199,168,0.12);
}

.card-rank {
  position: absolute;
  top: 10px; left: 10px;
  min-width: 26px; height: 20px;
  padding: 0 5px;
  background: var(--purple-violet);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  letter-spacing: 0.2px;
}

.card-rank.gold { background: linear-gradient(135deg, #f6c90e, #e6a800); color: #1a1a1a; }
.card-rank.silver { background: linear-gradient(135deg, #b0bec5, #90a4ae); }
.card-rank.bronze { background: linear-gradient(135deg, #cd7f32, #b06020); }

/* LEFT COLUMN */
.card-left {
  background: var(--card-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 14px 18px;
  gap: 8px;
}

.casino-logo-placeholder {
  width: 88px; height: 52px;
  background: linear-gradient(135deg, var(--teal-dark), var(--purple-deep));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.08);
}

.casino-logo {
  width: 96px;
  height: 52px;
  object-fit: contain;
  object-position: center;
}

.casino-logo--dark-bg {
  background: var(--teal-dark);
  border-radius: 8px;
  padding: 7px 10px;
}

.rating-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.rating-score span { font-size: 13px; font-weight: 500; color: var(--text-light); }

.stars {
  display: flex;
  gap: 2px;
}

.stars svg { width: 13px; height: 13px; }

.review-count {
  font-size: 10px;
  color: var(--text-light);
  white-space: nowrap;
}

/* MIDDLE COLUMN */
.card-middle {
  padding: 16px 18px 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.casino-name {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  line-height: 1;
}

.bonus-headline {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 39px;
}

.info-grid {
  display: flex;
  gap: 6px;
}

.info-box {
  flex: 1;
  min-width: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 9px;
}

.info-box-label {
  font-size: 9.5px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 3px;
  white-space: nowrap;
}

.info-box-value {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-tags {
  display: flex;
  gap: 5px;
  align-items: center;
  overflow: hidden;
  height: 22px;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.5;
}

.badge-mint { background: rgba(32,199,168,0.1); color: #0ea389; border: 1px solid rgba(32,199,168,0.25); }
.badge-purple { background: rgba(123,92,255,0.1); color: var(--purple-violet); border: 1px solid rgba(123,92,255,0.2); }
.badge-grey { background: var(--card-bg); color: var(--text-mid); border: 1px solid var(--border); }
.badge-amber { background: rgba(246,201,14,0.1); color: #b8900a; border: 1px solid rgba(246,201,14,0.3); }

/* RIGHT COLUMN */
.card-right {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid var(--border);
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--mint);
  color: #0a2520;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.2px;
  text-align: center;
}

.btn-cta:hover {
  background: #18b095;
  box-shadow: 0 4px 16px rgba(32,199,168,0.35);
  transform: translateY(-1px);
}

.btn-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

.promo-box {
  border: 1.5px dashed var(--border-mint);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: var(--mint-light);
}

.promo-code {
  font-size: 13px;
  font-weight: 800;
  color: var(--teal-dark);
  letter-spacing: 1px;
  font-family: 'Courier New', monospace;
}

.copy-btn {
  background: var(--mint);
  border: none;
  color: #0a2520;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.copy-btn:hover { background: #18b095; }
.copy-btn.copied { background: var(--teal-dark); color: var(--mint); }

.tc-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.tc-link:hover { color: var(--purple-violet); }

.tc-panel {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.6;
  background: rgba(0,0,0,0.08);
  border-radius: 0 0 12px 12px;
}

.casino-logo--dark-bg {
  background: var(--teal-dark);
  border-radius: 8px;
  padding: 8px 10px;
}

/* ── CONTENT SECTIONS ── */
.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--mint);
  display: inline-block;
}

.content-section h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0 10px;
}

.content-section p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 15px;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.step-num {
  width: 26px; height: 26px;
  background: var(--purple-violet);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.features-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
  padding: 0;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--border-mint);
  box-shadow: 0 4px 20px rgba(32,199,168,0.08);
}

.feature-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(32,199,168,0.15), rgba(123,92,255,0.08));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px; height: 18px;
  color: var(--mint);
}

.feature-card strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* TABLES */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 18px;
}

.pros-box {
  background: rgba(32,199,168,0.05);
  border: 1px solid rgba(32,199,168,0.2);
}

.cons-box {
  background: rgba(255,85,100,0.04);
  border: 1px solid rgba(255,85,100,0.15);
}

.pros-box h4, .cons-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pros-box h4 { color: #0ea389; }
.cons-box h4 { color: #e05060; }

.pros-box ul, .cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pros-box ul li, .cons-box ul li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.pros-box ul li::before {
  content: '✓';
  color: var(--mint);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.cons-box ul li::before {
  content: '✗';
  color: #e05060;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table thead tr {
  background: linear-gradient(90deg, var(--teal-dark), var(--purple-deep));
  color: white;
}

.comparison-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.comparison-table tbody tr:nth-child(even) { background: var(--card-bg); }
.comparison-table tbody tr:hover { background: rgba(32,199,168,0.05); }

.comparison-table tbody td {
  padding: 11px 16px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 40%;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--border-mint); }

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s;
}

.faq-question:hover { background: var(--card-bg); }
.faq-item.open .faq-question { background: var(--mint-light); color: #0d6e5a; }

.faq-icon {
  width: 22px; height: 22px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text-light);
  transition: all 0.2s;
  border: 1px solid var(--border);
}

.faq-item.open .faq-icon {
  background: var(--mint);
  border-color: var(--mint);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  background: var(--mint-light);
}

.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.55);
  padding: 40px 20px 24px;
  font-size: 13px;
  line-height: 1.6;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.footer-brand .logo-text { font-size: 16px; margin-bottom: 10px; }

.footer-col h5 {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--mint); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-disclaimer { max-width: 640px; font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; }

.footer-age {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

/* ── SECTION INTRO BOX ── */
.intro-box {
  background: linear-gradient(135deg, rgba(59,30,109,0.04), rgba(32,199,168,0.04));
  border: 1px solid var(--border-mint);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.intro-box p { margin: 0; font-size: 15px; color: var(--text-mid); line-height: 1.75; }

/* ── HERO SPLIT (homepage only) ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-wallet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.hero-wallet-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.hero-wallet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--mint);
  opacity: 0;
  transition: opacity 0.2s;
}

.hero-wallet-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(32,199,168,0.3);
  transform: translateY(-1px);
}

.hero-wallet-card:hover::before { opacity: 1; }

.hero-wallet-card.active {
  border-color: rgba(32,199,168,0.28);
  background: rgba(32,199,168,0.07);
}

.hero-wallet-card.active::before { opacity: 1; }

.hero-wallet-card-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-wallet-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.hero-wallet-card-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.hero-wallet-card-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-wallet-card-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--mint);
}

.hero-wallet-card-soon {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-wallet-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; }
}

@media (max-width: 640px) {
  .hero-wallet-grid { grid-template-columns: 1fr 1fr; }
  .hero-wallet-card { padding: 12px; gap: 10px; }
}

/* ── WALLET EXPLORER (homepage) ── */
.section-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.section-subheading {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.wallet-explorer { margin-bottom: 48px; }

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.wallet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.wallet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--mint);
  opacity: 0;
  transition: opacity 0.2s;
}

.wallet-card:hover {
  border-color: var(--border-mint);
  box-shadow: 0 4px 20px rgba(32,199,168,0.1);
  transform: translateY(-2px);
}

.wallet-card:hover::before { opacity: 1; }

.wallet-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal-dark), var(--purple-deep));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wallet-card-featured .wallet-card-icon {
  background: linear-gradient(135deg, var(--purple-violet), #5b3cd4);
}

.wallet-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.wallet-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.wallet-card-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.wallet-card-featured {
  border-color: rgba(123,92,255,0.25);
  background: linear-gradient(135deg, rgba(123,92,255,0.03), rgba(32,199,168,0.03));
}

.wallet-card-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--purple-violet);
  color: white;
  padding: 2px 7px;
  border-radius: 3px;
}

/* ── PHANTOM BADGE (legacy) ── */
.phantom-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.phantom-logo-row img {
  height: 32px;
  width: auto;
  border-radius: 8px;
}

.phantom-logo-row span {
  font-size: 14px;
  color: var(--text-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .casino-card { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .card-left {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
    padding: 14px 16px;
    min-height: unset;
    gap: 14px;
  }

  .card-middle { justify-content: flex-start; }

  .card-tags {
    height: auto;
    overflow: visible;
    flex-wrap: wrap;
  }

  .card-right {
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-cta { flex: 1; min-width: 120px; }
  .promo-box { flex: 1; min-width: 120px; }

  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--teal-dark);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(32,199,168,0.18);
    z-index: 200;
  }
  .hamburger { display: flex; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .wallet-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

@media (max-width: 640px) {
  .info-grid { flex-wrap: wrap; }
  .info-box { flex: 1; min-width: calc(50% - 3px); }
  .features-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .header-actions { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .filter-btn { display: none; }
  .card-right { flex-direction: column; }
  .btn-cta { width: 100%; }
  .wallet-grid { grid-template-columns: 1fr 1fr; }
}
