* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark: #120e26;
  --panel: #1f1a3a;
  --violet: #7e57c2;
  --blue: #5c6bc0;
  --teal: #26a69a;
  --white: #f8f8ff;
  --muted: #9e9ec6;
  --glass: rgba(0, 0, 0, 0.5);
  --touch-min: 44px;
  --safe-left: env(safe-area-inset-left, 0);
  --safe-right: env(safe-area-inset-right, 0);
  --safe-top: env(safe-area-inset-top, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body.landing {
  font-family: system-ui, 'Segoe UI', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.0625rem);
  background: linear-gradient(145deg, #120e26 0%, #1a1545 45%, #0d1129 100%);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  padding-left: max(0px, var(--safe-left));
  padding-right: max(0px, var(--safe-right));
}

.sr-only-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: fixed;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  clip: auto;
  background: var(--violet);
  color: white;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 10001;
  text-decoration: none;
}

.landing-header {
  background: var(--glass);
  backdrop-filter: blur(8px);
  padding: 0.7rem 1.25rem;
  padding-top: max(0.7rem, var(--safe-top));
  position: sticky;
  top: 0;
  z-index: 100;
}

.landing-header__container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.landing-header__brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
}

.landing-nav__ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.landing-nav__ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.5rem 0.25rem;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.landing-nav__ul a:hover {
  color: var(--teal);
}

.landing-header__right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.landing-btn--fill {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
}

.landing-btn--cta {
  background: var(--teal);
  color: #0c0c0c;
  padding: 0.85rem 1.9rem;
  font-size: 1.05rem;
  min-height: 48px;
}

.landing-btn--sm {
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  background: var(--blue);
  color: white;
  min-height: 36px;
}

.landing-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--muted);
}

.landing-btn:hover {
  opacity: 0.92;
  box-shadow: 0 4px 12px rgba(126, 87, 194, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .slot-zone__card:hover { transform: none; }
}

.landing-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 4vw, 1.5rem) clamp(1.5rem, 5vw, 2rem);
  padding-bottom: max(1.5rem, var(--safe-bottom));
}

.banner-zone {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 100vh;
}

.banner-zone__media {
  position: absolute;
  inset: 0;
}

.banner-zone__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.banner-zone__cta {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  padding: clamp(1rem, 5vw, 2.5rem);
  padding-bottom: max(1.5rem, var(--safe-bottom));
  text-align: center;
}

.banner-zone h1 {
  font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  margin-bottom: 0.35rem;
}

.banner-zone__text {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--teal);
  margin-bottom: 1rem;
}

.icon-zone {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.icon-zone__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 1.35rem;
  min-height: var(--touch-min);
  background: var(--panel);
  border-radius: 14px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.icon-zone__cell:hover {
  background: var(--violet);
}

.icon-zone__symbol {
  font-size: 1.7rem;
}

.zone-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--blue);
}

.slot-zone {
  margin-bottom: 2rem;
}

.slot-zone__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 3vw, 1.25rem);
}

.slot-zone__card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.slot-zone__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.slot-zone__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.slot-zone__card span {
  padding: 0.65rem;
  font-weight: 600;
  text-align: center;
}

.table-zone__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--panel);
}

.zone-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
}

.zone-table th,
.zone-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.zone-table th {
  background: rgba(126, 87, 194, 0.3);
  font-weight: 600;
}

.zone-table a {
  color: var(--teal);
}

.content-zone {
  max-width: 100%;
}

.content-zone h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 2rem 0 0.75rem;
  color: var(--blue);
  line-height: 1.3;
}

.content-zone h2:first-child {
  margin-top: 0;
}

.content-zone h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  margin: 1.35rem 0 0.5rem;
  color: var(--teal);
  line-height: 1.35;
}

.content-zone p {
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.content-zone p:last-child {
  margin-bottom: 0;
}

.content-zone p strong {
  color: var(--white);
}

.content-zone .table-zone__scroll {
  margin: 1rem 0 1.5rem;
}

.content-zone .zone-table td p {
  margin: 0;
  color: inherit;
}

.landing-footer {
  background: rgba(0, 0, 0, 0.4);
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 1.25rem);
  padding-bottom: max(1.5rem, var(--safe-bottom));
  margin-top: 2rem;
}

.landing-footer__container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1.5rem;
}

.landing-footer__title {
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  color: var(--blue);
}

.landing-footer__list {
  list-style: none;
}

.landing-footer__list li {
  margin-bottom: 0.35rem;
}

.landing-footer__list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.87rem;
}

.landing-footer__list a:hover {
  color: var(--teal);
}

.landing-footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.landing-footer__pay img {
  height: 35px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.06);
}

@media (min-width: 768px) {
  .slot-zone__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .zone-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .landing-footer__container {
    gap: 2rem;
  }

  .icon-zone {
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .banner-zone,
  .banner-zone__cta {
    min-height: 82dvh;
    min-height: 82vh;
  }

  .landing-header__container {
    flex-direction: column;
    padding: 0.5rem 0;
  }

  .landing-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .landing-nav__ul {
    justify-content: center;
    gap: 0.25rem 0.75rem;
  }

  .icon-zone {
    gap: 0.75rem;
  }

  .slot-zone__card span {
    padding: 0.6rem 0.5rem;
    font-size: 0.9rem;
  }

  .zone-table thead {
    display: none;
  }

  .zone-table tr {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--panel);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .zone-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
    border: none;
  }

  .zone-table td::before {
    content: attr(data-label);
    font-weight: 600;
    margin-right: 0.5rem;
    color: var(--muted);
  }

  .zone-table td:last-child {
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .banner-zone,
  .banner-zone__cta {
    min-height: 72dvh;
    min-height: 72vh;
  }

  .banner-zone__cta {
    padding: 1rem 0.75rem;
  }

  .banner-zone h1 {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .banner-zone__text {
    font-size: 1rem;
  }

  .banner-zone__cta .landing-btn--cta {
    min-width: 160px;
  }

  .slot-zone__grid {
    gap: 0.65rem;
  }

  .landing-footer__container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
