:root {
  --color-bg: #0a1f18;
  --color-bg-soft: #0f2e24;
  --color-bg-card: rgba(18, 48, 38, 0.72);
  --color-surface: #143528;
  --color-emerald: #1a5c45;
  --color-emerald-light: #2d8a66;
  --color-gold: #d4af37;
  --color-gold-light: #e8c96a;
  --color-gold-muted: rgba(212, 175, 55, 0.18);
  --color-text: #eef5f0;
  --color-text-muted: rgba(238, 245, 240, 0.72);
  --color-border: rgba(212, 175, 55, 0.22);
  --color-success: #4ade80;
  --color-danger: #f87171;
  --header-height: 78px;
  --container-max: 1180px;
  --container-wide: 1320px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.14);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --gradient-hero: linear-gradient(145deg, #071510 0%, #0f2e24 38%, #143528 72%, #0a1f18 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #e8c96a 50%, #b8942e 100%);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

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

.container--wide {
  max-width: var(--container-wide);
}

.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header {
  height: var(--header-height);
  background: rgba(10, 31, 24, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.header__logo-img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-gold);
}

.header__logo-text {
  display: none;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.header__nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-gold-light);
  background: var(--color-gold-muted);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header__auth {
  display: none;
  gap: 8px;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: rgba(0, 0, 0, 0.55);
  border: none;
  z-index: 998;
}

.header__backdrop.is-visible {
  display: block;
}

.header__mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: min(320px, 88vw);
  height: calc(100vh - var(--header-height));
  background: var(--color-bg-soft);
  border-left: 1px solid var(--color-border);
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.header__mobile-menu.is-open {
  transform: translateX(0);
}

.header__mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__mobile-link--active,
.header__mobile-link:hover {
  color: var(--color-gold-light);
}

.header__mobile-cta {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

main {
  padding-top: var(--header-height);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.btn--primary {
  background: var(--gradient-gold);
  color: #1a1208;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.28);
}

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

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

.btn--sm {
  padding: 9px 16px;
  font-size: 0.875rem;
}

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

.btn--block {
  width: 100%;
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section__badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-muted);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section__subtitle {
  max-width: 680px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.hero {
  padding: 56px 0 72px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12), transparent 45%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero__title em {
  color: var(--color-gold);
  font-style: normal;
}

.hero__text {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-hero {
  padding: 64px 0 48px;
  background: var(--gradient-hero);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.page-hero__subtitle {
  max-width: 720px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.page-hero__visual {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.game-section {
  padding: 56px 0 80px;
}

.game-frame {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.game-frame__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.18);
}

.game-frame__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.game-frame__badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.game-frame__body {
  position: relative;
  background: #061009;
}

.game-frame__iframe {
  display: block;
  width: 100%;
  height: min(72vh, 640px);
  border: 0;
}

.game-launcher {
  width: 100%;
}

.game-launcher__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  background: #061009;
  cursor: pointer;
}

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

.game-launcher__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(6, 16, 9, 0.45);
  padding: 24px;
  text-align: center;
}

.game-launcher__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-text);
}

.game-launcher__note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 420px;
}

.game-launcher__play {
  min-width: auto;
  padding: 0;
  background: none;
  box-shadow: none;
}

.game-launcher__play:hover {
  transform: none;
  background: none;
}

.game-launcher__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #1a1208;
  font-size: 1.6rem;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-launcher__preview:hover .game-launcher__play-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.35);
}

.game-launcher.is-active .game-launcher__preview {
  display: none;
}

.game-launcher__frame {
  display: none;
}

.game-launcher.is-active .game-launcher__frame {
  display: block;
}

.game-launcher.is-active .game-frame {
  margin-top: 0;
}

.game-launcher .game-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.game-launcher .game-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.features-grid {
  display: grid;
  gap: 24px;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card__body {
  padding: 22px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.feature-card__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.stats-row {
  display: grid;
  gap: 18px;
}

.stat-card {
  padding: 24px;
  text-align: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.stat-card__label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.content-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.content-block img {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 36px 0 12px;
  color: var(--color-gold-light);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.legal-content ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content ol li {
  margin-bottom: 10px;
  padding-left: 6px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin: 10px 0 16px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item__question::after {
  content: "+";
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-item.is-open .faq-item__question::after {
  content: "−";
}

.faq-item__answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--color-text-muted);
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.contact-grid {
  display: grid;
  gap: 32px;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 22px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-gold-light);
}

.contact-card p {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 320px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.form-card {
  padding: 28px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.form-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-card__subtitle {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-note a {
  color: var(--color-gold);
  text-decoration: underline;
}

.auth-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  gap: 22px;
}

.pricing-card {
  padding: 28px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.pricing-card--featured {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.pricing-card__period {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 22px;
}

.pricing-card__features li {
  padding: 8px 0;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card__features li::before {
  content: "✓ ";
  color: var(--color-gold);
}

.disclaimer-banner {
  padding: 18px 22px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.disclaimer-banner strong {
  color: var(--color-gold-light);
}

.footer {
  background: #061009;
  border-top: 1px solid var(--color-border);
  padding: 56px 0 28px;
}

.footer__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 36px;
}

.footer__brand p {
  color: var(--color-text-muted);
  margin-top: 14px;
  max-width: 340px;
  font-size: 0.92rem;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--color-gold-light);
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__links .footer__auth-trigger {
  justify-self: start;
}

.footer__links a {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__compliance {
  padding: 22px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.footer__compliance p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer__compliance p:last-child {
  margin-bottom: 0;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.footer__badge {
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
}

.footer__helplines {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__helpline-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
  transition: opacity var(--transition);
}

.footer__helpline-link:hover {
  opacity: 1;
}

.footer__helpline-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 640px) {
  .footer__helpline-logo {
    height: 42px;
  }
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(460px, 100%);
  padding: 32px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transform: translateY(12px);
  transition: transform var(--transition);
}

.modal-overlay.is-visible .modal {
  transform: translateY(0);
}

.modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gold-muted);
  color: var(--color-gold);
  font-size: 1.5rem;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.modal__text {
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.modal-overlay--auth {
  z-index: 2100;
  align-items: flex-start;
  padding: 16px;
  overflow-y: auto;
}

.modal--auth {
  width: min(480px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  text-align: left;
  padding: 28px 24px 24px;
  position: relative;
}

.modal--auth .modal__title {
  text-align: center;
  padding-right: 28px;
}

.modal--auth .form-card__subtitle,
.modal--auth .form-note {
  text-align: left;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), border-color var(--transition);
}

.modal__close:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.form-group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.form-group--checkbox input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.auth-switch,
.footer__auth-trigger {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.auth-switch {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__auth-trigger {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  text-align: left;
  transition: color var(--transition);
}

.footer__auth-trigger:hover {
  color: var(--color-gold);
}

@media (min-width: 640px) {
  .modal-overlay--auth {
    align-items: center;
    padding: 24px;
  }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1500;
  padding: 20px 22px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(120%);
  transition: transform var(--transition);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  flex: 1 1 280px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.cookie-banner__text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__card {
  width: min(480px, 100%);
  padding: 36px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.age-gate__text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.age-gate__actions {
  display: grid;
  gap: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .header__nav {
    display: block;
  }

  .header__auth {
    display: flex;
  }

  .header__burger,
  .header__backdrop,
  .header__mobile-menu {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .footer__grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
