/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #eee;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to right, #3E0102);
  z-index: 100;
}

.nav-container {
  width: 100%;
  height: 100%;
  padding: 0 32px;        /* jarak tipis dari tepi */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo img {
  height: 70px;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-menu a {
  color: #ddd;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff3b3b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* SAMPING KIRI KANAN */
.hero-side {
  position: absolute;
  top: 0;
  width: 24%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 1;
}

.hero-side.left { left: 0; }
.hero-side.right { right: 0; }

/* AREA TENGAH (BG_HOME) */
.hero-center {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  height: 82%;
  background-size: cover;
  background-position: center;
  z-index: 2;
  box-shadow: 0 0 140px rgba(0,0,0,0.95);
}

/* DARK VIGNETTE */
.hero-center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.9) 78%
  );
}

/* ===================== KONTEN ===================== */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* INI YANG BIKIN SAMA DENGAN CONTOH */
  padding-top: 400px;
}

/* LOGO_HOME */
.hero-logo {
  width: 1000px;        /* BESAR */
  max-width: 90%;
  margin-bottom: 26px;
}

/* BUTTON DOWNLOAD */
.btn-download {
  padding: 14px 46px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* HOVER PUTIH */
.btn-download:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero-side {
    width: 30%;
  }

  .hero-center {
    width: 92%;
    height: 78%;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-logo {
    width: 320px;
  }

  .btn-download {
    padding: 12px 36px;
  }

  .nav-menu {
    display: none;
  }
}

/* ===================== ABOUT ===================== */
.about-full {
  position: relative;
  min-height: 100vh;
  padding: 0 8%;
  background: radial-gradient(circle at center, #ff0000 -50%, #000 50%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-text-wrap {
  padding-top: 0;
}

/* container */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  min-height: 100vh;
}

/* ================= TEXT ================= */
.about-text-wrap {
  flex: 1;
  max-width: 520px;
  padding-top: 40px;
}

/* JUDUL ABOUT */
.about-title {
  font-size: 150px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
}

/* GARIS BAWAH JUDUL */
.about-title::after {
  content: "";
  display: block;
  width: 550px;
  height: 4px;
  background: #fff;
  margin-top: 14px;
}

/* DESKRIPSI */
.about-desc {
  font-size: 25px;
  line-height: 1.9;
  color: #ddd;
  opacity: 0.95;
}

/* ================= IMAGE ================= */
.about-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GAMBAR ABOUT */
.about-image-wrap img {
  max-width: 100%;
  width: 600px;
  background: none;
  padding: 0;
  transform: none;
  box-shadow: 0 25px 60px rgba(0,0,0,0.85);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text-wrap {
    max-width: 100%;
  }

  .about-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-image-wrap img {
    width: 300px;
    margin-top: 40px;
  }
}

/* ===================== GAME PREVIEW ===================== */
.game-preview {
  min-height: 100vh;
  padding: 0 8%;
  padding-top: 20px;     /* ⬅️ KECILIN INI */
  background: radial-gradient(circle at center, #ff0000 -50%, #000 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ⬅️ BUKAN CENTER */
}

.game-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: auto auto; /* ⬅️ DUA BARIS */
  gap: 20px 40px;
  align-items: start;
  margin-top: 40px;
}

/* VIDEO */
.game-video {
  position: relative;
  width: 90%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 25px 60px rgba(0,0,0,0.85);
  overflow: hidden;
}

.game-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.play-btn {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* GAMBAR KANAN */
.game-images {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
}


.game-images img {
  width: 70%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* DESKRIPSI */
.game-desc {
  grid-column: 1 / 2;   /* ⬅️ KOLOM KIRI */
  grid-row: 2 / 3;      /* ⬅️ BARIS KEDUA */
  width: 85%;           /* sama dengan trailer */
  margin-top: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
}

.game-left {
  display: flex;
  flex-direction: column;
  gap: 10px; /* jarak trailer ↔ deskripsi */
}

/* ===================== MERCHANDISE ===================== */
.merchandise {
  min-height: 100vh;
  padding: 120px 8%; 
  /* Background Gradien Asli di Pertahankan */
  background: linear-gradient(to bottom, #000 0%, #1a0000 35%, #3a0000 70%, #7a0000 100%);
  text-align: center;
}

.merch-container {
  max-width: 1200px;
  margin: 0 auto;
}

.merch-sub {
  font-size: 16px;
  letter-spacing: 4px;
  color: #cc0000; /* Merah menyala untuk aksen horor */
  margin-bottom: 10px;
  font-weight: 800;
}

.merch-title {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 70px;
  color: #fff;
  letter-spacing: 2px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
  gap: 50px;
}

/* ================= KARTU MERCH: EFEK KACA IPHONE HOROR ================= */
.merch-item {
  /* Transparansi Putih Sangat Tipis (Efek Kaca) */
  background: rgba(255, 255, 255, 0.04); 
  
  /* Properti Kunci Glassmorphism (Buram di Latar Belakang) */
  backdrop-filter: blur(15px); 
  -webkit-backdrop-filter: blur(15px); 
  
  /* Border Tipis Transparan (Kilauan Tepi Kaca) */
  border: 1px solid rgba(255, 255, 255, 0.08);
  
  border-radius: 20px; 
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); 
  position: relative;
  overflow: hidden;
  text-align: left; 
}

/* Efek Hover Kartu */
.merch-item:hover {
  transform: translateY(-10px) scale(1.02); 
  box-shadow: 0 15px 35px rgba(204, 0, 0, 0.2);
  border-color: rgba(204, 0, 0, 0.5); 
}

/* Garis Merah di Atas (Hanya muncul saat Hover) */
.merch-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: #cc0000;
  transform: scaleX(0);
  transition: 0.5s ease;
  transform-origin: center;
}

.merch-item:hover::before { transform: scaleX(1); }

/* GAMBAR MERCH DI DALAM KACA */
.merch-image {
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.2); 
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03); 
}

.merch-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4)); 
}

.merch-item:hover .merch-image img {
  transform: scale(1.1) rotate(2deg); 
}

/* Teks dan Tombol */
.merch-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 1px;
}

.merch-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.merch-btn {
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  background: rgba(204, 0, 0, 0.8); 
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(5px); 
}

.merch-btn:hover {
  background: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

/* BADGE STOK (MINIMALIS) */
.merch-status {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
}

.merch-status.in { color: #00ff6a; background: rgba(0, 255, 106, 0.08); }
.merch-status.out { color: #ff3b3b; background: rgba(255, 59, 59, 0.08); }

/* ================= POP UP MARCHENDISE (PURE GLASS) ================= */
.merch-modal {
  position: fixed;
  inset: 0;
  /* Latar belakang luar modal agak gelap agar kaca menonjol */
  background: rgba(0, 0, 0, 0.7); 
  backdrop-filter: blur(8px); /* Buramkan seluruh website di belakangnya */
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center; 
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 999;
}

.merch-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.merch-modal-box {
  /* --- EFEK KACA MURNI (PURE GLASS) --- */
  background: rgba(255, 255, 255, 0.05); /* Putih sangaaat transparan */
  backdrop-filter: blur(25px); /* Buram internal tingkat tinggi */
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15); /* Border mengkilap tipis */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
  /* ------------------------------------ */
  
  width: 850px;
  max-width: 90%;
  border-radius: 20px; /* Sudut halus ala iOS */
  padding: 40px;
  display: flex;
  gap: 50px;
  
  /* Animasi muncul */
  transform: scale(0.9) translateY(20px);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  position: relative;
}

.merch-modal.active .merch-modal-box { 
  transform: scale(1) translateY(0); 
}

/* Tombol Close (X) */
.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.modal-close:hover { 
  color: #cc0000; 
  transform: rotate(90deg); 
}

/* WADAH GAMBAR DI DALAM KACA */
.modal-image {
  flex: 0 0 350px;
  /* KUNCI UTAMA: Background dihapus total / dibuat transparan agar tembus pandang */
  background: transparent; 
  display: flex;
  align-items: center;
  justify-content: center;
  /* Efek platform kaca kecil untuk gambar */
  border-bottom: 2px solid rgba(255, 255, 255, 0.1); 
  border-radius: 12px;
  padding: 20px;
}

.modal-image img { 
  width: 100%; 
  object-fit: contain; 
  /* Beri bayangan agar gambar topi/baju terasa melayang */
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8)); 
}

/* INFO PRODUK */
.modal-info {
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-info h3 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 5px;
  letter-spacing: 2px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* Supaya teks menonjol di atas kaca */
}

.modal-price {
  font-size: 28px;
  color: #cc0000; /* Merah Horor */
  font-weight: 800;
  margin-bottom: 15px;
}

.modal-stock-wrap { 
  margin-bottom: 35px; 
}

.modal-stock {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(255,255,255,0.05); /* Kapsul status kaca */
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.modal-stock.out { 
  color: #ff3b3b; 
  border-color: rgba(255, 59, 59, 0.3);
}

/* Tombol Beli */
.modal-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* Efek tombol kaca merah menyala */
  background: rgba(204, 0, 0, 0.7); 
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 100, 100, 0.3);
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.3s ease;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-buy:hover { 
  background: rgba(255, 0, 0, 0.9); 
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); 
  transform: translateY(-3px);
}

/* RESPONSIVE MODAL */
@media (max-width: 768px) {
  .merch-modal-box {
    flex-direction: column;
    padding: 30px 20px;
    height: auto;
    max-height: 85vh;
    overflow-y: auto;
    gap: 20px;
  }
  .modal-image { flex: auto; height: 250px; width: 100%; border: none;}
  .modal-info h3 { font-size: 28px; }
  .modal-buy { width: 100%; }
}

/* ================= DOWNLOAD FULLSCREEN ================= */
.download-full {
  min-height: 100vh;
  background: linear-gradient(to bottom, #7a0000 0%, #000 80%);
  display: flex;
  align-items: center; 
  padding: 80px 8%; 
  color: #fff;
}

.download-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dibagi 2 sama rata (50:50) */
  gap: 80px; 
  width: 100%;
  align-items: center; 
}

/* SISI KIRI: DOWNLOAD & WARNING */
.download-left {
  display: flex;
  flex-direction: column;
}

.download-title {
  font-size: 65px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.download-box-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px; 
}

.download-row {
  display: flex;
  align-items: center;
  gap: 25px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4); 
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 2px;
  transition: 0.3s;
  min-width: 300px;
}

.download-btn:hover {
  background: #fff;
  color: #000;
}

.download-size {
  font-size: 14px;
  opacity: 0.5;
  font-family: monospace;
}

/* WARNING BOX (Horizontal - Menarik & Modern) */
.game-warning-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  background: rgba(204, 0, 0, 0.15); /* Background merah transparan */
  border-left: 4px solid #cc0000; /* Garis merah tegas di kiri */
  border-radius: 0 8px 8px 0;
  margin-top: 10px;
  max-width: 95%;
}

.warning-icon {
  font-size: 40px;
  color: #cc0000; /* Ikon warna merah */
}

.warning-text-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.warning-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}

.warning-text {
  font-size: 13px;
  line-height: 1.6;
  color: #bbb;
}

.developer-tag {
  font-size: 11px;
  color: #777;
  letter-spacing: 2px;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 95%;
}

/* SISI KANAN: HOW TO PLAY (DIPERBESAR) */
.download-right {
  display: flex;
  justify-content: flex-end; 
}

.control-card {
  background: transparent; 
  padding: 0; 
  border: none; 
  box-shadow: none;
  width: 100%;
  max-width: 550px; /* DIPERBESAR */
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px; 
}

.card-header i { font-size: 28px; color: #cc0000; } 

.control-title {
  font-size: 32px; /* Judul diperbesar */
  letter-spacing: 5px;
  font-weight: 900;
}

.control-list {
  display: flex;
  flex-direction: column;
  gap: 25px; /* Jarak antar baris diperlebar */
}

.ctrl-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1); 
  padding-bottom: 15px; 
}

.ctrl-item .label {
  font-size: 16px; /* Teks label diperbesar */
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
}

.keys {
  display: flex;
  gap: 8px; 
}

.key {
  background: #fff;
  color: #000;
  padding: 8px 15px; /* Tombol keyboard diperbesar */
  border-radius: 4px;
  font-weight: 900;
  font-size: 16px; 
  min-width: 45px;
  text-align: center;
  display: inline-block;
  box-shadow: 0 4px 0 #888; 
}

.key.wide { min-width: 100px; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .download-container {
    grid-template-columns: 1fr; 
    gap: 60px;
  }
  .download-right {
    justify-content: flex-start;
  }
}

/* ================= COMMENT + FOOTER ================= */
/* Container Utama */
.comment-footer {
  min-height: 100vh;
  background: linear-gradient(to bottom, #000 0%, #7a0000 100%);
  padding: 80px 8% 0; /* Padding atas ditambah agar lebih lega */
}

.comment-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}

/* Kolom Kiri - List Komentar */
.comment-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.comment-action-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255,255,255,.6);
  padding: 12px 20px;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}

.comment-count { font-size: 12px; opacity: 0.6; }

.comment-box {
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(0,0,0,0.3); /* Sedikit transparan agar gradien BG terlihat */
  height: 500px;
  display: flex;
  flex-direction: column;
}

.comment-list {
  padding: 20px;
  overflow-y: auto;
}

.comment-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comment-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: #fff;
}

.user-icon { color: #cc0000; font-size: 18px; }

.user-msg {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  padding-left: 28px; /* Biar sejajar dengan nama, tidak di bawah ikon */
}

.comment-reply {
  margin-top: 15px;
  margin-left: 28px;
  padding: 10px 15px;
  border-left: 2px solid #cc0000;
  background: rgba(255,255,255,0.03);
}

.admin-name {
  font-size: 13px;
  color: #cc0000;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Kolom Kanan - Form */
.comment-right {
  flex: 0.7;
}

.form-sticky {
  position: sticky;
  top: 120px; /* Form tetap diam saat list di sebelah kiri di-scroll */
}

.form-title-simple {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border-left: 4px solid #cc0000;
  padding-left: 15px;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-form input,
.comment-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 12px;
  font-size: 14px;
  transition: 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #cc0000;
  background: rgba(255,255,255,0.1);
  outline: none;
}

.comment-form textarea { height: 160px; resize: none; }

.comment-form button {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.3s;
}

.comment-form button:hover {
  background: #cc0000;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .comment-wrapper { flex-direction: column; }
  .comment-left, .comment-right { width: 100%; }
}

/* ================= FOOTER ================= */
.footer-mini {
  background: #000;
  text-align: center;
  padding: 60px 0 30px 0;
  
  /* Teknik paksa full-width agar tidak terpotong padding parent */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  
  box-sizing: border-box;
  border-top: 1px solid #1a1a1a;
  color: #fff;
  clear: both; /* Memastikan tidak tertumpuk elemen float */
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-logo span {
  color: #cc0000;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.social-icon {
  color: #666;
  font-size: 24px; /* Sedikit lebih besar agar mudah diklik */
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #cc0000;
  transform: translateY(-5px);
}

.footer-copy {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
}

.footer-divider {
  width: 50px;
  height: 2px;
  background: #cc0000;
  margin: 0 auto 30px;
}

/* Tambahan CSS Reset Global (Taruh di bagian paling atas CSS jika belum ada) */
body, html {
  overflow-x: hidden; /* Mencegah scrollbar horizontal akibat 100vw */
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ===================== KUNCI SCROLL SAAT NAVBAR TERBUKA ===================== */
html.no-scroll, body.no-scroll {
  overflow: hidden !important;
  overscroll-behavior: none; /* Mencegah efek "mantul/karet" di HP */
}

/* Memastikan elemen di belakang tidak bisa disentuh/scroll */
html.no-scroll section, 
body.no-scroll section {
  pointer-events: none; 
}

/* Memastikan navbar tetap bisa ditekan */
html.no-scroll .navbar, 
body.no-scroll .navbar {
  pointer-events: auto;
}

/* =====================================================================
   FULL MOBILE RESPONSIVE (UNTUK SEMUA TIPE HP - MAX WIDTH 768px)
===================================================================== */
@media (max-width: 768px) {
  
  /* 1. GLOBAL PADDING (Biar gak mepet layar) */
  section {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  /* 2. ABOUT SECTION */
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 30px !important;
  }
  .about-title {
    font-size: 50px !important; /* Judul 150px dikecilkan */
    margin-bottom: 10px;
  }
  .about-title::after {
    width: 100px !important; /* Garis bawah diperpendek */
    margin: 15px auto 0 !important;
  }
  .about-desc {
    font-size: 16px !important;
  }
  .about-image-wrap img {
    width: 90% !important;
    max-width: 300px;
  }

  /* 3. GAME PREVIEW SECTION */
  .game-container {
    display: flex !important;
    flex-direction: column !important; /* Jadikan 1 baris ke bawah */
    gap: 20px !important;
  }
  .game-video {
    width: 100% !important;
  }
  .game-images {
    width: 100% !important;
    display: flex;
    overflow-x: auto; /* Gambar bisa di-swipe ke samping */
    gap: 10px;
    padding-bottom: 10px;
  }
  .game-images img {
    width: 140px !important;
    flex-shrink: 0;
  }
  .game-desc {
    width: 100% !important;
    font-size: 15px !important;
    margin-top: 10px;
  }

  /* 4. MERCHANDISE SECTION */
  .merch-title {
    font-size: 32px !important;
    margin-bottom: 40px !important;
  }
  .merch-grid {
    display: flex !important;
    flex-direction: column !important; /* Kartu merch berjejer ke bawah */
    gap: 25px !important;
  }
  .merch-item {
    width: 100% !important;
    padding: 20px !important;
  }
  .merch-name {
    font-size: 18px !important;
  }

  /* 5. DOWNLOAD SECTION */
  .download-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
  }
  .download-left, .download-right {
    width: 100% !important;
  }
  .download-title {
    font-size: 38px !important;
    text-align: center;
  }
  .download-row {
    flex-direction: column !important; /* Tombol dan teks size jadi atas bawah */
    align-items: center !important;
    gap: 10px !important;
  }
  .download-btn {
    width: 100% !important;
    min-width: unset !important;
    justify-content: center;
  }
  .game-warning-box {
    max-width: 100% !important;
  }
  .control-card {
    max-width: 100% !important;
  }
  .control-title {
    font-size: 22px !important;
  }
  .ctrl-item {
    font-size: 14px !important;
  }

  /* 6. COMMENT & FOOTER SECTION */
  .comment-wrapper {
    display: flex !important;
    flex-direction: column !important; /* Kolom chat dan form jadi atas bawah */
  }
  .comment-box {
    height: 350px !important; /* Kotak komentar dipendekkan di HP agar layar tidak penuh */
  }
  .form-sticky {
    position: relative !important;
    top: 0 !important;
  }
  
  .footer-mini {
    padding: 40px 0 20px 0 !important;
  }
  .footer-logo {
    font-size: 20px !important;
  }
}

/* =====================================================================
   UNTUK HP LAYAR SANGAT KECIL (Contoh: iPhone SE
===================================================================== */
@media (max-width: 380px) {
  .about-title {
    font-size: 40px !important;
  }
  .download-title {
    font-size: 30px !important;
  }
  .key {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
  .game-warning-box {
    flex-direction: column !important;
    text-align: center;
  }
}