:root {
  --bg: #0a0800;
  --bg-card: rgba(28, 22, 8, 0.55);
  --gold: #ffcc00;
  --gold-light: #ffe082;
  --red: #f5a623;
  --red-deep: #c4890a;
  --green: #2ecc71;
  --text: #fff8e7;
  --muted: #d4c49a;
  --border: rgba(255, 204, 0, 0.22);
  --radius: 16px;
  --font: "Outfit", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 118px;
  --subnav-h: 52px;
  --scroll-offset: calc(var(--header-h) + var(--subnav-h) + 20px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--scroll-offset);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.has-parallax {
  scroll-snap-type: y mandatory;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* MotionSites-style animated background */
.motion-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: floatOrb 14s var(--ease-out) infinite alternate;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.7), transparent 70%);
  top: -8%;
  left: -6%;
  animation-duration: 16s;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.45), transparent 70%);
  top: 35%;
  right: -10%;
  animation-duration: 18s;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.35), transparent 70%);
  bottom: 5%;
  left: 20%;
  animation-duration: 20s;
  animation-delay: -8s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
  100% { transform: translate(-20px, 25px) scale(0.95); }
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* Marquee ticker */
.marquee-wrap {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
  background-size: 200% 100%;
  animation: shimmerBar 6s linear infinite;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 184, 0, 0.3);
  width: 100%;
}

.marquee-viewport {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-seamless 32s linear infinite;
  will-change: transform;
}

.marquee-group {
  flex: 0 0 auto;
}

.marquee-group span {
  display: inline-block;
  padding: 9px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

@keyframes shimmerBar {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes marquee-seamless {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold-light); }

.wrap { position: relative; z-index: 1; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header glass */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 4, 4, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.site-header.is-scrolled {
  background: rgba(12, 4, 4, 0.88);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 0;
}

.logo-link {
  display: block;
  transition: transform 0.35s var(--ease-out);
}

.logo-link:hover { transform: scale(1.03); }

.logo-link img {
  max-height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 184, 0, 0.2));
}

.header-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.badge-pill {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--green);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.3); }
  50% { box-shadow: 0 0 16px 2px rgba(0, 230, 118, 0.2); }
}

.nav-btns { display: flex; gap: 10px; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s;
}

.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px) scale(1.02); }

.btn-red {
  background: linear-gradient(135deg, #ff6b6b, var(--red), var(--red-deep));
  color: #fff;
  box-shadow: 0 6px 24px rgba(229, 57, 53, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #e65100);
  color: #2a1000;
  box-shadow: 0 6px 24px rgba(255, 184, 0, 0.35);
}

/* Parallax welcome — kontainer 1 */
.snap-section {
  scroll-snap-align: start;
}

.parallax-welcome {
  scroll-snap-stop: normal;
}

.parallax-welcome {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  min-height: calc(100dvh - 150px);
  height: calc(100dvh - 150px);
  overflow: hidden;
  background: #0c0404;
}

.parallax-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
  pointer-events: none;
  transition: transform 0.08s linear;
}

.parallax-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
}

.layer-bg { z-index: 1; }
.layer-mid { z-index: 2; opacity: 0.95; }

.layer-glow {
  z-index: 3;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(255, 184, 0, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 230, 118, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 25%, rgba(229, 57, 53, 0.1), transparent 50%);
}

.parallax-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12, 4, 4, 0.35) 0%, transparent 28%, transparent 62%, rgba(12, 4, 4, 0.85) 100%),
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(12, 4, 4, 0.55) 100%);
}

.parallax-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  padding: 24px 0 56px;
}

.parallax-inner {
  text-align: center;
  max-width: 720px;
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.parallax-glass {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 22px;
  background: rgba(18, 6, 6, 0.42);
  border: 1px solid rgba(255, 184, 0, 0.28);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  overflow: hidden;
}

.parallax-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    rgba(255, 184, 0, 0.06) 100%
  );
  pointer-events: none;
}

.parallax-glass > * {
  position: relative;
  z-index: 1;
}

.parallax-inner .hero-headline {
  font-size: clamp(1.65rem, 4.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.parallax-inner .sub {
  color: #f0e6dc;
  margin-bottom: 28px;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.parallax-inner .hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.parallax-inner .local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.25s;
}

.scroll-hint:hover {
  opacity: 1;
  color: var(--gold-light);
  transform: translateX(-50%) translateY(3px);
}

.scroll-hint-icon {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 184, 0, 0.55);
  border-radius: 12px;
  position: relative;
}

.scroll-hint-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.25; }
}

.site-page {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  min-height: calc(100dvh - var(--header-h) - var(--subnav-h));
  scroll-snap-align: start;
  scroll-margin-top: calc(var(--header-h) + var(--subnav-h));
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(229, 57, 53, 0.1), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%, rgba(255, 184, 0, 0.06), transparent 50%),
    var(--bg);
  border-top: 1px solid rgba(255, 184, 0, 0.15);
  padding: 20px 0 48px;
}

.site-page .content-split {
  padding-top: 8px;
  padding-bottom: 24px;
}

#promo-page {
  padding-bottom: 48px;
}

#games-page.site-page-games {
  min-height: calc(100dvh - var(--header-h) - var(--subnav-h));
  padding: 32px 0 48px;
}

#faq-testimoni-page {
  padding-bottom: 56px;
  min-height: auto;
  scroll-snap-align: none;
}

.site-page-faq .split-articles-faq {
  padding-bottom: 8px;
}

#faq.rog-anchor-section {
  padding-bottom: 32px;
  margin-bottom: 0;
  border-bottom: none;
}

.testimoni-block {
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 184, 0, 0.22);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(229, 57, 53, 0.08), transparent 55%),
    rgba(8, 3, 3, 0.65);
}

.testimoni-section {
  padding-top: 8px;
  padding-bottom: 24px;
}

.testimoni-section.rog-anchor-section {
  border-bottom: none;
  margin-bottom: 0;
}

.reviews-stage {
  position: relative;
  min-height: 320px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.review {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 184, 0, 0.16);
  border-radius: 16px;
  padding: 22px;
  transform-origin: center top;
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s;
}

.review:hover {
  border-color: rgba(255, 184, 0, 0.38);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.review-flip-out {
  animation: reviewFlipOut 0.48s var(--ease-out) forwards;
  pointer-events: none;
}

.review-flip-in {
  animation: reviewFlipIn 0.48s var(--ease-out) forwards;
}

@keyframes reviewFlipOut {
  0% {
    opacity: 1;
    transform: perspective(720px) rotateX(0deg) translateY(0);
  }
  100% {
    opacity: 0;
    transform: perspective(720px) rotateX(22deg) translateY(-14px) scale(0.96);
  }
}

@keyframes reviewFlipIn {
  0% {
    opacity: 0;
    transform: perspective(720px) rotateX(-22deg) translateY(14px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: perspective(720px) rotateX(0deg) translateY(0) scale(1);
  }
}

@media (max-width: 960px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-stage {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-flip-out,
  .review-flip-in {
    animation: none;
  }
}

/* Page 2 — Tentang full background */
.site-page-tentang {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.tentang-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.tentang-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tentang-bg-mid {
  opacity: 0.55;
  mix-blend-mode: screen;
}

.tentang-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 4, 4, 0.72) 0%, rgba(12, 4, 4, 0.88) 40%, rgba(12, 4, 4, 0.94) 100%),
    linear-gradient(90deg, rgba(12, 4, 4, 0.9) 0%, rgba(12, 4, 4, 0.55) 55%, rgba(12, 4, 4, 0.35) 100%);
}

.tentang-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 56px) clamp(40px, 5vw, 64px);
}

.tentang-content .page-section-head {
  margin-bottom: 32px;
}

.tentang-content .article-box,
.tentang-content .info-table-wrap {
  background: rgba(12, 4, 4, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Page 3 — Promo banner kanan */
.content-split-promo {
  grid-template-columns: 1fr minmax(260px, 40%);
  align-items: start;
}

.promo-visual-side {
  min-width: 0;
}

.promo-visual-stick {
  position: sticky;
  top: calc(var(--header-h) + var(--subnav-h) + 16px);
}

.promo-visual-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: #0c0404;
}

.promo-visual-bg,
.promo-visual-mid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.promo-visual-mid {
  opacity: 0.7;
  mix-blend-mode: screen;
}

.promo-visual-banner {
  position: absolute;
  left: 6%;
  right: 8%;
  bottom: 14%;
  width: auto;
  max-width: 90%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.promo-visual-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promo-visual-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #2a1000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.35);
}

.page-section-head {
  margin-bottom: 28px;
}

.tentang-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.tentang-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.tentang-info-lead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .tentang-page-grid {
    grid-template-columns: 1fr;
  }

  .content-split-promo {
    grid-template-columns: 1fr;
  }

  .promo-visual-side {
    order: -1;
  }

  .promo-visual-stick {
    position: relative;
    top: auto;
    margin-bottom: 20px;
  }

  .promo-visual-panel {
    max-height: 360px;
    aspect-ratio: auto;
  }
}

.section-subnav-global {
  position: sticky;
  top: var(--header-h);
  z-index: 95;
}

/* ROG-style sticky sub navigation */
.section-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  width: 100%;
  max-width: 100%;
  background: rgba(8, 3, 3, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 184, 0, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.section-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--subnav-h);
  padding: 8px 20px;
}

.section-subnav-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42%;
}

.section-subnav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-subnav-links a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.section-subnav-links a:hover,
.section-subnav-links a.is-active {
  color: var(--gold);
  border-bottom-color: var(--red);
}

/* Split layout: banner kiri, artikel kanan */
.content-split {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  gap: 32px;
  align-items: start;
  padding: 12px 20px 32px;
}

.split-banner-stick {
  position: sticky;
  top: calc(var(--header-h) + var(--subnav-h) + 16px);
}

.split-banner-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
  aspect-ratio: 3 / 4;
  background: #0c0404;
}

.split-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.split-layer-bg { z-index: 1; opacity: 0.9; }
.split-layer-mid { z-index: 2; opacity: 0.85; mix-blend-mode: screen; }

.split-promo-link {
  position: absolute;
  inset: auto 8% 6%;
  z-index: 4;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 184, 0, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.split-promo-link img {
  width: 100%;
  height: auto;
  display: block;
}

.split-banner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.split-banner-actions .btn {
  width: 100%;
  padding: 12px 8px;
  font-size: 11px;
}

.split-articles {
  min-width: 0;
}

.split-articles > .rog-anchor-section:first-child {
  padding-top: 4px;
}

.rog-anchor-section {
  scroll-margin-top: var(--scroll-offset);
  padding-bottom: 40px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 184, 0, 0.08);
}

.rog-anchor-section:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.rog-section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.3;
}

.rog-section-lead {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.split-articles .promo-row {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.split-articles .pt-section {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
}

.split-articles .pt-section::after {
  display: none;
}

.split-articles .pt-section .rog-section-title,
.split-articles .pt-section .rog-section-lead {
  text-align: left;
}

.split-articles .pt-grid {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.split-articles .article-box {
  margin-bottom: 0;
}

.split-articles .info-table-wrap {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 20px;
  }

  .split-banner-stick {
    position: relative;
    top: auto;
  }

  .split-banner-visual {
    aspect-ratio: 16 / 10;
    max-height: 420px;
  }

  .split-promo-link {
    inset: auto 6% 5%;
    max-width: 88%;
    margin: 0 auto;
    left: 6%;
    right: 6%;
  }

  .section-subnav-title {
    display: none;
  }

  .section-subnav-inner {
    justify-content: center;
  }

  .section-subnav-links a {
    padding: 8px 10px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .section-subnav-links {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .section-subnav-links::-webkit-scrollbar {
    display: none;
  }

  .split-banner-actions {
    grid-template-columns: 1fr;
  }
}

/* Page 4 — Game carousel ROG rounded room */
.site-page-games {
  border-top: 1px solid rgba(255, 184, 0, 0.15);
  background:
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(255, 184, 0, 0.07), transparent 60%),
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(229, 57, 53, 0.1), transparent 55%),
    var(--bg);
}

.games-page-head {
  text-align: center;
  margin-bottom: 8px;
}

.games-page-head .rog-section-title {
  margin-bottom: 10px;
}

.games-page-head .rog-section-lead {
  max-width: 680px;
  margin: 0 auto;
}

.game-carousel-room {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 20px 0 32px;
  perspective: 1800px;
  perspective-origin: 50% 42%;
  overflow: hidden;
}

.game-carousel-room::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 8%;
  height: 42%;
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 184, 0, 0.06), transparent 70%);
  border-top: 1px solid rgba(255, 184, 0, 0.12);
  pointer-events: none;
  z-index: 0;
}

.game-carousel-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  padding: 48px 0 56px;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
}

.game-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.game-carousel-viewport:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(229, 57, 53, 0.45);
}

.game-carousel-track {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  width: max-content;
  padding: 0 clamp(12px, 2vw, 24px);
  will-change: transform;
  transform-style: preserve-3d;
}

.game-poster-card {
  flex: 0 0 auto;
  width: clamp(150px, 11vw, 210px);
  aspect-ratio: 5 / 7;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border: 2px solid rgba(255, 184, 0, 0.28);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.35),
    0 24px 48px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.game-poster-card:hover {
  border-color: rgba(255, 184, 0, 0.65);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.4),
    0 32px 64px rgba(229, 57, 53, 0.3);
}

.game-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.game-poster-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 16px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.92) 100%);
  color: #fff;
  text-align: left;
  pointer-events: none;
}

.game-poster-meta strong {
  display: block;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.game-poster-meta small {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2a1000;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 3px 8px;
  border-radius: 999px;
}

.games-page-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

#games-page .scroll-back {
  color: var(--muted);
}

#games-page .scroll-back:hover {
  color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .game-carousel-track {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 1100px;
    margin: 0 auto;
    transform: none !important;
  }

  .game-carousel-viewport {
    cursor: default;
    overflow: visible;
  }
}

.scroll-back {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s;
}

.scroll-back:hover {
  color: var(--gold);
}

body.welcome-overlay-open .parallax-welcome {
  pointer-events: none;
}

@media (max-width: 768px) {
  .parallax-welcome {
    min-height: calc(100dvh - 120px);
    height: calc(100dvh - 120px);
  }
  .parallax-glass {
    padding: 24px 18px 22px;
    border-radius: 18px;
  }
  .parallax-inner .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Legacy hero helpers (parallax + tags) */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(229, 57, 53, 0.15);
  border: 1px solid rgba(229, 57, 53, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff8a80;
  margin-bottom: 18px;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.parallax-inner .hero-headline .gradient-text,
.hero-text h1 .gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 40%, var(--gold) 70%, var(--green) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-text .sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
  max-width: 480px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.local-tags { display: flex; flex-wrap: wrap; gap: 10px; animation: fadeUp 0.8s var(--ease-out) 0.4s both; }

.local-tag {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 184, 0, 0.25);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--muted);
  transition: border-color 0.3s, transform 0.3s;
}

.local-tag:hover { border-color: var(--gold); transform: translateY(-2px); }
.local-tag strong { color: var(--green); }

/* Floating banner */
.banner-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  animation: floatBanner 6s ease-in-out infinite;
  transition: box-shadow 0.4s;
}

.banner-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), var(--red), var(--green), var(--gold));
  background-size: 300% 300%;
  animation: borderSpin 8s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

@keyframes borderSpin {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes floatBanner {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.banner-box:hover { box-shadow: 0 32px 80px rgba(255, 184, 0, 0.15); }
.banner-box img { width: 100%; display: block; position: relative; z-index: 0; }

/* Promo glass cards */
.promo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

@media (max-width: 600px) { .promo-row { grid-template-columns: 1fr; } }

.promo-box {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.promo-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.promo-box:hover::before { transform: scaleX(1); }
.promo-box:hover { transform: translateY(-6px); border-color: rgba(255, 184, 0, 0.45); }

.promo-box strong { color: var(--gold); display: block; margin-bottom: 6px; font-size: 15px; }
.promo-box p { color: var(--muted); font-size: 13px; }

/* PERITOTO section */
.pt-section {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 24px;
  margin: 40px 0;
  overflow: hidden;
}

.pt-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.pt-section h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pt-section .sub-h { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.pt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.pt-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  cursor: default;
}

.pt-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(255, 184, 0, 0.15);
}

.pt-card .ico {
  font-size: 30px;
  margin-bottom: 8px;
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.pt-card:hover .ico { transform: scale(1.2) rotate(-5deg); }
.pt-card h3 { font-size: 13px; font-weight: 700; }
.pt-card span { font-size: 10px; color: var(--green); font-weight: 600; }

/* Info table */
.info-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.info-table { width: 100%; border-collapse: collapse; }

.info-table th {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.5), rgba(198, 40, 40, 0.8));
  color: #fff;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.info-table td {
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.info-table tr { transition: background 0.25s; }
.info-table tbody tr:hover { background: rgba(255, 184, 0, 0.04); }
.info-table td:first-child { color: var(--muted); width: 40%; }

/* Article */
.article-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 40px;
}

.article-box h1,
.article-box h2 { font-size: 1.25rem; font-weight: 800; color: var(--gold); margin-bottom: 18px; }
.article-box p { color: var(--muted); margin-bottom: 16px; text-align: justify; font-size: 15px; }
.article-box a { color: var(--green); font-weight: 700; }

.sx-article-permalink { text-align: center; padding-top: 12px; font-size: 13px; }
.sx-article-permalink a { color: var(--gold); font-weight: 700; }

.section-h {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-p { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 24px; }

.faq-list { margin-bottom: 0; }

.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 184, 0, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 10px;
  transition: border-color 0.3s, transform 0.3s;
}

.faq-item:hover { border-color: rgba(255, 184, 0, 0.35); transform: translateX(4px); }
.faq-item h3 { font-size: 15px; color: var(--gold); margin-bottom: 8px; font-weight: 700; }
.faq-item p { font-size: 14px; color: var(--muted); }

.review .n { font-weight: 700; font-size: 14px; }
.review .s { color: var(--gold); font-size: 12px; margin: 6px 0 10px; letter-spacing: 2px; }
.review p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.review .m { font-size: 11px; color: #8d6e63; margin-top: 12px; }

/* Footer */
.site-company-footer {
  border-top: 1px solid var(--border);
  padding: 32px 16px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  background: rgba(0, 0, 0, 0.2);
}

.site-company-footer a { color: var(--gold); font-weight: 600; }
.site-company-footer .pt { font-weight: 700; color: var(--text); margin: 10px 0 4px; }

.sx-brand-permalink { text-align: center; padding: 14px; font-size: 12px; }
.sx-brand-permalink a { color: var(--gold); font-weight: 700; }

.copy { text-align: center; padding: 16px; font-size: 11px; color: #6b5344; }

/* Welcome overlay */
body.welcome-overlay-open { overflow: hidden; }

#welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: transparent;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  pointer-events: auto;
}

.welcome-fireworks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

/* Theater curtains */
.welcome-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  background-color: #6b1212;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.22) 0,
      rgba(0, 0, 0, 0.22) 3px,
      rgba(255, 255, 255, 0.04) 3px,
      rgba(255, 255, 255, 0.04) 14px,
      rgba(0, 0, 0, 0.12) 14px,
      rgba(0, 0, 0, 0.12) 22px
    ),
    linear-gradient(180deg, #3d0808 0%, #8b1818 18%, #a61f1f 45%, #7a1414 72%, #2a0606 100%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.45);
}

.welcome-curtain-left {
  left: 0;
  transform: translateX(0);
  border-right: 4px solid rgba(255, 184, 0, 0.55);
  box-shadow:
    inset -30px 0 50px rgba(0, 0, 0, 0.35),
    4px 0 24px rgba(0, 0, 0, 0.5);
}

.welcome-curtain-right {
  right: 0;
  transform: translateX(0);
  border-left: 4px solid rgba(255, 184, 0, 0.55);
  box-shadow:
    inset 30px 0 50px rgba(0, 0, 0, 0.35),
    -4px 0 24px rgba(0, 0, 0, 0.5);
}

.welcome-curtain-left::after,
.welcome-curtain-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 184, 0, 0.35) 40%, rgba(255, 184, 0, 0.65) 100%);
  opacity: 0.7;
}

.welcome-curtain-left::after { right: 8px; }
.welcome-curtain-right::after { left: 8px; }

#welcome-overlay.is-closing .welcome-box {
  animation: welcomeBoxClose 0.4s var(--ease-out) forwards;
  pointer-events: none;
}

#welcome-overlay.is-closing .welcome-curtain-left {
  animation: curtainOpenLeft 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.15s forwards;
}

#welcome-overlay.is-closing .welcome-curtain-right {
  animation: curtainOpenRight 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.15s forwards;
}

#welcome-overlay.is-closing .welcome-fireworks {
  animation: fireworksFade 0.35s ease forwards;
}

@keyframes welcomeBoxClose {
  0% { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(0.9) translateY(20px); }
}

@keyframes curtainOpenLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-105%); }
}

@keyframes curtainOpenRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(105%); }
}

@keyframes fireworksFade {
  to { opacity: 0; }
}

#welcome-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#welcome-overlay.is-hidden .welcome-curtain-left,
#welcome-overlay.is-hidden .welcome-curtain-right {
  transform: translateX(0);
  animation: none;
}

.welcome-box {
  position: relative;
  z-index: 5;
  width: min(960px, 96vw);
  max-height: 92vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(26, 8, 8, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 184, 0, 0.08);
  animation: welcomeIn 1.15s var(--ease-out) both;
}

@keyframes welcomeIn {
  0% { opacity: 0; transform: scale(0.88) translateY(36px); }
  60% { opacity: 1; transform: scale(1.02) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.welcome-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.welcome-close:hover {
  background: rgba(229, 57, 53, 0.4);
  transform: rotate(90deg);
}

.welcome-visual {
  position: relative;
}

.welcome-banner-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: #0a0800;
}

.welcome-banner-link img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1920 / 720;
  object-fit: contain;
}

.welcome-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 36px 24px 16px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 8, 0, 0.72) 48%, rgba(10, 8, 0, 0.94) 100%);
  pointer-events: none;
}

.welcome-copy h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.welcome-copy h2 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.welcome-body {
  padding: 16px 24px 22px;
  text-align: center;
}

.welcome-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
}

.welcome-actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 10px;
  font-size: 12px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.welcome-actions .btn-gold {
  box-shadow: 0 4px 18px rgba(255, 184, 0, 0.35);
}

.welcome-actions .btn-red {
  box-shadow: 0 4px 18px rgba(229, 57, 53, 0.35);
}

.welcome-skip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 184, 0, 0.45);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  font-family: inherit;
}

.welcome-skip::before {
  content: "→";
  font-size: 15px;
  color: var(--gold);
  transition: transform 0.25s;
}

.welcome-skip:hover {
  background: rgba(255, 184, 0, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.welcome-skip:hover::before {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  #welcome-overlay { padding: 12px; }
  .welcome-copy { padding: 28px 14px 12px; }
  .welcome-copy h2 { font-size: 1.15rem; }
  .welcome-body { padding: 14px 16px 18px; }
  .welcome-actions { grid-template-columns: 1fr 1fr; gap: 10px; }
  .welcome-actions .btn { font-size: 11px; min-height: 44px; padding: 11px 6px; }
}

@media (max-width: 340px) {
  .welcome-actions { grid-template-columns: 1fr; }
  .welcome-actions .btn { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .welcome-fireworks { display: none; }
  #welcome-overlay.is-closing .welcome-curtain-left { animation: none; transform: translateX(-105%); }
  #welcome-overlay.is-closing .welcome-curtain-right { animation: none; transform: translateX(105%); }
  .parallax-layer,
  .parallax-content { transform: none !important; transition: none !important; }
}

/* PERITOTO additions */
.pt-lang {
  position: static;
  z-index: auto;
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(10, 8, 0, 0.88);
  border: 1px solid rgba(255, 204, 0, 0.4);
}
.pt-lang button {
  min-width: 40px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #ffe082;
  font: 800 11px/1 Outfit, Arial, sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.pt-lang button.is-on,
.pt-lang button[aria-pressed="true"] {
  background: linear-gradient(180deg, #ffcc00, #c4890a);
  color: #1a1000;
}
.pt-hero {
  position: relative;
  z-index: 2;
  padding: 16px 16px 28px;
}
.pt-hero-wide {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 204, 0, 0.45);
  background: #0a0800;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 204, 0, 0.12);
}
.pt-hero-banner {
  display: block;
  width: 100%;
}
.pt-hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1920 / 720;
  object-fit: contain;
}
.pt-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 48px 28px 26px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 8, 0, 0.55) 38%, rgba(10, 8, 0, 0.92) 100%);
  pointer-events: none;
}
.pt-hero-overlay .hero-cta,
.pt-hero-overlay a {
  pointer-events: auto;
}
.pt-hero-overlay .hero-eyebrow {
  margin-bottom: 10px;
}
.pt-hero-overlay .hero-headline {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 8px;
  color: #fff8e7;
}
.pt-hero-overlay .pt-clock {
  margin: 6px 0 10px;
}
.pt-hero-overlay .sub {
  max-width: 62ch;
  margin: 0 auto 14px;
  color: #efe6c8;
}
.pt-hero-overlay .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .welcome-copy,
  .pt-hero-overlay {
    position: static;
    background: linear-gradient(180deg, rgba(10, 8, 0, 0.92), rgba(10, 8, 0, 0.96));
    padding: 16px 14px 14px;
  }
}
.pt-banner-square {
  display: block;
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 204, 0, 0.45);
  background: #0a0800;
}
.pt-banner-square img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.pt-clock {
  margin: 10px 0 14px;
  color: #ffe082;
  font-size: 13px;
}
.article-stamps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 13px;
}
.pt-pasaran-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.pasaran-card {
  display: block;
  text-decoration: none;
  color: inherit;
  min-height: 168px;
  padding: 16px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 0, 0.28);
  background: linear-gradient(180deg, #1a1404, #0a0800);
  text-align: center;
}
.pasaran-visual {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1a1000;
  background: linear-gradient(180deg, #ffe082, #ffcc00);
}
.ft-pay {
  max-width: 920px;
  margin: 0 auto 18px;
  padding: 0 16px;
  text-align: center;
}
.ft-pay h3 { color: #fff8e7; margin-bottom: 8px; }
.ft-pay-note { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.ft-pay-banner { background: transparent; }
.ft-pay-banner img { width: 100%; height: auto; display: block; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  font-size: 13px;
}
.breadcrumb a { color: #ffcc00; text-decoration: none; }
@media (max-width: 720px) {
  .pt-pasaran-grid { grid-template-columns: 1fr 1fr; }
}
