:root {
  --bg: #0b0914;
  --text: #f0f0f0;
  --muted: #9a9aa8;
  --accent: #ff2a5f;
  --accent-2: #9d00ff;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --radius: 18px;
  --page: 440px;
}

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

html, body {
  min-height: 100%;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 70vw;
  height: 70vw;
  max-width: 420px;
  max-height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.38;
}

body::before {
  top: -12%;
  left: -22%;
  background: var(--accent-2);
}

body::after {
  bottom: 8%;
  right: -28%;
  background: var(--accent);
}

.page,
footer,
.lang-switcher,
.toast {
  position: relative;
  z-index: 1;
}

.page {
  position: relative;
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 56px 18px 32px;
}

.lang-switcher {
  position: absolute;
  top: 12px;
  right: 18px;
  display: flex;
  gap: 8px;
  z-index: 50;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font: 600 0.85rem Outfit, sans-serif;
  transition: background 0.2s ease, transform 0.15s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 0 16px rgba(255, 42, 95, 0.45);
}

.hero {
  text-align: center;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: 0 0 18px rgba(255, 42, 95, 0.5);
  margin-bottom: 10px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #c9c9d6;
  margin-bottom: 14px;
}

h1, h2 {
  font-weight: 800;
  background: linear-gradient(to right, #fff, #b8b8c4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1 {
  font-size: clamp(1.7rem, 6.4vw, 2.15rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-desc {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 42, 95, 0.1);
  border: 1px solid rgba(255, 42, 95, 0.22);
  font-size: 0.82rem;
  color: #e8e8ef;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: live-pulse 1.6s infinite;
}

@keyframes live-pulse {
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  max-height: 520px;
  margin: 0 auto 20px;
  border-radius: 22px;
  overflow: hidden;
  background: #05040a;
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 28px rgba(255, 42, 95, 0.18);
}

.player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.player-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(157, 0, 255, 0.28), transparent 55%),
    linear-gradient(180deg, #161226 0%, #07060c 100%);
  color: #fff;
  z-index: 1;
}

.player-ph[hidden],
.cutoff[hidden],
.sound-btn[hidden],
.toast[hidden] {
  display: none !important;
}

.ph-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.2rem;
}

.ph-hint {
  font-size: 0.75rem;
  color: #8d8d9c;
}

.sound-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font: 600 0.75rem Outfit, sans-serif;
  cursor: pointer;
}

.player.has-sound .icon-muted,
.player:not(.has-sound) .icon-on {
  display: none;
}

.progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.cutoff {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 6, 14, 0.45) 0%, rgba(8, 6, 14, 0.82) 45%, rgba(8, 6, 14, 0.92) 100%);
  backdrop-filter: blur(6px);
}

.cutoff-kicker {
  color: #ff8aa8;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.cutoff-title {
  font-size: 1.55rem;
  margin-bottom: 8px;
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.cutoff-text {
  color: #d4d4de;
  font-size: 0.92rem;
  margin-bottom: 18px;
  max-width: 260px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(255, 42, 95, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 42, 95, 0.48);
}

.cta-button:active {
  transform: scale(0.98);
}

.pulse {
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 42, 95, 0.7), 0 10px 28px rgba(255, 42, 95, 0.32); }
  70% { box-shadow: 0 0 0 14px rgba(255, 42, 95, 0), 0 10px 28px rgba(255, 42, 95, 0.32); }
  100% { box-shadow: 0 0 0 0 rgba(255, 42, 95, 0), 0 10px 28px rgba(255, 42, 95, 0.32); }
}

.hero-cta {
  width: 100%;
}

section {
  margin-top: 48px;
}

section h2 {
  font-size: 1.45rem;
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin: -10px 0 20px;
  font-size: 0.92rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.feature-card:last-child {
  grid-column: 1 / -1;
}

.feature-card .icon {
  color: #fff;
  margin-bottom: 8px;
}

.feature-card h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ececf3;
}

.glass-section {
  padding: 8px 0 4px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-circle {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #d8b4ff;
  box-shadow: 0 0 16px rgba(157, 0, 255, 0.28);
}

.step p {
  font-size: 0.78rem;
  font-weight: 600;
  color: #cfcfd8;
}

.step-line {
  flex: 0 0 12px;
  height: 2px;
  background: var(--glass-border);
  margin-top: 20px;
}

.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.more-card {
  position: relative;
  aspect-ratio: 9 / 12;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #0e0c16;
  cursor: pointer;
}

.more-card video,
.more-card .more-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-card video {
  filter: blur(1.2px) brightness(0.72) saturate(1.1);
  transform: scale(1.06);
}

.more-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 42, 95, 0.35), transparent 50%),
    #14101f;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.6rem;
}

.more-lock {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 14px 8px 12px;
  background: linear-gradient(180deg, rgba(8, 6, 14, 0.08) 30%, rgba(8, 6, 14, 0.72) 100%);
  text-align: center;
}

.more-lock::before {
  content: "";
  flex: 1;
}

.lock-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.more-lock strong {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
  text-shadow: 0 1px 8px #000;
}

.more-lock span {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: #ffb0c4;
  font-weight: 700;
}

.lock-ico {
  flex-shrink: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 12px;
  font-weight: 600;
  font-size: 0.86rem;
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-size: 0.7rem;
}

.final {
  text-align: center;
}

.final .cta-button {
  width: 100%;
}

footer {
  max-width: var(--page);
  margin: 0 auto;
  padding: 20px 18px 12px;
  text-align: center;
  color: #666;
  font-size: 0.78rem;
}

.toast {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  z-index: 60;
  background: rgba(22, 18, 34, 0.94);
  border: 1px solid var(--glass-border);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 720px) {
  :root { --page: 480px; }
  .step-line { flex: 1; max-width: 36px; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.55rem; }
  .player { max-height: 460px; }
}
