
:root {
  --bg: #120406;
  --bg-soft: #1b0609;
  --bg-card: #26080d;
  --surface: #ffffff;
  --text: #fff2f2;
  --text-dark: #22070a;
  --muted: #ffb9b9;
  --muted-dark: #7a3a3a;

  /* WARNA UTAMA MERAH KILAT */
  --primary: #ff1f3d;
  --primary-2: #ff3b30;
  --primary-3: #ff5a36;
  --accent: #ffcc00;

  --border: rgba(255, 80, 80, 0.22);
  --shadow: 0 20px 60px rgba(255, 20, 20, 0.28);
  --glow: 0 0 18px rgba(255, 40, 40, 0.5), 0 0 40px rgba(255, 30, 30, 0.28);
  --glow-soft: 0 0 14px rgba(255, 70, 70, 0.3);

  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 40, 40, 0.2), transparent 24%),
    radial-gradient(circle at top left, rgba(255, 100, 0, 0.14), transparent 20%),
    radial-gradient(circle at center, rgba(255, 0, 0, 0.06), transparent 35%),
    linear-gradient(180deg, #140406 0%, #0d0204 100%);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 30px 0 20px;
}

.center {
  text-align: center;
}

.alt-bg {
  background:
    linear-gradient(180deg, rgba(255, 20, 20, 0.06), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 30, 30, 0.14);
  border: 1px solid rgba(255, 70, 70, 0.28);
  color: #ffd0d0;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--glow-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-inline: auto;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 40, 40, 0.18);
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(16, 3, 5, 0.84);
  border-bottom: 1px solid rgba(255, 60, 60, 0.16);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 52px; 
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  box-shadow: var(--glow);
}

.logo-text {
  font-size: 1.08rem;
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #ffc9c9;
  font-weight: 600;
  transition: var(--transition);
}

.main-nav a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 50, 50, 0.4);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 999px;
}

/* BREADCRUMB */
.breadcrumb-wrap {
  padding: 18px 0 8px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumb a:hover {
  color: #fff;
}

/* HERO */
.hero {
  padding-top: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
  text-shadow:
    0 0 12px rgba(255, 40, 40, 0.25),
    0 0 30px rgba(255, 20, 20, 0.15);
}

.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-points li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 40, 40, 0.08);
  border: 1px solid rgba(255, 70, 70, 0.18);
  color: #ffdede;
  font-size: 0.95rem;
  box-shadow: var(--glow-soft);
}

.hero-cards {
  display: grid;
  gap: 16px;
}

.mini-card {
  background:
    linear-gradient(180deg, rgba(255, 35, 35, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 60, 60, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 90, 0.45);
  box-shadow: 0 20px 60px rgba(255, 30, 30, 0.25), 0 0 25px rgba(255, 40, 40, 0.18);
}

.mini-card .tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.84rem;
  color: #ffe2e2;
  background: rgba(255, 30, 30, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: var(--glow-soft);
}

.mini-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.mini-card p {
  color: var(--muted);
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  background: rgba(255, 30, 30, 0.05);
  border: 1px solid rgba(255, 70, 70, 0.16);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  box-shadow: var(--glow-soft);
}

.stat-card h3 {
  font-size: 1.7rem;
  margin-bottom: 6px;
  color: #fff;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* GRID */
.feature-grid,
.category-grid,
.games-grid,
.steps-grid,
.audience-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: linear-gradient(180deg, rgba(255, 40, 40, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 70, 70, 0.16);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.category-card:hover,
.game-card:hover,
.step-card:hover,
.audience-card:hover,
.side-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 90, 0.35);
  box-shadow: 0 20px 60px rgba(255, 30, 30, 0.16);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 30, 30, 0.22), rgba(255, 130, 0, 0.16));
  margin-bottom: 18px;
  box-shadow: var(--glow-soft);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  color: #fff;
}

.feature-card p {
  color: var(--muted);
}

/* CATEGORY */
.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card {
  display: block;
  background: linear-gradient(180deg, rgba(255, 35, 35, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 70, 70, 0.16);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.category-card:hover {
  background: linear-gradient(180deg, rgba(255, 35, 35, 0.14), rgba(255,255,255,0.04));
}

.category-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 30, 30, 0.2), rgba(255, 160, 0, 0.14));
  margin-bottom: 18px;
  font-size: 1.5rem;
  box-shadow: var(--glow-soft);
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fff;
}

.category-card p {
  color: var(--muted);
}

/* GAMES */
.games-grid {
  grid-template-columns: repeat(3, 1fr);
}

.game-card {
  background: linear-gradient(180deg, rgba(255, 35, 35, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 70, 70, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.game-thumb {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.38)),
    linear-gradient(0deg, rgba(255, 0, 0, 0.12), transparent);
}

.thumb-1 {
  background:
    linear-gradient(135deg, rgba(255, 30, 61, 0.9), rgba(255, 145, 0, 0.35)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1200&q=80");
}

.thumb-2 {
  background:
    linear-gradient(135deg, rgba(255, 40, 40, 0.85), rgba(255, 200, 0, 0.25)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1200&q=80");
}

.thumb-3 {
  background:
    linear-gradient(135deg, rgba(255, 30, 61, 0.85), rgba(255, 120, 0, 0.2)),
    url("https://images.unsplash.com/photo-1603481588273-2f908a9a7a1b?auto=format&fit=crop&w=1200&q=80");
}

.thumb-4 {
  background:
    linear-gradient(135deg, rgba(255, 20, 20, 0.9), rgba(255, 160, 0, 0.22)),
    url("https://images.unsplash.com/photo-1560253023-3ec5d502959f?auto=format&fit=crop&w=1200&q=80");
}

.thumb-5 {
  background:
    linear-gradient(135deg, rgba(255, 40, 40, 0.82), rgba(255, 210, 0, 0.18)),
    url("https://images.unsplash.com/photo-1511882150382-421056c89033?auto=format&fit=crop&w=1200&q=80");
}

.thumb-6 {
  background:
    linear-gradient(135deg, rgba(255, 35, 35, 0.82), rgba(255, 130, 0, 0.18)),
    url("https://images.unsplash.com/photo-1547394765-185e1e68f34e?auto=format&fit=crop&w=1200&q=80");
}

.game-body {
  padding: 22px;
}

.game-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: #ffe0e0;
  background: rgba(255, 30, 30, 0.16);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: var(--glow-soft);
}

.game-body h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: #fff;
}

.game-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.section-cta {
  margin-top: 34px;
}

/* CONTENT */
.content-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
}

.content-main p + p {
  margin-top: 18px;
}

.content-main p {
  color: #ffdede;
}

.side-card {
  background: linear-gradient(180deg, rgba(255, 35, 35, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 70, 70, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.side-card h3 {
  margin-bottom: 14px;
  color: #fff;
}

.side-card ul li + li {
  margin-top: 10px;
}

.side-card ul a {
  color: #ffd0d0;
}

.side-card ul a:hover {
  color: #fff;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* STEPS */
.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  background: linear-gradient(180deg, rgba(255, 35, 35, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 70, 70, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--primary-3));
  margin-bottom: 16px;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--glow);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  color: #fff;
}

.step-card p {
  color: var(--muted);
}

/* AUDIENCE */
.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience-card {
  background: linear-gradient(180deg, rgba(255, 35, 35, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 70, 70, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.audience-card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.audience-card p {
  color: var(--muted);
}

/* FAQ */
.faq-wrap {
  max-width: 920px;
}

.faq-wrap .section-heading {
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255, 35, 35, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 70, 70, 0.16);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--glow-soft);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: white;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: #ffd5d5;
  transition: transform var(--transition);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer p {
  overflow: hidden;
  color: var(--muted);
  padding: 0 24px 0;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 22px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* CTA */
.cta-section {
  padding-top: 20px;
  padding-bottom: 88px;
}

.cta-box {
  background:
    linear-gradient(135deg, rgba(255, 30, 30, 0.18), rgba(255, 120, 0, 0.08));
  border: 1px solid rgba(255, 70, 70, 0.22);
  border-radius: 28px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: var(--glow);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 10px;
  color: #fff;
}

.cta-box p {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255, 60, 60, 0.16);
  background: rgba(0, 0, 0, 0.22);
  padding-top: 60px;
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-text,
.footer-links a {
  color: var(--muted);
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 60, 60, 0.16);
  color: var(--muted);
  font-size: 0.95rem;
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--primary-3));
  color: white;
  padding: 14px 22px;
  box-shadow:
    0 16px 40px rgba(255, 30, 30, 0.35),
    0 0 18px rgba(255, 60, 60, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.08);
  box-shadow:
    0 18px 44px rgba(255, 30, 30, 0.4),
    0 0 24px rgba(255, 50, 50, 0.35);
}

.btn-outline {
  padding: 14px 22px;
  border-color: rgba(255, 80, 80, 0.2);
  color: white;
  background: rgba(255, 40, 40, 0.04);
}

.btn-outline:hover {
  background: rgba(255, 40, 40, 0.08);
  box-shadow: var(--glow-soft);
}

.btn-sm {
  padding: 10px 16px;
  border-radius: 12px;
}

.btn-card {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 35, 35, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.18);
  color: white;
}

.btn-card:hover {
  background: rgba(255, 35, 35, 0.16);
  box-shadow: var(--glow-soft);
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .feature-grid,
  .category-grid,
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid,
  .audience-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid,
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    background: rgba(18, 4, 6, 0.98);
    border: 1px solid rgba(255, 80, 80, 0.18);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    display: none;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .feature-grid,
  .category-grid,
  .games-grid,
  .steps-grid,
  .audience-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    gap: 10px;
  }

  .cta-box {
    padding: 28px;
  }

  .faq-question {
    padding: 18px 18px;
  }

  .faq-answer p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-item.active .faq-answer p {
    padding-bottom: 18px;
  }
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* bikin persegi */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 70, 70, 0.2);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(255, 20, 20, 0.18);
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.hero-image-box:hover img {
  transform: scale(1.06);
}

.single-game {
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-game-card {
  width: min(720px, 100%);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 40, 40, 0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 70, 70, 0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 20, 20, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(255, 40, 40, 0.25);
}

.single-game-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  background: #120000;
  display: block;
}

.single-game-body {
  padding: 26px;
}

.single-game-body h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}

.single-game-body p {
  color: var(--muted);
  margin-bottom: 18px;
}