:root {
  --accent: #4EE0C2;
  --accent-soft: rgba(78, 224, 194, 0.18);
  --surface: #121820;
  --panel: #18222C;
  --chip: #1B2633;
  --line: #2C3A4A;
  --ink: #EEF3F7;
  --soft: #9AADB8;
  --on-accent: #0A1216;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --max: 1120px;
  --font-display: "Sora", sans-serif;
  --font-body: "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(78, 224, 194, 0.14), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(40, 90, 140, 0.22), transparent 50%),
    linear-gradient(180deg, #0E141A 0%, var(--surface) 40%, #101820 100%);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.jump-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.jump-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(18, 24, 32, 0.84);
  border-bottom: 1px solid rgba(44, 58, 74, 0.85);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand img {
  width: min(168px, 42vw);
  height: auto;
}

.menu {
  display: none;
  gap: 1.25rem;
}

.menu a {
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.menu a:hover {
  color: var(--accent);
}

.topbar-cta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.action:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.action--main {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 8px 28px rgba(78, 224, 194, 0.28);
  animation: actionGlow 2.4s ease-in-out infinite;
}

.action--main:hover {
  animation: none;
  box-shadow: 0 12px 34px rgba(78, 224, 194, 0.42);
}

.action--line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.action--line:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.action--lg {
  padding: 1rem 1.7rem;
  font-size: 1.05rem;
}

@keyframes actionGlow {
  0%, 100% {
    box-shadow: 0 6px 22px rgba(78, 224, 194, 0.22);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 10px 36px rgba(78, 224, 194, 0.5);
    filter: brightness(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .action--main {
    animation: none;
  }
}

/* Hero */
.spotlight {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 3.5rem;
}

.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 24, 32, 0.96) 28%, rgba(18, 24, 32, 0.72) 55%, rgba(18, 24, 32, 0.35) 100%),
    url("../images/hero.webp") center/cover no-repeat;
  z-index: -1;
}

.spotlight-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--soft);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.spotlight-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: softPulse 1.8s ease-in-out infinite;
}

@keyframes softPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.spotlight h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  letter-spacing: -0.03em;
}

.spotlight h1 .tint {
  color: var(--accent);
}

.spotlight-text {
  color: var(--soft);
  font-size: 1.08rem;
  max-width: 42ch;
  margin: 0 0 1.5rem;
}

.offer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.offer-chips strong {
  background: linear-gradient(135deg, rgba(78, 224, 194, 0.2), rgba(78, 224, 194, 0.05));
  border: 1px solid rgba(78, 224, 194, 0.38);
  color: var(--accent);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

.spotlight-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--soft);
  font-size: 0.88rem;
}

.proof-row span {
  background: var(--chip);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.spotlight-art {
  position: relative;
  justify-self: center;
  max-width: 420px;
  animation: driftY 5.5s ease-in-out infinite;
}

.spotlight-art img {
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.45));
}

@keyframes driftY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sections */
section {
  padding: 3.2rem 0;
}

.block-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.block-text {
  color: var(--soft);
  max-width: 70ch;
  margin: 0 0 1.75rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.alert-bar {
  border-left: 3px solid var(--accent);
  background: rgba(78, 224, 194, 0.07);
  padding: 1rem 1.15rem;
  border-radius: 0 12px 12px 0;
  color: var(--soft);
  margin: 1.5rem 0;
}

.alert-bar strong {
  color: var(--ink);
}

/* Tables */
.grid-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--chip);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

tr:last-child td {
  border-bottom: none;
}

td:first-child {
  color: var(--soft);
  width: 34%;
}

.offer-grid {
  min-width: 760px;
}

.offer-grid td:first-child {
  width: 16%;
  color: var(--ink);
  background: rgba(27, 38, 51, 0.7);
  vertical-align: middle;
}

.offer-grid td:nth-child(2),
.offer-grid td:nth-child(3) {
  white-space: nowrap;
}

.offer-grid tbody tr:nth-child(3n) td {
  border-bottom-color: rgba(78, 224, 194, 0.24);
}

/* Games */
.catalog-strip {
  padding: 1.25rem 0 2.5rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.title-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--chip);
  aspect-ratio: 1;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.title-tile:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(78, 224, 194, 0.65);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.title-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.title-tile:hover img {
  transform: scale(1.08);
  filter: brightness(0.72);
}

.title-tile .title-veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 18, 22, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.title-tile:hover .title-veil,
.title-tile:focus-visible .title-veil {
  opacity: 1;
}

.title-tile .title-play {
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transform: translateY(10px) scale(0.92);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(78, 224, 194, 0.35);
}

.title-tile:hover .title-play,
.title-tile:focus-visible .title-play {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.title-list {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--soft);
  columns: 1;
}

.title-list li {
  margin-bottom: 0.35rem;
}

/* Registration form */
.signup-block {
  position: relative;
}

.signup-block::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 224, 194, 0.09), transparent 60%);
  pointer-events: none;
}

.signup-layout {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.signup-form {
  display: grid;
  gap: 0.9rem;
}

.field-row {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--soft);
}

input,
select {
  width: 100%;
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(78, 224, 194, 0.16);
}

.check-line {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--soft);
}

.check-line input {
  width: auto;
  margin-top: 0.2rem;
}

.signup-perks {
  display: grid;
  gap: 0.8rem;
}

.perk {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: var(--chip);
  border: 1px solid var(--line);
}

.perk i {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Payments */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.pay-tile {
  background: var(--chip);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0.75rem;
}

.pay-tile img {
  max-height: 36px;
  width: auto;
}

/* Providers */
.studio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.studio-chip {
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--soft);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.84rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.studio-chip:hover {
  color: var(--accent);
  border-color: rgba(78, 224, 194, 0.45);
}

/* Steps */
.path-list {
  display: grid;
  gap: 0.9rem;
  counter-reset: step;
}

.path-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.path-item::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
}

.path-item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.path-item p {
  margin: 0;
  color: var(--soft);
}

/* FAQ */
.qna details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.7rem;
}

.qna summary {
  cursor: pointer;
  font-weight: 650;
  font-family: var(--font-display);
  list-style: none;
}

.qna summary::-webkit-details-marker {
  display: none;
}

.qna summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.2rem;
}

.qna details[open] summary::after {
  content: "–";
}

.qna details p {
  color: var(--soft);
  margin: 0.8rem 0 0;
}

/* Verdict */
.closing {
  background:
    linear-gradient(135deg, rgba(78, 224, 194, 0.12), transparent 45%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
}

.closing-score {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--chip);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
}

/* Footer */
.page-foot {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #0E141A;
  padding: 2.5rem 0 1.5rem;
}

.foot-grid {
  display: grid;
  gap: 1.5rem;
}

.foot-brand p {
  color: var(--soft);
  font-size: 0.92rem;
}

.seal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.seal-row a,
.seal-row span {
  display: inline-flex;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.seal-row a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.seal-row img {
  height: 36px;
  width: auto;
}

.foot-meta {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

.age-mark {
  color: var(--accent);
  font-weight: 700;
}

/* Mid CTA band */
.invite-band {
  text-align: center;
  padding: 2.2rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(78, 224, 194, 0.3);
  background:
    linear-gradient(180deg, rgba(78, 224, 194, 0.1), transparent),
    var(--panel);
}

.invite-band h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.invite-band p {
  margin: 0 0 1.2rem;
  color: var(--soft);
}

/* Responsive */
@media (min-width: 720px) {
  .menu { display: flex; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .pay-grid { grid-template-columns: repeat(6, 1fr); }
  .title-list { columns: 2; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .signup-layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .foot-grid { grid-template-columns: 1.1fr 1fr; }
}

@media (min-width: 980px) {
  .spotlight-grid { grid-template-columns: 1.1fr 0.9fr; }
  .catalog-grid { grid-template-columns: repeat(6, 1fr); }
  .path-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 719px) {
  .action { padding: 0.7rem 1rem; font-size: 0.88rem; }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
}
