/* Landing page — scoped under .page-landing */

.page-landing {
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-family: var(--font-display);
}

.page-landing .logo,
.page-landing .nav a:not(.btn),
.page-landing .site-footer,
.page-landing .btn,
.page-landing .alert {
  font-family: inherit;
}

.page-landing .main-landing {
  padding: 0;
  max-width: none;
  min-height: auto;
}

.page-landing .container {
  width: min(1040px, 92%);
}

.page-landing .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  background: rgba(6, 7, 10, 0.72);
}

.page-landing .header-inner {
  width: min(1040px, 92%);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.landing-hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 2.75rem 0 0;
  margin-bottom: 2.5rem;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(124, 92, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 30%, rgba(61, 214, 140, 0.1), transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124, 92, 255, 0.08), transparent);
  animation: landingBgShift 14s ease-in-out infinite alternate;
}

@keyframes landingBgShift {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04); }
}

.landing-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem 3rem;
  align-items: center;
  padding-bottom: 2rem;
  max-width: 980px;
  margin: 0 auto;
  overflow: visible;
}

.landing-hero-copy {
  overflow: visible;
}

@media (max-width: 900px) {
  .landing-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 520px;
  }
  .landing-hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
    min-height: auto;
  }
}

.landing-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  animation: landingFadeUp 0.6s ease both;
}

.landing-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
  animation: landingPulse 2s ease infinite;
}

@keyframes landingPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.landing-hero h1 {
  font-family: inherit;
  font-size: clamp(2.25rem, 4.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
  overflow: visible;
  animation: landingFadeUp 0.6s ease 0.08s both;
}

.landing-gradient {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(90deg, #b794ff 0%, #7c5cff 45%, #3dd68c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  animation: landingFadeUp 0.6s ease 0.16s both;
}

.landing-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  animation: landingFadeUp 0.6s ease 0.24s both;
}

.landing-perks span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: landingFadeUp 0.6s ease 0.32s both;
}

.landing-cta {
  position: relative;
  overflow: hidden;
}

.landing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: landingShine 4s ease infinite;
}

@keyframes landingShine {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}

@keyframes landingFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.landing-hero-visual {
  position: relative;
  min-height: 280px;
  max-width: 420px;
  margin-left: auto;
  width: 100%;
  animation: landingFadeUp 0.7s ease 0.2s both;
}

.landing-cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.65rem;
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}

.landing-hero-visual:hover .landing-cover-grid {
  transform: rotate(-1deg) scale(1.02);
}

.landing-cover {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 10;
}

.landing-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.landing-cover:hover img {
  transform: scale(1.08);
}

.landing-cover--logo img {
  object-fit: contain;
  padding: 0.5rem;
  background: #12141c;
}

.landing-cover--2 { transform: translateY(8px); }
.landing-cover--4 { transform: translateY(-6px); }
.landing-cover--5 { transform: translateY(10px); }

.landing-discount-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #5a3fd4);
  border: 3px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.45);
  animation: landingFloat 5s ease-in-out infinite;
}

.landing-discount-badge strong {
  font-family: inherit;
  font-size: 1.65rem;
  line-height: 1;
}

.landing-discount-badge span {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

@keyframes landingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.landing-ticker {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.landing-ticker-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 0.85rem 0;
  max-width: 980px;
  margin: 0 auto;
}

.landing-ticker-item {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.landing-ticker-item strong {
  color: var(--text);
  font-family: inherit;
  font-size: 1.1rem;
  margin-right: 0.35rem;
}

.landing-section {
  padding: 2.75rem 0;
}

.landing-section--dark {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.landing-section-head {
  margin-bottom: 1.75rem;
  max-width: 640px;
}

.landing-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-landing .video-showcase-layout {
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: 1fr 260px;
}

.landing-section-head h2 {
  font-family: inherit;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.landing-section-head p {
  color: var(--text-muted);
  font-size: 1rem;
}

.landing-glow {
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.2), 0 20px 60px rgba(124, 92, 255, 0.12);
}

.video-now-playing {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--success);
  margin-right: 0.75rem;
}

.page-landing .video-player-header {
  display: flex;
  align-items: center;
}

.landing-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.landing-flow-step {
  flex: 0 1 200px;
  max-width: 210px;
  min-width: 170px;
  padding: 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.landing-flow-step:hover {
  border-color: rgba(124, 92, 255, 0.4);
  transform: translateY(-3px);
}

.landing-flow-num {
  display: block;
  font-family: inherit;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(124, 92, 255, 0.35);
  margin-bottom: 0.5rem;
}

.landing-flow-step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.landing-flow-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.landing-flow-arrow {
  flex-shrink: 0;
  align-self: center;
  color: var(--border);
  font-size: 1.25rem;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .landing-flow-arrow { display: none; }
}

.landing-bonus-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .landing-bonus-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }
}

.landing-bonus-tier {
  position: relative;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.landing-bonus-tier:hover {
  transform: translateY(-4px);
}

.landing-bonus-tier--hot {
  border-color: rgba(124, 92, 255, 0.45);
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.12);
}

.landing-bonus-tier--best {
  border-color: rgba(61, 214, 140, 0.45);
  background: linear-gradient(160deg, rgba(61, 214, 140, 0.08), var(--bg-card));
  box-shadow: 0 8px 32px rgba(61, 214, 140, 0.1);
}

.landing-bonus-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--success);
  color: #0a0b0f;
  white-space: nowrap;
}

.landing-bonus-amount {
  display: block;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.landing-bonus-pct {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-hover);
  margin-bottom: 0.35rem;
}

.landing-bonus-get {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.landing-cta-band {
  margin: 1rem 0 0;
  padding: 2rem 0;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.12), rgba(61, 214, 140, 0.06));
  border-top: 1px solid rgba(124, 92, 255, 0.25);
  border-bottom: 1px solid rgba(124, 92, 255, 0.25);
}

.landing-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 920px;
  margin: 0 auto;
}

.landing-cta-band h2 {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.landing-cta-band p {
  color: var(--text-muted);
}

.landing-game-bar {
  margin-top: 0;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.page-landing .landing-game-bar.game-bar-section {
  margin-left: 0;
  margin-right: 0;
}

.landing-game-bar .game-bar-label {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}

/* Landing-wide typography (video, game bar, sections) */
.page-landing .landing-lead,
.page-landing .landing-perks span,
.page-landing .landing-ticker-item,
.page-landing .landing-section-head p,
.page-landing .landing-flow-step h3,
.page-landing .landing-flow-step p,
.page-landing .landing-bonus-pct,
.page-landing .landing-bonus-get,
.page-landing .landing-cta-band p,
.page-landing .video-player-header,
.page-landing .video-playlist-label,
.page-landing .video-tab,
.page-landing .game-bar-item span {
  font-family: inherit;
}

.page-landing .video-playlist-label,
.page-landing .game-bar-label {
  text-transform: none;
  letter-spacing: 0.04em;
}

.page-landing .video-now-playing {
  font-family: inherit;
  letter-spacing: 0.06em;
}

/* Landing scrollbars — video playlist + flow steps */
.page-landing .video-playlist,
.page-landing .landing-flow {
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 92, 255, 0.45) rgba(255, 255, 255, 0.05);
}

.page-landing .video-playlist::-webkit-scrollbar,
.page-landing .landing-flow::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.page-landing .video-playlist::-webkit-scrollbar-track,
.page-landing .landing-flow::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.page-landing .video-playlist::-webkit-scrollbar-thumb,
.page-landing .landing-flow::-webkit-scrollbar-thumb {
  background: rgba(124, 92, 255, 0.4);
  border-radius: 999px;
}

.page-landing .video-playlist::-webkit-scrollbar-thumb:hover,
.page-landing .landing-flow::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 92, 255, 0.65);
}

.page-landing .video-playlist::-webkit-scrollbar-button,
.page-landing .landing-flow::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.page-landing .video-playlist::-webkit-scrollbar-corner,
.page-landing .landing-flow::-webkit-scrollbar-corner {
  background: transparent;
}
