/* ============================================
   NUSANTARA'S SWEET TREATS — cssindex.css
   ============================================ */
 
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');
 
:root {
  --mint:        #A8D8C8;
  --mint-light:  #D4EDE6;
  --mint-dark:   #6BBDA6;
  --gold:        #D4A843;
  --gold-light:  #F0CC78;
  --cream:       #FDF6E3;
  --cream-dark:  #F2E8C6;
  --brown:       #6B4226;
  --brown-soft:  #9B6B4A;
  --green-nav:   #C8DDB0;
  --white:       #FFFFFF;
  --shadow:      rgba(107, 66, 38, 0.15);
}
 
/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--cream);
  color: var(--brown);
  line-height: 1.6;
}
 
/* ── NAVBAR ── */
.top-header {
  background-color: var(--green-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px var(--shadow);
  border-bottom: 3px solid var(--mint-dark);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 24px;
}

/* ini penting */
.nav-spacer {
  width: 55px; /* samain kira2 sama lebar logo */
}

.nav-title-img {
  height: 55px;
}
 
/* Supaya nav tetap centered dan tidak nempel ke title */
.top-header nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.top-header::after{
  content: "";
}
 
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 16px 0;
  gap: 8px;
}
 
nav ul li a {
  color: var(--brown);           /* FIX: tadinya #fff, susah kebaca */
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}
 
nav ul li a:hover {
  background: var(--gold-light); /* FIX: tadinya transparan jadi hilang */
  color: var(--brown);
  transform: translateY(-2px);
}
 
/* ── HERO / BANNER ── */
.middle {
  background-image: url('gambar/Banner.png');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
}
 
/* Overlay gelap tipis supaya teks lebih terbaca */
.middle::before {
  content: '';
  position: absolute;
  inset: 0;
}
 
.middle h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  text-shadow:
    3px 3px 0 var(--brown),
    0 0 30px rgba(0,0,0,0.3);
  position: relative;
  letter-spacing: 1px;
  animation: fadeDown 0.8s ease both;
}
 
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ── SECTION CONTENT ── */
.section-content {
  padding: 72px 24px;  /* FIX: tadinya 300px, kegedean banget */
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
 
.section-content h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}
 
.section-content h2::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--mint));
  margin-top: 8px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
 
.section-content h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--brown-soft);
  margin-bottom: 8px;
}
 
.section-content p,
.section-content ul {
  font-size: 1rem;   /* FIX: tadinya 1.5rem, terlalu besar */
  color: var(--brown-soft);
  max-width: 680px;
  margin: 0 auto;
}
 
.section-content img {
  margin-top: 24px;
  width: 300px;
  max-width: 100%;
  border-radius: 16px;
  border: 3px solid var(--mint);
  box-shadow: 6px 6px 0 var(--mint-dark);
  transition: transform 0.2s;
}
 
.section-content img:hover {
  transform: scale(1.03);
}
 
/* ── ABOUT SECTION KHUSUS ── */
#about.section-content {
  background: var(--white);
  border-radius: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 2px solid var(--mint-light);
}
 
/* ── COMMENTS SECTION ── */
#comments.section-content {
  text-align: left;
  background: var(--white);
  border-radius: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 2px solid var(--mint-light);
}
 
#comments h2 {
  text-align: center;
}
 
/* Daftar komentar */
.comment-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.comment-item {
  background: var(--cream);
  border: 2px solid var(--mint-light) !important; /* override inline style */
  border-radius: 16px !important;
  padding: 16px 20px !important;
  border-bottom: none !important;
  box-shadow: 3px 3px 0 var(--mint);
  transition: transform 0.15s;
}
 
.comment-item:hover {
  transform: translateX(4px);
}
 
.comment-item h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 6px;
}
 
.comment-item h4 small {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  color: var(--brown-soft);
  font-weight: 600;
}
 
.comment-item p {
  font-size: 0.92rem;
  color: var(--brown-soft);
}
 
/* Form komentar */
.comment-form {
  margin-top: 36px !important;
  background: var(--cream);
  border: 2px dashed var(--mint-dark);
  border-radius: 20px;
  padding: 28px 24px;
}
 
.comment-form h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 20px;
}
 
.comment-form label {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--brown-soft);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
 
.comment-form input[type="text"],
.comment-form textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  padding: 11px 16px;
  border: 2.5px solid var(--mint);
  border-radius: 12px;
  background: var(--white);
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
 
.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}
 
.comment-form input[type="submit"] {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  margin-top: 12px;
  padding: 12px 30px;
  background: var(--gold);
  color: var(--white);
  border: 2.5px solid var(--brown);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--brown);
  transition: transform 0.15s, box-shadow 0.15s;
}
 
.comment-form input[type="submit"]:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brown);
}
 
/* ── MERCHANDISE SECTION ── */
#merchandise.section-content {
  background: var(--mint-light);
  border-radius: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 2px solid var(--mint);
}
 
/* ── PROJECTS ── */
#projects {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
 
#projects h2 {
  font-family: 'Fredoka One', cursive;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 56px;
  color: var(--brown);
}
 
.project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 2.5px solid var(--mint);
  box-shadow: 6px 6px 0 var(--mint-dark);
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
 
.project:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--mint-dark);
}
 
.project.reverse {
  flex-direction: row-reverse;
}
 
.project-text { flex: 1; padding: 12px; }
 
.project p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--brown-soft);
}
 
.project a {
  font-family: 'Fredoka One', cursive;
  background: var(--gold);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 2.5px solid var(--brown);
  box-shadow: 3px 3px 0 var(--brown);
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
 
.project a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brown);
}
 
.project-images {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
 
.project-images img {
  width: 260px;
  max-width: 100%;
  border-radius: 14px;
  border: 2.5px solid var(--mint);
  box-shadow: 4px 4px 12px var(--shadow);
  object-fit: cover;
  transition: transform 0.25s;
  cursor: pointer;
}
 
.project-images img:hover {
  transform: scale(1.04) rotate(-1deg);
}
 
/* ── LOGOUT BUTTON ── */
.logout-button input[type="button"] {
  font-family: 'Fredoka One', cursive;
  background-color: var(--mint-dark);
  color: var(--white);
  border: 2.5px solid var(--brown);
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 3px 3px 0 var(--brown);
  transition: background-color 0.2s, transform 0.15s;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
 
.logout-button input[type="button"]:hover {
  background-color: var(--brown);
  transform: translateY(-52%) scale(1.05);
}
 
/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 24px 20px;
  background: var(--green-nav);
  border-top: 3px solid var(--mint-dark);
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 700;
}
 
/* ── SECTION TAG (label kecil di atas judul) ── */
.section-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--brown);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  margin-bottom: 14px;
}
 
/* ── GAME SECTION ── */
.game-section {
  background: var(--white);
  border-radius: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 2px solid var(--mint-light);
}
 
.game-desc {
  font-size: 1.05rem !important;
  max-width: 680px;
  margin: 0 auto 48px !important;
  color: var(--brown-soft);
  line-height: 1.8;
}
 
.game-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 8px;
  text-align: center;
}
 
.feature-card {
  background: var(--cream);
  border: 2.5px solid var(--mint);
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 4px 4px 0 var(--mint-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
 
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 4px 8px 0 var(--mint-dark);
}
 
.feature-icon {
  font-size: 2.6rem;
  margin-bottom: 12px;
  display: block;
}
 
.feature-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 8px;
}
 
.feature-card p {
  font-size: 0.88rem !important;
  color: var(--brown-soft);
  line-height: 1.6;
}
 
/* ── ABOUT CARD ── */
.about-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  max-width: 720px;
  margin: 24px auto;
  position: relative;
}
 
/* Foto di LUAR box, menonjol di kiri */
.about-card img {
  width: 220px !important;
  height: 220px;
  object-fit: cover;
  border-radius: 20px !important;
  border: 4px solid var(--gold) !important;
  box-shadow: 6px 6px 0 var(--gold-light) !important;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-right: -24px; /* overlap ke box */
  margin-bottom: 0;
}
 
/* Box teks di kanan */
.about-card-text {
  flex: 1;
  background: var(--cream);
  border: 2.5px solid var(--mint);
  border-radius: 20px;
  padding: 32px 32px 32px 52px; /* padding kiri lebih besar buat ruang overlap foto */
  box-shadow: 5px 5px 0 var(--mint-dark);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1;
}
 
.about-card:hover .about-card-text {
  transform: translateY(-4px);
  box-shadow: 5px 9px 0 var(--mint-dark);
}
 
.about-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 10px;
}
 
.about-card p {
  font-size: 0.95rem;
  color: var(--brown-soft);
  line-height: 1.7;
}
 
/* Responsive: stack vertikal di HP */
@media (max-width: 600px) {
  .about-card {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
 
  .about-card img {
    width: 140px !important;
    height: 140px;
    border-radius: 50% !important;
    margin-right: 0 !important;
    margin-bottom: -20px !important;
    z-index: 2;
  }
 
  .about-card-text {
    padding: 36px 20px 24px;
    text-align: center;
    width: 100%;
  }
}
 
/* ── MERCHANDISE SECTION ── */
.merch-section {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--cream) 100%);
  border-radius: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 2px solid var(--mint);
}
 
.merch-intro {
  color: var(--brown-soft);
  margin-bottom: 36px !important;
  font-size: 1rem !important;
}
 
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
 
.merch-card {
  background: var(--white);
  border: 2.5px solid var(--mint);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}
 
.merch-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--gold);
}
 
.merch-img-wrap {
  background: var(--cream);
  border-bottom: 2.5px solid var(--mint);
  padding: 24px;
  text-align: center;
}
 
.merch-img-wrap img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 10px;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
 
.merch-info {
  padding: 18px 20px;
}
 
.merch-info h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 6px;
}
 
.merch-desc {
  font-size: 0.88rem;
  color: var(--brown-soft);
  line-height: 1.5;
  margin-bottom: 12px;
}
 
.merch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
 
.merch-price {
  display: inline-block;
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--gold);
  background: var(--cream);
  padding: 4px 14px;
  border-radius: 50px;
  border: 2px solid var(--gold-light);
}
 
.merch-btn {
  display: inline-block;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  background: #25D366;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2.5px solid #1ead52;
  box-shadow: 3px 3px 0 #1ead52;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
 
.merch-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #1ead52;
}
 
/* ── EMPTY MESSAGE ── */
.empty-msg {
  text-align: center;
  color: var(--brown-soft) !important;
  font-style: italic;
  padding: 32px;
  font-size: 1rem !important;
}
 
/* ── RESPONSIVE — Tablet (≤768px) ── */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 16px;
    justify-content: center;
  }
 
  nav ul li a {
    font-size: 0.85rem;
    padding: 6px 14px;
  }
 
  .middle { height: 50vh; }
 
  .section-content {
    padding: 48px 16px;
    border-radius: 20px;
    margin-left: 12px;
    margin-right: 12px;
  }
 
  /* Game features: 2 kolom di tablet */
  .game-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
 
  /* About cards: full width */
  .about-card {
    display: block;
    max-width: 100%;
    margin: 12px 0;
  }
 
  /* Merch grid: 2 kolom di tablet */
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
 
  .project {
    flex-direction: column;
    padding: 28px 20px;
  }
  .project.reverse { flex-direction: column; }
}
 
/* ── RESPONSIVE — HP (≤480px) ── */
@media (max-width: 480px) {
  .middle { height: 45vh; }
  .middle h1 { font-size: 1.6rem; }
 
  .section-content h2 { font-size: 1.5rem; }
  .section-content {
    padding: 36px 14px;
    margin-left: 8px;
    margin-right: 8px;
  }
 
  /* Game features: 1 kolom di HP */
  .game-features {
    grid-template-columns: 1fr;
  }
 
  /* Merch grid: 1 kolom di HP */
  .merch-grid {
    grid-template-columns: 1fr;
  }
 
  .comment-form input[type="text"],
  .comment-form textarea {
    font-size: 0.9rem;
  }
 
  nav ul li a {
    font-size: 0.78rem;
    padding: 5px 10px;
  }
 
  footer { font-size: 0.8rem; padding: 18px 12px; }
}
 
/* ============================================
   GAME PAGE & DOWNLOAD BUTTON STYLES
   ============================================ */
 
/* ── TOMBOL DOWNLOAD DI HERO (index.php) ── */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}
 
.btn-download {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  background: var(--gold);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  border: 3px solid var(--brown);
  box-shadow: 4px 4px 0 var(--brown);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-block;
  animation: fadeDown 1s ease 0.3s both;
}
 
.btn-download:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--brown);
}
 
/* ── GAME HERO (game.php) ── */
.game-hero {
  background-image: url('gambar/Banner.png');
  background-size: cover;
  background-position: center;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
}
 
.game-hero::before {
  content: '';
  position: absolute;
  inset: 0;
}
 
.game-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
 
.game-hero-content h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  text-shadow: 3px 3px 0 var(--brown);
  line-height: 1.1;
}
 
.game-hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--brown);
  max-width: 560px;
  line-height: 1.6;
}
 
.hero-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
 
.btn-specs {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  border: 3px solid var(--white);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.3);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
 
.btn-specs:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
}
 
/* ── GAME PAGE SECTIONS ── */
.game-page-section {
  padding: 72px 24px;
}
 
.game-page-inner {
  max-width: 960px;
  margin: 0 auto;
}
 
.game-page-section h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 20px;
  display: inline-block;
}
 
.game-page-section h2::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--mint));
  margin-top: 8px;
  width: 70%;
}
 
.game-full-desc {
  font-size: 1.05rem; 
  color: var(--brown-soft);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 16px;
  align-content: center;
}
 
/* ── SPECS SECTION ── */
.specs-section {
  background: var(--cream-dark);
}
 
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
 
.specs-card {
  background: var(--white);
  border: 2.5px solid var(--mint);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 5px 5px 0 var(--mint-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
 
.specs-card:hover {
  transform: translateY(-4px);
  box-shadow: 5px 9px 0 var(--mint-dark);
}
 
.specs-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
 
.specs-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--mint);
}
 
.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
 
.spec-label {
  font-weight: 800;
  color: var(--brown-soft);
  min-width: 80px;
  flex-shrink: 0;
}
 
.spec-value {
  color: var(--brown);
  text-align: right;
}
 
/* ── DOWNLOAD SECTION ── */
.download-section {
  background: var(--mint-light);
}
 
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
 
.download-card {
  background: var(--white);
  border: 2.5px solid var(--mint);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--mint-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
 
.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 10px 0 var(--mint-dark);
}
 
.download-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
 
.download-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 6px;
}
 
.download-card p {
  font-size: 0.88rem;
  color: var(--brown-soft);
  margin-bottom: 4px;
}
 
.dl-size {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem !important;
  color: var(--gold) !important;
  margin-bottom: 20px !important;
}
 
.btn-dl {
  display: inline-block;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 2.5px solid var(--brown);
  box-shadow: 3px 3px 0 var(--brown);
  transition: transform 0.15s, box-shadow 0.15s;
  width: 100%;
  text-align: center;
}
 
.btn-dl:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brown);
}
 
.btn-dl-pc {
  background: var(--gold);
  color: var(--white);
}
 
.btn-dl-mobile {
  background: var(--mint-dark);
  color: var(--white);
}
 
.btn-back {
  display: inline-block;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  color: var(--brown-soft);
  text-decoration: none;
  margin-top: 36px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px dashed var(--brown-soft);
  transition: background 0.2s, color 0.2s;
}
 
.btn-back:hover {
  background: var(--cream-dark);
  color: var(--brown);
}
 
/* ── RESPONSIVE GAME PAGE ── */
@media (max-width: 600px) {
  .hero-btn-group { flex-direction: column; align-items: center; }
  .btn-download, .btn-specs { width: 100%; max-width: 280px; text-align: center; }
  .specs-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .spec-value { text-align: left; }
}
 
/* ── HERO TITLE IMAGE ── */
.hero-content .hero-title-img,
.game-hero-content .hero-title-img {
  max-width: 1250px;
  width: 85%;
  height: auto !important;
  min-height: 80px;
  animation: fadeDown 0.8s ease both;
}
 
.game-detail-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  text-align: center;
}
 
.game-detail-text {
  width: 100%;
  max-width: 720px;
  text-align: center !important;
}
 
.game-detail-text .game-full-desc {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
 
.game-detail-img {
  width: 320px;
  max-width: 90%;
  margin: 0 auto;
}
 
.game-detail-img img {
  width: 100%;
  border-radius: 20px;
  border: 3px solid var(--mint);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* ── COMMENT PAGINATION ── */
.comment-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}
 
.page-btn {
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2.5px solid var(--mint-dark);
  background: var(--white);
  color: var(--brown);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 3px 3px 0 var(--mint-dark);
}
 
.page-btn:hover {
  background: var(--mint-light);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--mint-dark);
}
 
.page-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--brown);
  box-shadow: 3px 3px 0 var(--brown);
}

#Character.section-content {
  background: var(--white);
  border-radius: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 2px solid var(--mint-light);
}

#Recipe.section-content {
  background: var(--white);
  border-radius: 28px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 2px solid var(--mint-light);
}
 