:root {
  --bg: #0e1015;
  --bg-elev: #161922;
  --bg-elev-2: #1f2330;
  --bg-elev-3: #262b3a;
  --border: #262b3a;
  --border-soft: #1f2330;
  --text: #ffffff;
  --text-muted: #8b92a6;
  --text-dim: #5d6479;
  --accent: #ff230a;
  --accent-hover: #e51e08;
  --accent-faded: rgba(255, 35, 10, 0.12);
  --success: #22c55e;
  --warning: #f59e0b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --container: 1200px;
  --header-h: 64px;
  --transition: 200ms ease;
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 35, 10, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

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

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--header-h);
}

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

.logo img {
  height: 26px;
  width: auto;
}

.header-search {
  display: none;
  flex: 1;
  max-width: 320px;
  position: relative;
  height: 38px;
  padding: 0 14px 0 38px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 14px;
  align-items: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.header-search:hover {
  border-color: var(--accent);
  color: var(--text);
}

.header-search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--text-muted);
  border-radius: 50%;
  box-shadow: 7px 7px 0 -6px var(--text-muted);
}

.main-nav {
  display: none;
  gap: 4px;
  margin-left: auto;
}

.main-nav a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: var(--bg-elev-2);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-cta .btn {
  padding: 8px 14px;
  font-size: 13px;
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-elev-2);
  position: relative;
  flex-shrink: 0;
}

.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), top var(--transition);
}

.burger span {
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.burger.is-open span {
  background: transparent;
}

.burger.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.burger.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 99;
  padding: 16px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 250ms ease;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer a {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
}

.mobile-drawer a:hover {
  border-color: var(--accent);
}

.mobile-drawer .btn {
  margin-top: 16px;
  width: 100%;
}

.hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 16px;
  background: linear-gradient(135deg, #2a0d10 0%, #0e1015 50%, #1a0d2a 100%);
  isolation: isolate;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px;
  min-height: 240px;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero-title {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-title strong {
  color: var(--accent);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 520px;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 180px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.section {
  margin-top: 36px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.section-link {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.section-link:hover {
  color: var(--accent);
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 140px;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.rail::-webkit-scrollbar {
  height: 6px;
}

.rail::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elev);
  scroll-snap-align: start;
  aspect-ratio: 1 / 1.25;
  display: block;
  transition: transform var(--transition);
}

.tile:hover {
  transform: translateY(-2px);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.tile-badge.hot {
  background: #ff7b00;
}

.tile-badge.new {
  background: var(--success);
}

.grid-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.promo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elev);
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  z-index: -1;
}

.promo-card-body {
  padding: 16px;
  width: 100%;
}

.promo-card-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.promo-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.promo-card .btn {
  font-size: 12px;
  padding: 8px 14px;
}

.crypto-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #1a0d2a 0%, #0e1015 50%, #2a0d10 100%);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.crypto-banner > .btn {
  min-width: 220px;
}

.crypto-banner::before,
.crypto-banner::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f7c52d 0%, #c08a05 70%);
  opacity: 0.5;
  filter: blur(8px);
}

.crypto-banner::before {
  top: 20%;
  left: 4%;
}

.crypto-banner::after {
  bottom: 10%;
  right: 4%;
}

.crypto-banner-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
}

.crypto-banner-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  margin: 6px 0 16px;
}

.crypto-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.crypto-icons span {
  padding: 4px 10px;
  background: var(--bg-elev-2);
  border-radius: 12px;
  font-weight: 600;
}

.wins-table-wrap {
  background: var(--bg-elev);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  margin: 16px 0;
}

.table-wrap table {
  min-width: 540px;
  font-size: 14px;
}

.table-wrap th,
.table-wrap td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.table-wrap th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-elev-2);
}

.table-wrap td {
  color: var(--text);
}

.table-wrap tr:last-child td {
  border-bottom: 0;
}

.table-wrap td.win {
  color: var(--success);
  font-weight: 700;
}

.table-wrap td.player {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-wrap td.player::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b21806);
  flex-shrink: 0;
}

.subscribe-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.why {
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  margin-top: 36px;
  text-align: center;
}

.why-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.why-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-faded);
  color: var(--accent);
}

.why-item-title {
  font-size: 14px;
  font-weight: 700;
}

.why-item-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.why-cta {
  margin-top: 24px;
}

.payments {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding: 16px;
  filter: grayscale(0.4);
  opacity: 0.85;
}

.payments span {
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 12px;
  background: var(--bg-elev-2);
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.seo-block {
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.seo-block h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.seo-block h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin: 32px 0 12px;
  color: var(--text);
}

.seo-block h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 24px 0 10px;
  color: var(--text);
}

.seo-block p {
  margin: 12px 0;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.7;
}

.seo-block strong {
  color: var(--text);
  font-weight: 700;
}

.seo-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-block a.btn {
  text-decoration: none;
}

.seo-block a.btn-primary {
  color: #fff;
}

.seo-block a.btn-ghost {
  color: var(--text);
}

.seo-block a.btn-ghost:hover {
  color: var(--accent);
}

.seo-block ul,
.seo-block ol {
  margin: 12px 0 12px 20px;
  color: #d4d8e2;
  font-size: 15px;
  line-height: 1.7;
}

.seo-block ul li {
  list-style: disc;
  margin: 6px 0;
}

.seo-block ol li {
  list-style: decimal;
  margin: 6px 0;
}

.seo-block .seo-cta {
  display: inline-block;
  margin: 8px 8px 8px 0;
  max-width: 100%;
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.seo-block .seo-cta.btn-lg {
  font-size: 14px;
}

@media (max-width: 639px) {
  .seo-block .seo-cta {
    display: block;
    margin: 10px 0;
    width: 100%;
  }
}

.seo-block details {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 8px 0;
  transition: border-color var(--transition);
}

.seo-block details[open] {
  border-color: var(--accent);
}

.seo-block summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

.seo-block summary::-webkit-details-marker {
  display: none;
}

.seo-block summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
  transition: transform var(--transition);
}

.seo-block details[open] summary::after {
  content: "−";
}

.seo-block details p {
  margin-top: 10px;
}

.seo-block .lead {
  font-size: 16px;
  color: #c0c5d4;
}

.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 36px 0 24px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer-top .logo img {
  height: 30px;
}

.footer-top .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.footer-top .badges span {
  padding: 6px 10px;
  background: var(--bg-elev-2);
  font-size: 11px;
  border-radius: 6px;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 16px;
  justify-content: center;
}

.footer-payments span {
  padding: 6px 12px;
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-elev-2);
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 16px;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 6px 0;
}

.footer-bottom .age {
  display: inline-block;
  padding: 2px 8px;
  border: 1.5px solid var(--text-dim);
  border-radius: 4px;
  font-weight: 700;
  margin-right: 6px;
}

.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 60vh;
}

.error-page h1 {
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), #ff7b00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-page h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 12px 0;
}

.error-page p {
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 24px;
}

.fake-form {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 420px;
  margin: 0 auto;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.fake-form:hover {
  border-color: var(--accent);
  color: var(--text);
}

.fake-form-title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: var(--text);
}

.fake-field {
  display: block;
  margin-bottom: 14px;
}

.fake-field .label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.fake-field .fake-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
}

.fake-form .btn {
  margin-top: 8px;
}

.fake-form-foot {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.fake-form-foot .link {
  color: var(--accent);
  font-weight: 600;
}

.bonus-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}

.bonus-tier {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
}

.bonus-tier-num {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
}

.bonus-tier-amount {
  font-size: 22px;
  font-weight: 800;
  margin: 4px 0 6px;
}

.bonus-tier-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.bonus-tier-code {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  background: var(--accent-faded);
  color: var(--accent);
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}

.feature-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.providers-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  background: var(--bg-elev);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.providers-strip span {
  padding: 8px 14px;
  background: var(--bg-elev-2);
  font-size: 12px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--text-muted);
}

.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  z-index: 1000;
}

.skip-to-main:focus {
  top: 0;
}

@media (min-width: 640px) {
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    padding: 32px;
    min-height: 280px;
  }
  .hero-title {
    font-size: 36px;
  }
  .grid-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
  .crypto-banner {
    padding: 48px 32px;
  }
  .crypto-banner-title {
    font-size: 36px;
  }
  .bonus-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .header-search {
    display: flex;
  }
  .main-nav {
    display: flex;
  }
  .burger {
    display: none;
  }
  .mobile-drawer {
    display: none;
  }
  .header-cta {
    margin-left: 12px;
  }
  .hero-inner {
    grid-template-columns: 1.2fr 1fr;
    padding: 40px;
    min-height: 320px;
  }
  .hero-title {
    font-size: 44px;
  }
  .grid-tiles {
    grid-template-columns: repeat(6, 1fr);
  }
  .promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rail {
    grid-auto-columns: 160px;
  }
  .seo-block h1 {
    font-size: 36px;
  }
  .seo-block h2 {
    font-size: 26px;
  }
  .seo-block h3 {
    font-size: 20px;
  }
  .bonus-tiers {
    grid-template-columns: repeat(4, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .header-cta .btn-ghost {
    display: inline-flex;
  }
}

@media (max-width: 1023px) {
  .header-cta .btn-ghost {
    display: none;
  }
}
