@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Playfair+Display:ital,wght@0,600;1,400&family=Nunito:wght@400;600;700&display=swap');
 
:root{
  --hijau:#105a08; --hijau-m:#1e7a14; --hijau-l:#4cb365;
  --gold:#c9a84c; --merah:#b83232;
  --putih:#f8f5ee; --gelap:#1a1a1a; --abu:#666;
  --kartu:#ffffff; --border:#e0ddd4;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Nunito',sans-serif;background:var(--putih);color:var(--gelap);}
 
/* ── NAVBAR ── */
nav{
  position:sticky;top:0;z-index:999;
  background:var(--hijau);
  border-bottom:3px solid var(--gold);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 5%;height:60px;
  box-shadow:0 2px 16px rgba(0,0,0,.3);
}
.nav-logo{
  font-family:'Cinzel Decorative',cursive;
  color:var(--gold);font-size:.9rem;white-space:nowrap;
}
.nav-links{display:flex;gap:2px;list-style:none;}
.nav-links a{
  color:rgba(255,255,255,.75);text-decoration:none;
  font-size:.82rem;font-weight:600;padding:6px 11px;
  border-radius:5px;transition:all .2s;
}
.nav-links a:hover,
.nav-links a.active{background:rgba(255,255,255,.15);color:white;}
.nav-admin{
  background:var(--gold)!important;
  color:var(--hijau)!important;font-weight:700!important;
}
.nav-admin:hover{opacity:.85!important;background:var(--gold)!important;}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;}
.hamburger span{width:24px;height:2px;background:white;border-radius:2px;}
 
/* ── HERO ── */
.hero{
  background:linear-gradient(160deg,var(--hijau) 0%,#0a3008 100%);
  color:white;padding:80px 5% 64px;
  display:flex;flex-direction:column;align-items:center;
  text-align:center;position:relative;overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-label{
  position:relative;z-index:1;
  display:inline-block;background:rgba(201,168,76,.25);
  border:1px solid rgba(201,168,76,.5);
  color:var(--gold);font-size:.7rem;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;
  padding:0px 0px;border-radius:0px;margin-bottom:0px;
}
.hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,5vw,3rem);font-weight:600;
  position:relative;z-index:1;margin-bottom:14px;
}
.hero p{
  font-size:.95rem;color:rgba(255,255,255,.75);
  max-width:520px;line-height:1.7;
  position:relative;z-index:1;
}
 
/* ── MAIN CONTENT ── */
.container{max-width:1100px;margin:0 auto;padding:52px 5%;}
 
.sec-label{
  display:inline-block;background:var(--hijau);color:white;
  font-size:.65rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  padding:4px 12px;border-radius:3px;margin-bottom:12px;
}
.sec-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.4rem,3vw,2rem);font-weight:600;
  margin-bottom:8px;
}
.divider{width:44px;height:3px;background:var(--gold);border-radius:2px;margin-bottom:28px;}
 
/* ── CARDS ── */
.grid-3{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px;}
.grid-4{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:20px;}
 
.card{
  background:var(--kartu);border-radius:10px;overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  transition:transform .2s,box-shadow .2s;
}
.card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.12);}
.card-img{width:100%;height:180px;object-fit:cover;}
.card-img-ph{
  width:100%;height:180px;background:#e8f0e8;
  display:flex;align-items:center;justify-content:center;font-size:2.5rem;
}
.card-body{padding:16px;}
.card-badge{
  display:inline-block;background:var(--hijau);color:white;
  font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  padding:3px 10px;border-radius:3px;margin-bottom:8px;
}
.card-body h3{
  font-family:'Playfair Display',serif;
  font-size:1rem;font-weight:600;margin-bottom:8px;line-height:1.4;
}
.card-body p{font-size:.83rem;color:var(--abu);line-height:1.6;margin-bottom:10px;}
.card-meta{font-size:.75rem;color:#aaa;font-style:italic;}
 
/* Merchandise card horizontal */
.merch-card{
  background:var(--kartu);border-radius:10px;
  border:1px solid var(--border);
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  display:flex;flex-direction:column;
  overflow:hidden;transition:transform .2s;width:280px;
}
.merch-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.12);}
.merch-thumb{width:100%;height:180px;object-fit:cover;border-bottom:1px solid var(--border);}
.merch-thumb-ph{
  width:100%;height:180px;
  background:#e8f0e8;border-bottom:1px dashed var(--hijau-l);
  display:flex;align-items:center;justify-content:center;font-size:2.5rem;
}
.merch-info{padding:14px;display:flex;flex-direction:column;gap:6px;}
.merch-info h4{font-size:.95rem;font-weight:700;}
.merch-info p{font-size:.78rem;color:var(--abu);line-height:1.5;}
.merch-harga{font-size:.9rem;font-weight:700;color:var(--merah);}
 
/* Developer card */
/* Developer card */
.dev-card{
  background:var(--kartu);
  border-radius:14px;
  border:2px solid var(--border);
  box-shadow:0 6px 28px rgba(0,0,0,.1);
  display:flex;flex-direction:row;
  align-items:center;
  gap:48px;
  padding:48px 52px;
  width:100%;
}
.dev-ava{
  width:200px;height:200px;
  border-radius:50%;object-fit:cover;
  border:4px solid var(--hijau-l);
  flex-shrink:0;
}
.dev-ava-ph{
  width:200px;height:200px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,#ccc,#e8e8e8);
  display:flex;align-items:center;justify-content:center;font-size:4rem;
}
.dev-info{display:flex;flex-direction:column;gap:12px;flex:1;}
.dev-card h4{
  font-family:'Playfair Display',serif;
  font-size:2rem;font-weight:600;color:var(--gelap);
}
.dev-divider{width:40px;height:3px;background:var(--gold);border-radius:2px;}
.dev-card p{font-size:.95rem;color:#444;line-height:1.9;}
 
/* Galeri grid */
.galeri-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:10px;margin-top:8px;
}
.galeri-item{
  aspect-ratio:1;border-radius:8px;overflow:hidden;
  border:2px solid var(--border);cursor:pointer;transition:transform .2s;
}
.galeri-item:hover{transform:scale(1.04);}
.galeri-item img{width:100%;height:100%;object-fit:cover;}
 
/* About layout */
.about-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:40px;align-items:start;}
.about-img{width:100%;border-radius:10px;object-fit:cover;border:2px solid var(--border);}
.about-img-ph{
  width:100%;aspect-ratio:1;border-radius:10px;
  background:#e8f0e8;border:2px dashed var(--hijau-l);
  display:flex;align-items:center;justify-content:center;font-size:3rem;
}
.about-text p{font-size:.93rem;color:var(--abu);line-height:1.8;}
 
/* Download section */
.download-box{
  background:var(--kartu);border-radius:12px;
  border:1px solid var(--border);
  box-shadow:0 4px 20px rgba(0,0,0,.08);
  padding:36px;display:flex;gap:36px;align-items:center;
  margin-bottom:52px;
}
.download-logo{
  width:140px;height:140px;border-radius:16px;object-fit:cover;
  flex-shrink:0;border:2px solid var(--border);
}
.download-logo-ph{
  width:140px;height:140px;border-radius:16px;flex-shrink:0;
  background:linear-gradient(135deg,var(--hijau),var(--hijau-l));
  display:flex;align-items:center;justify-content:center;font-size:4rem;
}
.download-info h2{
  font-family:'Playfair Display',serif;
  font-size:1.5rem;margin-bottom:8px;
}
.download-info p{font-size:.9rem;color:var(--abu);line-height:1.7;margin-bottom:16px;}
.download-specs{
  display:flex;gap:12px;flex-wrap:wrap;margin-bottom:20px;
}
.spec-tag{
  background:#e8f5e9;color:var(--hijau-m);
  border:1px solid #a5d6a7;border-radius:5px;
  font-size:.75rem;font-weight:700;padding:4px 12px;
}
.btn-download{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--hijau);color:white;
  text-decoration:none;font-weight:700;font-size:.92rem;
  padding:12px 28px;border-radius:8px;
  box-shadow:0 4px 14px rgba(16,90,8,.3);
  transition:all .25s;
}
.btn-download:hover{background:var(--hijau-m);transform:translateY(-2px);}
 
/* Komentar */
.komentar-wrap{display:grid;grid-template-columns:1fr 1.2fr;gap:32px;align-items:start;}
.komentar-form-box{
  background:var(--kartu);border-radius:10px;
  padding:24px;border:1px solid var(--border);
}
.komentar-form-box h3{
  font-family:'Playfair Display',serif;
  font-size:1.1rem;margin-bottom:16px;
}
.fg{margin-bottom:14px;}
.fg label{
  display:block;font-size:.75rem;font-weight:700;
  color:var(--abu);margin-bottom:5px;
  letter-spacing:.06em;text-transform:uppercase;
}
.fg input,.fg textarea{
  width:100%;padding:9px 12px;
  border:1.5px solid var(--border);border-radius:7px;
  font-family:'Nunito',sans-serif;font-size:.9rem;
  background:#fafaf8;outline:none;transition:border-color .2s;
}
.fg input:focus,.fg textarea:focus{border-color:var(--hijau-l);}
.fg textarea{resize:vertical;min-height:90px;}
.btn-submit{
  background:var(--hijau);color:white;border:none;
  padding:10px 28px;border-radius:7px;font-size:.9rem;font-weight:700;
  font-family:'Nunito',sans-serif;cursor:pointer;transition:background .2s;
}
.btn-submit:hover{background:var(--hijau-m);}
.komen-list{display:flex;flex-direction:column;gap:12px;}
.komen-item{
  background:var(--kartu);border-radius:8px;padding:14px 16px;
  border:1px solid var(--border);box-shadow:0 1px 6px rgba(0,0,0,.05);
}
.komen-nama{font-weight:700;font-size:.88rem;margin-bottom:4px;}
.komen-isi{font-size:.85rem;color:#555;line-height:1.6;font-style:italic;margin-bottom:6px;}
.komen-tgl{font-size:.72rem;color:#aaa;}
 
/* Footer */
footer{
  background:var(--hijau);color:rgba(255,255,255,.55);
  text-align:center;padding:20px 5%;font-size:.82rem;
  border-top:3px solid var(--gold);
}
footer strong{color:var(--gold);}
 
/* Responsive */
@media(max-width:768px){
  .nav-links{
    display:none;flex-direction:column;
    position:absolute;top:60px;left:0;right:0;
    background:var(--hijau);padding:10px 5%;
    border-bottom:3px solid var(--gold);
    box-shadow:0 8px 20px rgba(0,0,0,.2);
  }
  .nav-links.open{display:flex;}
  .nav-links a{padding:10px 12px;font-size:.9rem;}
  .hamburger{display:flex;}
  .about-grid{grid-template-columns:1fr;}
  .komentar-wrap{grid-template-columns:1fr;}
  .download-box{flex-direction:column;align-items:flex-start;padding:24px;}
  .grid-3,.grid-4{grid-template-columns:1fr;}
  .merch-card{width:100%;}
  .galeri-grid{grid-template-columns:repeat(2,1fr);}
}
 
/* WA Beli Button */
.btn-wa-beli {
    background: #25D366;
    color: white;
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity .2s;
}
.btn-wa-beli:hover { opacity: .82; }
 
/* Center grid — konten di tengah, melebar kalau banyak */
.center-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.center-grid .card        { width: 300px; }
.center-grid .merch-card  { width: 280px; }
.center-grid .dev-card { width: 100%; }
 
@media(max-width: 768px){
    .center-grid .card,
    .center-grid .merch-card { width: 100%; }
    .dev-card { padding: 24px; gap: 24px; }
    .dev-ava, .dev-ava-ph { width: 140px; height: 140px; }
}
 
/* ── KOMENTAR SLIDER ── */
.komen-slider-wrap {
    position: relative;
    flex: 1;
}
.komen-slider {
    position: relative;
    min-height: 130px;
}
.komen-slide {
    display: none;
    animation: fadeSlide .4s ease;
}
.komen-slide.active { display: block; }
 
@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}
.komen-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}
.komen-btn {
    background: var(--hijau);
    color: white;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.komen-btn:hover { background: var(--hijau-m); }
.komen-dots { display: flex; gap: 6px; }
.komen-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background .2s;
}
.komen-dot.active { background: var(--hijau); }
 