﻿:root {
  --bg-a: #e8f0ff;
  --bg-b: #f0e9ff;
  --accent-a: #ff9a44;
  --accent-b: #ffd85e;
  --text-main: #14213d;
  --surface: #ffffff;
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background: linear-gradient(145deg, var(--bg-a), var(--bg-b));
  min-height: 100svh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  z-index: 99;
}
.alpha-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
}
.brand-row, .top-shell, .nav-strip, .head-container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.brand, .logo-anchor, .identity, .nameplate, .head-container h2 {
  font-size: 1.2rem;
  font-weight: 700;
}
.tab-nav, .feature-tabs, .menu-cloud, .line-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}
.tab-item, .feature-tabs a, .menu-cloud a, .line-nav a, header nav a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 33, 61, 0.1);
}
.btn-pill, .btn-cta, .join-btn, .action-large, .header-cta, .qbtn, .enter-btn, .main-join, .promo-btn, .hero-go {
  display: inline-block;
  background: linear-gradient(130deg, var(--accent-a), var(--accent-b));
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
}
.btn-ghost { opacity: 0.85; }
.btn-pill:hover, .btn-cta:hover, .join-btn:hover, .action-large:hover, .header-cta:hover, .qbtn:hover, .enter-btn:hover, .main-join:hover, .promo-btn:hover, .hero-go:hover {
  filter: brightness(1.05);
}
.page-main, .core, .page-wrap main, main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px 32px;
}
.alpha-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.13);
}
.hero-overlay, .promo-panel, .center-callout, .glass-card, .promo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 560px);
  text-align: center;
  padding: 18px;
  border-radius: 16px;
  color: #fff;
  background: rgba(20, 33, 61, 0.45);
  backdrop-filter: blur(2px);
}
.alpha-slots {
  margin-top: 24px;
}
.slots-grid, .tiles, .slot-listing, .deck, .cards-two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.slot-card img, .tiles img, .slot-listing img, .deck img, .slot-item img {
  width: 50%;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid rgba(20,33,61,.12);
  transition: transform .2s ease;
}
.slot-card:hover img, .tiles a:hover img, .slot-listing a:hover img, .deck a:hover img, .slot-item:hover img {
  transform: translateY(-2px);
}
.alpha-table {
  margin-top: 26px;
}
.table-wrap, .comparison-table, .mobile-table, .table-mobile-fit, .table-shell {
  background: var(--surface);
  border-radius: 10px;
  padding: 10px;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
th, td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e9e9ef;
}
.alpha-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px 36px;
}
.pay-logos, .payments-row, .banking-icons, .brands, .paywall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.pay-logos img, .payments-row img, .banking-icons img, .brands img, .paywall img {
  width: 94px;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}
.search-box input {
  border: 1px solid rgba(20,33,61,.18);
  border-radius: 999px;
  padding: 10px 12px;
  min-width: 220px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.feature-tabs { list-style: none; margin: 0; padding-left: 0; }

@media (max-width: 900px) {
  .hero-overlay, .promo-panel, .center-callout, .glass-card, .promo-center {
    width: min(94%, 480px);
    padding: 14px;
  }
}
@media (max-width: 640px) {
  .brand-row, .top-shell, .nav-strip, .head-container {
    flex-wrap: wrap;
  }
  table {
    min-width: 100%;
  }
  thead {
    display: none;
  }
  tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 10px;
    border: 1px solid #ececf3;
    border-radius: 12px;
    overflow: hidden;
  }
  tbody td {
    border-bottom: 1px solid #f1f1f7;
  }
  tbody td:last-child {
    border-bottom: 0;
  }
}

.slots-grid > a,
.tiles > li > a,
.slot-listing > figure > a,
.deck > a,
.cards-two-cols > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}
