/* ============================================================
   RESET & BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #040406 0%, #0b0b0d 45%, #060607 100%);
  color: #eee;
  line-height: 1.45;
}

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 28px; width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(6,6,8,0.96);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  box-shadow: 0 1px 0 rgba(255,215,0,0.06), 0 4px 24px rgba(0,0,0,0.5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 68px;
}

/* Logo */
.brand { display: flex; align-items: center; padding: 0 4px; }
.brand a, .brand > a { display: flex; align-items: center; }
.brand img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav */
.nav {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.nav a.active {
  color: #ffd700;
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #ffd700;
  border-radius: 2px;
}
.nav a.cta {
  background: linear-gradient(90deg, #ffd700 0%, #f0b800 100%);
  color: #07070a;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 22px;
  border-radius: 50px;
  margin-left: 8px;
  box-shadow: 0 0 20px rgba(255,215,0,0.25), 0 4px 12px rgba(0,0,0,0.3);
  transition: box-shadow 0.25s, transform 0.2s;
}
.nav a.cta:hover {
  background: linear-gradient(90deg, #ffe040 0%, #ffd700 100%);
  box-shadow: 0 0 32px rgba(255,215,0,0.4), 0 6px 18px rgba(0,0,0,0.35);
  transform: translateY(-1px);
  color: #07070a;
}

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 10000; padding: 4px; }
.hamburger div { width: 24px; height: 2px; background: #ffd700; border-radius: 2px; transition: all 0.3s ease; }

@media (max-width: 1000px) {
  .header { height: 60px; }
  .nav {
    position: fixed; top: 0; right: -100%; width: 270px; height: 100%;
    background: rgba(6,6,8,0.99); flex-direction: column; padding: 80px 24px 24px;
    gap: 4px; border-left: 1px solid rgba(255,215,0,0.1);
    transition: right 0.35s ease; z-index: 9999;
  }
  .nav a { width: 100%; padding: 12px 16px; border-radius: 10px; }
  .nav a.active::after { display: none; }
  .nav a.cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .nav.active { right: 0; }
  .hamburger { display: flex; }
  .menu-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none; transition: opacity 0.35s ease; z-index: 9998;
  }
  .menu-backdrop.active { opacity: 1; pointer-events: auto; }
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px;
  align-items: center; margin: 28px 0 18px; min-height: 420px;
  position: relative; width: 100%;
}
.hero-card {
  background: linear-gradient(180deg,rgba(255,215,0,0.03),rgba(255,215,0,0.01));
  border-radius: 18px; padding: 28px;
  border: 1px solid rgba(255,215,0,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  position: relative; overflow: hidden;
}
.hero .title { font-size: 32px; color: #fff; font-weight: 800; letter-spacing: 0.6px; }
.hero .lead { margin-top: 12px; color: rgba(255,255,255,0.85); font-size: 15px; }
.play-btn {
  display: inline-block; margin-top: 18px; padding: 14px 28px; border-radius: 44px;
  background: linear-gradient(90deg,#ffd700,#caa000); color: #070707;
  font-weight: 800; text-decoration: none; box-shadow: 0 18px 50px rgba(202,160,0,0.12);
}
.gold-orb {
  position: absolute; right: -60px; top: -40px; width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%,rgba(255,236,179,0.5),rgba(255,215,0,0.14) 30%,transparent 50%);
  filter: blur(20px); opacity: 0.95; pointer-events: none;
}
.panel {
  background: linear-gradient(160deg,#0b0b0d,rgba(255,255,255,0.02));
  border-radius: 14px; padding: 20px; border: 1px solid rgba(255,215,0,0.04);
  min-height: 260px; display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: center;
}
.mockup {
  width: 100%; height: 231px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(180deg,#111118,#08080a);
  border: 1px solid rgba(255,255,255,0.02);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.mockup img { width: 100%; height: auto; object-fit: cover; display: block; }

/* ============================================================
   GAMES GRID
   ============================================================ */
.section-title {
  font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; margin: 40px 0 24px; text-align: left; padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(90deg,rgba(255,215,0,0.15),rgba(255,215,0,0.05));
  box-shadow: 0 0 24px rgba(255,215,0,0.4), inset 0 0 12px rgba(255,255,255,0.1);
  border-left: 6px solid #ffd700; transition: all 0.3s ease;
}
.games { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 16px; width: 100%; }
.games::-webkit-scrollbar { height: 8px; }
.games::-webkit-scrollbar-thumb { background: gold; border-radius: 4px; }
.game {
  flex: 0 0 auto; min-width: 220px;
  background: linear-gradient(180deg,#0f0f12,#070708);
  border-radius: 14px; padding: 12px; border: 1px solid rgba(255,215,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6); display: flex; flex-direction: column;
  justify-content: space-between; min-height: 280px; overflow: hidden; cursor: pointer;
}
.game .img-wrap { position: relative; width: 100%; padding-top: 103%; overflow: hidden; border-radius: 10px; }
.game .img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.game h4 { margin-top: 10px; font-size: 15px; color: #fff; letter-spacing: 0.2px; }
.play-btn-game {
  display: inline-block; margin-top: 12px; padding: 10px 22px; border-radius: 30px;
  background: linear-gradient(90deg,#ffd700,#e6c200); color: #060606; font-weight: 700;
  font-size: 13px; text-decoration: none; text-align: center;
  box-shadow: 0 6px 18px rgba(255,215,0,0.25); transition: all 0.25s ease;
}
.play-btn-game:hover { box-shadow: 0 10px 28px rgba(255,215,0,0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { margin-top: 60px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding: 52px 0 40px; border-top: 1px solid rgba(255,215,0,0.08);
}
.footer-col p { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.8; }
.footer-col h4 {
  color: #ffd700; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 16px;
}
.footer-col a {
  color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none;
  display: block; padding: 5px 0; transition: color 0.2s;
}
.footer-col a:hover { color: #ffd700; }
.footer-bottom {
  text-align: center; padding: 20px 0;
  border-top: 1px solid rgba(255,215,0,0.05);
  color: rgba(255,255,255,0.25); font-size: 12px;
}

/* ============================================================
   ARTICLE PAGES — BANNER
   ============================================================ */
.article-banner {
  background: linear-gradient(135deg,rgba(255,215,0,0.07),rgba(255,215,0,0.02));
  border: 1px solid rgba(255,215,0,0.1); border-radius: 18px;
  padding: 52px 44px; margin: 28px 0; position: relative; overflow: hidden;
}
.article-banner::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle,rgba(255,215,0,0.1),transparent 70%);
}
.article-banner h1 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.article-banner p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 580px; line-height: 1.7; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.breadcrumb a { color: #ffd700; text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* ARTICLE LAYOUT */
.article-body { display: grid; grid-template-columns: 1fr 290px; gap: 28px; margin: 32px 0 60px; }
.article-body.full { grid-template-columns: 1fr; }
.article-content {
  background: rgba(255,215,0,0.015); border: 1px solid rgba(255,215,0,0.06);
  border-radius: 16px; padding: 38px;
}
.article-content h2 {
  font-size: 21px; font-weight: 700; color: #ffd700; margin: 32px 0 12px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,215,0,0.1);
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 16px; font-weight: 600; color: #fff; margin: 20px 0 8px; }
.article-content p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.article-content ul, .article-content ol { margin: 10px 0 16px 22px; color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.9; }
.article-content li { margin-bottom: 4px; }
.article-content strong { color: #fff; }
.article-content a { color: #ffd700; text-decoration: none; }

/* SIDEBAR */
.article-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card {
  background: rgba(255,215,0,0.03); border: 1px solid rgba(255,215,0,0.07);
  border-radius: 14px; padding: 22px;
}
.sidebar-card h4 {
  color: #ffd700; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px;
}
.sidebar-card a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px;
  display: block; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.sidebar-card a:hover { color: #ffd700; }
.sidebar-card a:last-child { border: none; }
.sidebar-cta {
  background: linear-gradient(135deg,rgba(255,215,0,0.1),rgba(255,215,0,0.04));
  border: 1px solid rgba(255,215,0,0.15); border-radius: 14px; padding: 24px; text-align: center;
}
.sidebar-cta p { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 14px; line-height: 1.6; }

/* ============================================================
   RTP TABLE
   ============================================================ */
.rtp-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.rtp-table thead tr { background: rgba(255,215,0,0.1); }
.rtp-table th {
  color: #ffd700; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px; padding: 14px 16px; text-align: left;
}
.rtp-table td { padding: 13px 16px; color: rgba(255,255,255,0.78); border-bottom: 1px solid rgba(255,255,255,0.04); }
.rtp-table tr:hover td { background: rgba(255,215,0,0.025); }
.rtp-badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
}
.rtp-badge.high { background: rgba(0,200,100,0.12); color: #00c864; border: 1px solid rgba(0,200,100,0.2); }
.rtp-badge.mid  { background: rgba(255,200,0,0.12);  color: #ffc800; border: 1px solid rgba(255,200,0,0.2); }
.rtp-updated { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 10px; }

/* ============================================================
   CARA MAIN — STEPS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 24px 0; }
.step-card {
  background: rgba(255,215,0,0.03); border: 1px solid rgba(255,215,0,0.07);
  border-radius: 16px; padding: 28px 20px; text-align: center;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg,#ffd700,#caa000); color: #060606;
  font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-card h3 { font-size: 15px; color: #fff; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

.tips-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin: 16px 0; }
.tip-card {
  background: rgba(255,215,0,0.03); border-left: 3px solid #ffd700;
  border-radius: 0 12px 12px 0; padding: 18px 20px;
}
.tip-card h4 { font-size: 14px; font-weight: 600; color: #ffd700; margin-bottom: 6px; }
.tip-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ============================================================
   PROMOSI CARDS
   ============================================================ */
.promo-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin: 24px 0; }
.promo-card {
  border-radius: 16px; padding: 30px 26px;
  border: 1px solid rgba(255,215,0,0.12); position: relative; overflow: hidden;
}
.promo-card.gold { background: linear-gradient(135deg,rgba(255,215,0,0.1),rgba(255,215,0,0.03)); }
.promo-card.dark { background: rgba(255,255,255,0.02); }
.promo-tag {
  display: inline-block; background: linear-gradient(90deg,#ffd700,#caa000); color: #060606;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.promo-card h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.promo-card .promo-value { font-size: 36px; font-weight: 800; color: #ffd700; margin-bottom: 10px; line-height: 1; }
.promo-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 18px; }
.promo-card ul { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.8; margin-left: 16px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 24px 0; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 7px; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,0,0.1); border-radius: 10px;
  padding: 12px 16px; color: #fff; font-family: 'Poppins',sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: #0b0b0d; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(255,215,0,0.35); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  display: inline-block; padding: 14px 38px;
  background: linear-gradient(90deg,#ffd700,#caa000); color: #070707;
  font-weight: 800; font-size: 15px; border: none; border-radius: 44px;
  cursor: pointer; font-family: 'Poppins',sans-serif; box-shadow: 0 8px 24px rgba(202,160,0,0.2);
  transition: box-shadow 0.25s;
}
.btn-submit:hover { box-shadow: 0 12px 32px rgba(202,160,0,0.35); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: rgba(255,215,0,0.025); border: 1px solid rgba(255,215,0,0.07);
  border-radius: 14px; padding: 22px 24px;
}
.contact-info-card h3 { font-size: 13px; font-weight: 700; color: #ffd700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.contact-info-card a { color: #ffd700; text-decoration: none; }

/* ============================================================
   ABOUT — STATS
   ============================================================ */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 28px 0; }
.stat-card {
  background: rgba(255,215,0,0.03); border: 1px solid rgba(255,215,0,0.08);
  border-radius: 14px; padding: 26px 18px; text-align: center;
}
.stat-num { font-size: 34px; font-weight: 800; color: #ffd700; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 20px 0; }
.value-card {
  background: rgba(255,215,0,0.025); border: 1px solid rgba(255,215,0,0.07);
  border-radius: 14px; padding: 24px; text-align: center;
}
.value-icon { font-size: 30px; margin-bottom: 12px; }
.value-card h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .container { padding: 18px; }
  .article-banner { padding: 32px 22px; }
  .article-banner h1 { font-size: 26px; }
  .article-body { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .article-content { padding: 22px; }
  .steps-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 0 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .article-banner h1 { font-size: 22px; }
}
