/* ============================================
   OVOGAME.ID — Top Up Game
   ============================================ */

:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --primary-light: #A78BFA;
  --secondary: #EC4899;
  --accent: #FBBF24;
  --dark: #0F0A1F;
  --dark-2: #1A1230;
  --dark-3: #2A1E45;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --border: #E5E7EB;
  --text: #1F1F2E;
  --text-muted: #6B7280;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;

  --gradient-brand: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --gradient-dark: linear-gradient(135deg, #0F0A1F 0%, #2A1E45 100%);
  --gradient-gold: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 12px rgba(15,10,31,0.08);
  --shadow-lg: 0 10px 30px rgba(124,58,237,0.15);
  --shadow-glow: 0 0 30px rgba(124,58,237,0.3);

  --radius: 12px;
  --radius-lg: 16px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { transition: color .2s; }
.topbar-social a:hover { color: var(--accent); }

/* ============ HEADER ============ */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-brand);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 22px;
  box-shadow: var(--shadow-glow);
}
.logo-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-text .tld { color: var(--accent); -webkit-text-fill-color: var(--accent); }

.nav { display: flex; gap: 28px; flex: 1; }
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: color .2s;
  position: relative;
}
.nav a:hover { color: var(--primary); }
.nav a.active { color: var(--primary); }
.nav a.active::after {
  content: ''; position: absolute; bottom: -20px; left: 0; right: 0;
  height: 3px; background: var(--gradient-brand); border-radius: 2px;
}

.header-actions { display: flex; gap: 12px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-gold {
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: var(--shadow);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-block { width: 100%; padding: 14px 20px; font-size: 16px; }

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--text);
}

/* ============ HERO ============ */
.hero {
  background: var(--gradient-dark);
  color: white;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.4), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.3), transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(251,191,36,0.15);
  color: var(--accent);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); }

.hero-visual {
  position: relative;
  height: 380px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 18px;
  width: 200px;
  box-shadow: var(--shadow-lg);
  transition: transform .3s;
}
.hero-card:hover { transform: translateY(-5px); }
.hero-card-1 { top: 0; right: 100px; transform: rotate(-5deg); }
.hero-card-2 { top: 80px; right: 20px; transform: rotate(3deg); }
.hero-card-3 { top: 200px; right: 130px; transform: rotate(-2deg); }
.hero-card-cover {
  height: 100px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.hero-card-cover span { z-index: 1; }
.hero-card-cover img {
  position: absolute;
  inset: 10%;
  width: 80%;
  height: 80%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4));
}
.hero-card-name { color: white; font-weight: 600; font-size: 14px; }
.hero-card-meta { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 2px; }

/* ============ FEATURES STRIP ============ */
.features-strip {
  background: var(--surface);
  margin-top: -40px;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.feature-item { display: flex; gap: 14px; align-items: center; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}
.feature-title { font-weight: 700; font-size: 15px; }
.feature-desc { font-size: 13px; color: var(--text-muted); }

/* ============ SECTION ============ */
.section { padding: 70px 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle { color: var(--text-muted); margin-top: 6px; }

/* ============ CATEGORY TABS ============ */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-tab {
  padding: 10px 18px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  color: var(--text);
}
.cat-tab:hover { border-color: var(--primary); color: var(--primary); }
.cat-tab.active {
  background: var(--gradient-brand);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow);
}

/* ============ SEARCH ============ */
.search-box {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 4px 4px 4px 18px;
  max-width: 400px;
  margin-bottom: 24px;
  transition: border-color .2s;
}
.search-box:focus-within { border-color: var(--primary); }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 6px;
  font-size: 14px;
  background: transparent;
}
.search-box button {
  background: var(--gradient-brand);
  color: white;
  border-radius: 100px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 13px;
}

/* ============ GAME GRID ============ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.game-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  border: 1px solid var(--border);
  display: block;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.game-cover {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.game-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}
.game-initial {
  font-size: 56px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  z-index: 1;
}
.game-img {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}
.game-popular-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gradient-gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: var(--shadow);
}
.game-info { padding: 14px; }
.game-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-publisher {
  font-size: 12px;
  color: var(--text-muted);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state-icon { font-size: 48px; margin-bottom: 12px; }

/* ============ HOW TO ============ */
.how-to {
  background: linear-gradient(180deg, var(--bg) 0%, #F0EBFA 100%);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--surface);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
}
.step-title { font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--text-muted); }

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 26px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.why-title { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.why-desc { color: var(--text-muted); font-size: 14px; }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--bg); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--surface);
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.test-stars { color: var(--accent); margin-bottom: 12px; font-size: 16px; }
.test-text {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.7;
}
.test-author { display: flex; gap: 12px; align-items: center; }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
}
.test-name { font-weight: 700; font-size: 14px; }
.test-game { font-size: 12px; color: var(--text-muted); }

/* ============ CTA ============ */
.cta-section {
  background: var(--gradient-dark);
  color: white;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.3), transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer h4 {
  color: white;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.footer-about p { font-size: 14px; line-height: 1.7; max-width: 350px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: all .2s;
}
.footer-social a:hover { background: var(--gradient-brand); transform: translateY(-2px); }

.footer-payment {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.payment-pill {
  background: rgba(255,255,255,0.08);
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ============ TOPUP DETAIL PAGE ============ */
.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  padding: 20px 0;
}
.breadcrumb a { color: var(--primary); }

.topup-header {
  background: var(--gradient-dark);
  color: white;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.topup-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(124,58,237,0.4), transparent 60%);
}
.topup-header .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}
.topup-cover {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: white;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.topup-cover-initial {
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -0.02em;
  z-index: 1;
}
.topup-cover img {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}
.topup-meta h1 { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.topup-meta-pubs { color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.topup-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.topup-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.topup-tag.gold {
  background: rgba(251,191,36,0.15);
  color: var(--accent);
  border-color: rgba(251,191,36,0.3);
}

.topup-body { padding: 40px 0 60px; }
.topup-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.topup-step {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.topup-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.topup-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.topup-step-title { font-weight: 700; font-size: 18px; }

.field-group { margin-bottom: 16px; }
.field-group:last-child { margin-bottom: 0; }
.field-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.field-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  background: var(--surface);
}
.field-input:focus { border-color: var(--primary); }

.denomination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.denom-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  transition: all .2s;
  background: var(--surface);
  text-align: left;
  position: relative;
}
.denom-card:hover { border-color: var(--primary-light); transform: translateY(-2px); }
.denom-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(236,72,153,0.05));
}
.denom-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  background: var(--gradient-brand);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}
.denom-label { font-weight: 600; font-size: 13px; margin-bottom: 4px; color: var(--text); }
.denom-price { font-weight: 800; font-size: 15px; color: var(--primary); }

.payment-group { margin-bottom: 18px; }
.payment-group:last-child { margin-bottom: 0; }
.payment-group-title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.payment-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  transition: all .2s;
  background: var(--surface);
  text-align: left;
}
.payment-card:hover { border-color: var(--primary-light); }
.payment-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(236,72,153,0.05));
}
.payment-name { font-weight: 600; font-size: 13px; }
.payment-fee { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.summary-row.muted { color: var(--text-muted); }
.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.summary-total {
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ============ CEK TRANSAKSI / GENERIC PAGE ============ */
.page-hero {
  background: var(--gradient-dark);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(236,72,153,0.3), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); }

.page-body { padding: 50px 0 70px; }
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.alert-info { background: #EEF2FF; color: #3730A3; border-left: 4px solid #6366F1; }
.alert-success { background: #ECFDF5; color: #065F46; border-left: 4px solid #10B981; }
.alert-warning { background: #FFFBEB; color: #92400E; border-left: 4px solid #F59E0B; }

.detail-list { list-style: none; }
.detail-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list .label { color: var(--text-muted); }
.detail-list .value { font-weight: 600; }

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.status-success { background: #D1FAE5; color: #065F46; }
.status-pending { background: #FEF3C7; color: #92400E; }
.status-failed { background: #FEE2E2; color: #991B1B; }

/* ============ ABOUT PAGE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 { font-size: 28px; margin-bottom: 14px; }
.about-text p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.about-visual {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: white;
  font-size: 80px;
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topup-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .test-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-fields { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); flex-direction: column; gap: 0; padding: 12px; box-shadow: var(--shadow-lg); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav a.active::after { display: none; }
  .nav a.active { background: rgba(124,58,237,0.08); }
  .header .container { position: relative; }
  .mobile-menu-toggle { display: block; }
  .header-actions .btn-outline { display: none; }
  .topbar-info { font-size: 11px; gap: 12px; }
  .topup-header .container { flex-direction: column; text-align: center; }
  .topup-cover { width: 100px; height: 100px; font-size: 36px; }
  .features-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .game-initial { font-size: 40px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 24px; }
  .hero { padding: 40px 0 60px; }
  .cta-section h2 { font-size: 26px; }
}
