:root {
  --bg: #050505;
  --surface: rgba(18, 18, 18, 0.84);
  --surface-strong: #101010;
  --text: #ffffff;
  --muted: #b2b2b2;
  --faint: #777777;
  --pink: #e50914;
  --pink-soft: rgba(229, 9, 20, 0.34);
  --blue: #b20b13;
  --gold: #ff3b3b;
  --green: #e50914;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 18px 56px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(229, 9, 20, 0.16), transparent 38rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 20rem),
    var(--bg);
  color: var(--text);
  font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg {
  max-width: 100%;
}

body.blocked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.floating-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-item {
  position: absolute;
  bottom: -100px;
  opacity: 0;
  animation: floatUp linear infinite;
}

.chip {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 6px dashed rgba(255, 255, 255, 0.36);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 28%, transparent 29%),
    radial-gradient(circle at 35% 30%, var(--color), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.18);
}

.card-symbol {
  width: calc(var(--size) * 0.68);
  height: var(--size);
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(28, 8, 8, 0.78), rgba(8, 8, 8, 0.86));
  color: var(--color);
  font-family: Syne, sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.34);
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  8%,
  88% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateY(-118vh) translateX(var(--drift)) rotate(var(--spin));
  }
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(18px);
}

.age-overlay.hidden {
  display: none;
}

.age-box {
  width: min(460px, 100%);
  padding: 34px 28px;
  text-align: center;
  border: 1px solid rgba(229, 9, 20, 0.55);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow: 0 0 64px rgba(229, 9, 20, 0.18), var(--shadow);
  animation: scaleIn 0.35s ease;
}

.age-eyebrow-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.age-eyebrow-row .eyebrow {
  margin: 0;
  line-height: 1;
  transform: translateY(3px);
}

.brand-mark-age {
  width: 44px;
  height: 44px;
}

.age-box h2 {
  margin: 6px 0 10px;
  color: var(--text);
  font-family: Syne, sans-serif;
  font-size: 30px;
}

.age-box p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.age-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.responsible-note {
  display: block;
  margin-top: 20px;
  color: var(--faint);
  font-size: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1140px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: Syne, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: #0b0b0b;
  box-shadow: 0 0 28px rgba(229, 9, 20, 0.34);
  color: white;
  font-size: 15px;
}

.brand-mark img {
  width: 86%;
  height: 86%;
  display: block;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
}

.brand-mark-large {
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  font-size: 25px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  transition: 0.2s ease;
}

.social-links a:hover,
.language-toggle:hover,
.language-selector.open .language-toggle {
  transform: translateY(-2px);
  border-color: rgba(229, 9, 20, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.18);
}

.language-selector {
  position: relative;
}

.language-toggle {
  min-width: 84px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-family: Syne, sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.language-chevron {
  color: var(--faint);
  font-size: 10px;
  line-height: 1;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  display: none;
  min-width: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.language-selector.open .language-menu {
  display: grid;
}

.language-option {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--muted);
  font-family: Syne, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.language-option:last-child {
  border-bottom: 0;
}

.language-option:hover,
.language-option.active {
  background: rgba(229, 9, 20, 0.18);
  color: var(--text);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding: 48px 20px 54px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(229, 9, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 9, 20, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 42%, black 0 36%, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}

.hero h1 {
  margin: 14px 0 0;
  font-family: Syne, sans-serif;
  font-size: clamp(42px, 10vw, 108px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  filter: drop-shadow(0 0 28px rgba(229, 9, 20, 0.24));
}

.hero h1 span:first-child {
  display: block;
  color: white;
}

.hero h1 span:last-child {
  display: block;
  background: linear-gradient(90deg, #ffffff, var(--pink));
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  width: min(700px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.promo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(760px, 100%);
  margin: 20px auto 0;
  gap: 12px;
}

.promo-card {
  position: relative;
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 20, 0.34);
  border-radius: 14px;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 18% 24%, rgba(229, 9, 20, 0.22), transparent 34%),
    rgba(12, 12, 12, 0.82);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  animation: promoCardPulse 3.2s ease-in-out infinite;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.12) 50%, transparent 58%);
  transform: translateX(-70%) rotate(10deg);
  animation: promoCardShine 5.4s ease-in-out infinite;
  pointer-events: none;
}

.promo-card > span {
  position: relative;
  z-index: 1;
  color: #ff4a4a;
  font-family: Syne, sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 22px rgba(229, 9, 20, 0.32);
}

.promo-card strong {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-card strong span {
  display: inline;
  max-width: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-shadow: none;
}

.promo-card strong b {
  display: inline-block;
  margin-right: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ff4a4a;
  font-family: Syne, sans-serif;
  font-size: 1.12em;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(229, 9, 20, 0.36);
  animation: promoFreeBlink 1.8s ease-in-out infinite;
}

.promo-card em {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-left: 4px;
  color: white;
  font-family: Syne, sans-serif;
  font-size: inherit;
  font-weight: 800;
  font-style: normal;
  text-shadow: 0 0 18px rgba(229, 9, 20, 0.52);
  animation: promoCodeBlink 2.4s ease-in-out infinite;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-icon-box {
  opacity: 0.58;
  stroke-width: 2;
}

.btn-icon-arrow {
  stroke-width: 3;
}

.btn-primary {
  background: linear-gradient(135deg, #e50914, #9f0008);
  color: white;
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.28);
}

.hero-cta-wrap {
  position: relative;
  display: inline-flex;
  padding: 5px;
  border-radius: 16px;
}

.hero-cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 255, 255, 0.38);
  border-radius: inherit;
  animation: dashBlink 1.8s ease-in-out infinite;
  pointer-events: none;
}

.deal-cta-wrap {
  position: relative;
  display: inline-flex;
  width: 100%;
  padding: 5px;
  border-radius: 16px;
}

.deal-cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  animation: whiteDashBlink 1.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-cta {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  padding-inline: 28px;
  box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.2), 0 14px 34px rgba(229, 9, 20, 0.28);
  animation: heroCtaPulse 3s ease-in-out infinite;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: -120% -40%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58%);
  transform: translateX(-72%) rotate(10deg);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.hero-cta::after {
  content: "↗";
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-cta:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.28), 0 18px 44px rgba(229, 9, 20, 0.36);
}

.hero-cta:hover::before {
  transform: translateX(72%) rotate(10deg);
}

.hero-cta:hover::after {
  transform: translate(2px, -2px);
  background: rgba(255, 255, 255, 0.22);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.btn-ghost {
  color: var(--muted);
}

.full {
  width: 100%;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(660px, 100%);
  margin: 26px auto 0;
  gap: 14px;
}

.stat-card,
.deal-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.stat-card {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 14px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.09), transparent 54%),
    rgba(14, 14, 14, 0.78);
}

.stat-card strong {
  display: block;
  color: #f2f2f2;
  font-family: Syne, sans-serif;
  font-size: 32px;
  line-height: 1;
  overflow-wrap: anywhere;
  text-shadow: 0 0 18px rgba(229, 9, 20, 0.22);
}

.stat-card span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.deals-section {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 36px;
}

.section-heading {
  width: min(680px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 8px 0 10px;
  font-family: Syne, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.exclusive-grid {
  display: grid;
  justify-items: center;
}

.deal-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  border-radius: 18px;
  padding: 34px 20px 20px;
}

.exclusive-card {
  width: min(620px, 100%);
  min-height: 0;
  padding: 32px;
  gap: 14px;
  border-radius: 16px;
  border-color: rgba(229, 9, 20, 0.34);
  background:
    linear-gradient(145deg, rgba(229, 9, 20, 0.12), rgba(18, 18, 18, 0.86) 36%, rgba(0, 0, 0, 0.18)),
    var(--surface);
}

.deal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(229, 9, 20, 0.14), transparent 44%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

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

.deal-ribbon {
  position: absolute;
  top: 0;
  right: 18px;
  padding: 5px 10px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(135deg, #e50914, #8f0007);
  color: white;
  font-size: 10px;
  font-weight: 900;
}

.exclusive-partner-label {
  width: fit-content;
  border: 1px solid rgba(229, 9, 20, 0.34);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(229, 9, 20, 0.08);
  color: #ff4a4a;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.casino-logo {
  position: relative;
  width: fit-content;
  min-width: 166px;
  height: 166px;
  display: grid;
  place-items: center;
  align-self: center;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(229, 9, 20, 0.32);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.035), 0 18px 44px rgba(0, 0, 0, 0.34);
  font-family: Syne, sans-serif;
  font-size: clamp(34px, 8vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(229, 9, 20, 0.34);
  animation: logoPulse 3.4s ease-in-out infinite;
}

.casino-logo::after {
  content: "";
  position: absolute;
  inset: -42%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.16) 48%, transparent 58%);
  transform: translateX(-70%) rotate(12deg);
  animation: logoShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.casino-logo img {
  position: relative;
  z-index: 1;
  width: 144px;
  height: auto;
  max-height: 144px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.34));
}

.logo-ember {
  background:
    radial-gradient(circle at 50% 42%, rgba(229, 9, 20, 0.3), transparent 54%),
    linear-gradient(135deg, rgba(229, 9, 20, 0.18), rgba(12, 12, 12, 0.92));
}

.deal-card h3 {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: 24px;
}

.deal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.partner-box {
  display: grid;
  padding: 0;
  border: 1px solid rgba(229, 9, 20, 0.32);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.2);
  text-align: center;
}

.partner-box span {
  color: var(--faint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-box strong {
  color: #ff4a4a;
  font-family: Syne, sans-serif;
  font-size: clamp(17px, 3vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-shadow: 0 0 16px rgba(229, 9, 20, 0.22);
}

.code-copy {
  min-height: 120px;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 9px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 18px 16px;
  background:
    radial-gradient(circle at 50% 48%, rgba(229, 9, 20, 0.24), transparent 38%),
    rgba(0, 0, 0, 0.34);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.code-copy:hover,
.code-copy.copied {
  transform: translateY(-1px);
  background:
    radial-gradient(circle at 50% 48%, rgba(229, 9, 20, 0.32), transparent 38%),
    rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.16);
}

.code-copy span,
.code-copy small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.code-copy strong {
  position: relative;
  isolation: isolate;
  color: white;
  font-family: Syne, sans-serif;
  font-size: clamp(30px, 5.6vw, 40px);
  line-height: 1;
  text-shadow: 0 0 24px rgba(229, 9, 20, 0.34);
  animation: codeTextBlink 2.4s ease-in-out infinite;
}

.code-copy strong::before {
  content: "";
  position: absolute;
  inset: -10px -18px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.38), transparent 66%);
  opacity: 0.46;
  filter: blur(10px);
  animation: codeGlowShimmer 2.4s ease-in-out infinite;
}

.code-copy span {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.5);
}

.code-copy small {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 255, 255, 0.46);
}

.deal-card ul {
  display: grid;
  gap: 6px;
  margin: 0 0 auto;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
}

.exclusive-card .btn {
  min-height: 44px;
  padding-block: 12px;
}

.deal-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 36px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 5, 5, 0.82);
  text-align: center;
}

.site-footer .brand {
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
}

.footer-social {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  transition: 0.2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 9, 20, 0.42);
  color: var(--text);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.18);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1200;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(12, 12, 12, 0.96);
  box-shadow: var(--shadow);
  color: white;
  font-weight: 800;
  transition: 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(1.35);
  }
}

@keyframes gradientMove {
  to {
    background-position: 260% 50%;
  }
}

@keyframes logoPulse {
  50% {
    border-color: rgba(229, 9, 20, 0.58);
    box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.18), 0 20px 50px rgba(229, 9, 20, 0.16);
  }
}

@keyframes logoShine {
  0%,
  48% {
    transform: translateX(-70%) rotate(12deg);
  }
  72%,
  100% {
    transform: translateX(70%) rotate(12deg);
  }
}

@keyframes heroCtaPulse {
  50% {
    box-shadow: 0 0 0 1px rgba(229, 9, 20, 0.34), 0 18px 42px rgba(229, 9, 20, 0.34);
  }
}

@keyframes dashBlink {
  0%,
  100% {
    opacity: 0.45;
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: none;
  }

  50% {
    opacity: 1;
    border-color: rgba(229, 9, 20, 0.72);
    box-shadow: 0 0 18px rgba(229, 9, 20, 0.18);
  }
}

@keyframes whiteDashBlink {
  0%,
  100% {
    opacity: 0.45;
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: none;
  }

  50% {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
  }
}

@keyframes codeTextBlink {
  0%,
  100% {
    color: rgba(255, 255, 255, 0.88);
    transform: scale(1);
  }

  50% {
    color: #ffffff;
    transform: scale(1.025);
    text-shadow: 0 0 30px rgba(229, 9, 20, 0.58);
  }
}

@keyframes codeGlowShimmer {
  0%,
  100% {
    opacity: 0.32;
    transform: scaleX(0.92);
  }

  50% {
    opacity: 0.72;
    transform: scaleX(1.08);
  }
}

@keyframes promoCardPulse {
  50% {
    border-color: rgba(229, 9, 20, 0.58);
    box-shadow: 0 18px 42px rgba(229, 9, 20, 0.12);
  }
}

@keyframes promoCardShine {
  0%,
  55% {
    transform: translateX(-70%) rotate(10deg);
  }

  78%,
  100% {
    transform: translateX(70%) rotate(10deg);
  }
}

@keyframes promoCodeBlink {
  0%,
  100% {
    opacity: 0.86;
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes promoFreeBlink {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.72);
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 600px;
    padding: 44px 20px 48px;
  }

  .hero h1 {
    font-size: clamp(52px, 12vw, 88px);
  }

  .hero-copy {
    width: min(620px, 100%);
  }

  .stats-row {
    width: min(620px, 100%);
  }

  .stat-card {
    padding: 16px 12px;
  }

  .exclusive-card {
    width: min(600px, 100%);
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 62px;
    width: min(1140px, calc(100% - 24px));
    gap: 10px;
  }

  .brand {
    gap: 10px;
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .social-links {
    gap: 8px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
  }

  .language-toggle {
    min-width: 64px;
    height: 38px;
  }

  .hero {
    min-height: 580px;
    padding: 38px 16px 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero-badge,
  .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    font-size: 11px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.6;
  }

  .stats-row {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
    margin-top: 24px;
  }

  .promo-row {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
    margin-top: 20px;
  }

  .stat-card {
    min-height: 86px;
  }

  .deal-card {
    min-height: auto;
  }

  .exclusive-card {
    padding: 28px 18px 18px;
  }

  .section-heading h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .partner-box strong {
    font-size: clamp(17px, 6vw, 22px);
  }

  .age-actions,
  .hero-actions {
    flex-direction: column;
  }

  .hero-cta-wrap {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    width: min(1140px, calc(100% - 20px));
  }

  .brand {
    gap: 8px;
    font-size: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .social-links {
    gap: 6px;
  }

  .social-links a {
    width: 34px;
    height: 34px;
  }

  .social-links svg {
    width: 17px;
    height: 17px;
  }

  .language-toggle {
    min-width: 58px;
    height: 34px;
    gap: 4px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 44px 14px 38px;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .stat-card strong {
    font-size: 28px;
  }

  .deals-section {
    width: min(1140px, calc(100% - 24px));
    padding: 42px 0 30px;
  }

  .exclusive-card {
    padding: 26px 14px 16px;
  }

  .casino-logo {
    min-width: 148px;
    height: 148px;
    padding: 10px;
  }

  .casino-logo img {
    width: 128px;
    max-height: 128px;
  }

  .deal-card h3 {
    font-size: 22px;
  }

  .age-box {
    padding: 28px 18px;
  }

  .age-box h2 {
    font-size: 26px;
  }

  .site-footer {
    padding: 30px 16px;
  }

  .site-footer p {
    max-width: 320px;
    line-height: 1.45;
  }
}
