/* ==========================================================================
   StarGold Digital (sgdigital.id) - Official Landing & Verification Styling
   PT STARGOLD DIGITAL INDONESIA - Matching App Dashboard Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: rgba(6, 11, 20, 0.65); /* Glass Dark */
  --bg-card: rgba(13, 17, 23, 0.82); /* Translucent Obsidian Card */
  --bg-card-light: rgba(22, 27, 34, 0.88);
  --bg-card-hover: rgba(26, 31, 43, 0.92); /* Light Hover */
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-subtle: rgba(212, 175, 55, 0.15); /* Lighter border */
  
  --gold-primary: #D4AF37;
  --gold-light: #FCE894;
  --gold-accent: #EAC843;
  --gold-dark: #B8860B;
  --gold-gradient: linear-gradient(135deg, #FFF1B0 0%, #D4AF37 50%, #B8860B 100%);
  --gold-button-gradient: linear-gradient(180deg, #EAD788 0%, #C49F47 50%, #B08836 100%);
  --gold-glow: rgba(212, 175, 55, 0.1);
  
  --text-main: #F8FAFC; /* Dark Text */
  --text-dark: #FFFFFF;
  --text-muted: #A0AABF; /* Muted Dark Text */
  
  --success: #10B981;
  --success-bg: #D1FAE5;
  --danger: #EF4444;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  --shadow-gold: 0 4px 14px 0 rgba(212, 175, 55, 0.25);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: #0B0E14;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--bg-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}

/* Utility Classes */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.font-serif-gold {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  color: #FFF1B0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Gold Wave Lines Graphic Background (From Mockup) */
.bg-wave-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1100px;
  background: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.18) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900' fill='none'%3E%3Cpath d='M-100 150 C 300 0, 600 300, 1540 100' stroke='url(%23goldLine)' stroke-width='1' stroke-opacity='0.6'/%3E%3Cpath d='M-100 250 C 400 100, 800 500, 1540 250' stroke='url(%23goldLine)' stroke-width='0.5' stroke-opacity='0.4'/%3E%3Cpath d='M-100 650 C 500 900, 900 450, 1540 700' stroke='url(%23goldLine)' stroke-width='1' stroke-opacity='0.5'/%3E%3Cdefs%3E%3ClinearGradient id='goldLine' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23EAD788' stop-opacity='0'/%3E%3Cstop offset='50%25' stop-color='%23C49F47' stop-opacity='1'/%3E%3Cstop offset='100%25' stop-color='%238C6822' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E"),
    linear-gradient(180deg, #050608 0%, #080A0E 40%, var(--bg-dark) 100%);
  background-repeat: no-repeat;
  background-size: cover, cover, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 6, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  color: #F8FAFC;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #FFF1B0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--gold-button-gradient);
  color: #050608;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid #FFE885;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -8px rgba(212, 175, 55, 0.6);
  filter: brightness(1.08);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: rgba(5, 6, 8, 0.6);
  color: #FFF1B0;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--gold-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold-glow);
  border-color: #FFE082;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.official-hero-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1px;
  margin: 16px 0 18px;
  color: #FFFFFF;
}

.hero-welcome-text {
  font-size: 1.1rem;
  color: #E2E8F0;
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
}

/* ==========================================================================
   MOBILE APP DASHBOARD REPLICA COMPONENTS (From User Screenshot)
   ========================================================================== */

.app-dashboard-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  padding: 24px;
  color: var(--text-main);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

/* Total Asset Card */
.total-asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.total-asset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.total-asset-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.percent-pill {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.total-asset-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total-asset-value {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Member Tier & Dual Prices Section */
.member-section {
  margin-bottom: 24px;
}

.tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #080A0E;
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.dual-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.price-card-yellow {
  background: #11151C;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  padding: 16px;
}

.price-card-yellow .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.price-card-yellow .price-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-card-yellow .price-sub {
  font-size: 0.78rem;
  color: #94A3B8;
  text-decoration: line-through;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.sub-banner {
  background: rgba(8, 10, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sub-banner:hover {
  background: #1E293B;
}

/* 4 Quick Action Buttons Grid */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.action-btn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.action-icon-box {
  width: 68px;
  height: 68px;
  background: var(--bg-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: all 0.2s ease;
}

.action-btn-item:hover .action-icon-box {
  transform: translateY(-4px);
  background: var(--bg-card);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.action-btn-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Promo Banner Slider */
.promo-banner-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.promo-banner-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFE082;
  margin-bottom: 6px;
}

.promo-banner-text p {
  font-size: 0.82rem;
  color: #CBD5E1;
  max-width: 260px;
}

/* Interactive Price Chart Section */
.chart-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.chart-svg-box {
  width: 100%;
  height: 180px;
  margin-bottom: 16px;
}

.chart-stat-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.stat-card-white {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 16px;
}

.stat-card-white .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-card-white .val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.timeframe-selector {
  display: flex;
  justify-content: space-between;
  background: #161B22;
  padding: 4px;
  border-radius: 100px;
}

.timeframe-pill {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.2s ease;
}

.timeframe-pill.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--text-main);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Exploration Article Cards */
.exploration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.article-card-mini {
  background: var(--bg-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-card-mini:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  background: var(--bg-card);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.article-img-placeholder {
  width: 100%;
  height: 110px;
  background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
}

.article-content-mini {
  padding: 12px;
}

.article-date-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.invest-tag {
  background: rgba(212, 175, 55, 0.15);
  color: #FDE68A;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.article-title-mini {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.catalog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card);
}

.catalog-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  color: #FFF1B0;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.gold-img-placeholder {
  width: 110px;
  height: 135px;
  margin: 24px auto;
  background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 100%);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.25rem;
  text-align: center;
  padding: 10px;
  position: relative;
}

.gold-img-placeholder::after {
  content: 'STAR GOLD 999.9';
  font-size: 0.55rem;
  letter-spacing: 1px;
  margin-top: 6px;
  opacity: 0.9;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
}

.catalog-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.catalog-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.catalog-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.2);
}

.feature-icon {
  width: 58px;
  height: 58px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Payment Partners Banner */
.xendit-banner {
  background: linear-gradient(180deg, rgba(15, 18, 26, 0.95) 0%, rgba(5, 6, 8, 0.98) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.payment-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #0B0E14;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.9);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #FFFFFF;
}

.legal-text-content {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-text-content h4 {
  color: var(--text-main);
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 20px;
  max-width: 340px;
}

.footer-col h4 {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold-primary);
}

.company-info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 20px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Imperial Dark Mode Glow Overrides */
.feature-card:hover, .catalog-card:hover, .action-btn-item:hover .action-icon-box {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.8);
}
.app-dashboard-wrapper {
    box-shadow: 0 0 40px rgba(0,0,0,0.8), 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Fix Gold Image Placeholder Contrast */
.gold-img-placeholder {
    color: #0B0E14 !important;
}
.gold-img-placeholder::after {
    color: #0B0E14 !important;
}
/* Section Padding Increase */
.section {
    padding: 100px 0;
}
/* Increase Gaps and Paddings for Luxury Feel */
.catalog-grid {
    gap: 40px !important;
}
.catalog-card {
    padding: 40px 32px !important;
}
.features-grid {
    gap: 40px !important;
}
.feature-card {
    padding: 40px 32px !important;
}
.exploration-grid {
    gap: 24px !important;
}


/* Fix Catalog Text Colors */
.catalog-info h3 {
  color: #FFFFFF !important;
  font-weight: 700;
  margin-bottom: 8px;
}

.catalog-info p {
  color: #94A3B8 !important;
}

/* 
 * ==========================================
 * PENGATURAN WARNA BACKGROUND AURORA
 * ==========================================
 * Anda dapat mengatur ketebalan warna emas dan zamrud di sini!
 * Cukup ubah angka desimal (0.01 sampai 1.0) pada nilai "rgba".
 * Semakin tinggi angkanya, semakin tebal warnanya.
 */
:root {
  --aurora-gold-utama: rgba(212, 175, 55, 0.45);   /* Default: 0.45 */
  --aurora-gold-inti: rgba(255, 215, 0, 0.25);     /* Default: 0.25 */
  
  --aurora-emerald-utama: rgba(16, 185, 129, 0.40); /* Default: 0.40 */
  --aurora-emerald-inti: rgba(52, 211, 153, 0.25);  /* Default: 0.25 */
  
  --aurora-debu-tengah: rgba(212, 175, 55, 0.05);   /* Default: 0.05 */
  --aurora-kegelapan: rgba(3, 6, 10, 0.8);          /* Default: 0.80 */
}

body {
  background-color: #03060A; /* Deep Obsidian Space */
  background-image: 
    /* 1. Vignette to anchor the center */
    radial-gradient(circle at 50% 50%, transparent 0%, var(--aurora-kegelapan) 100%),
    /* 2. Supernova Gold (Top Right Burst) */
    radial-gradient(circle at 85% -10%, var(--aurora-gold-utama) 0%, transparent 65%),
    radial-gradient(circle at 90% -5%, var(--aurora-gold-inti) 0%, transparent 40%),
    /* 3. Abyssal Emerald (Bottom Left Burst) */
    radial-gradient(circle at 5% 110%, var(--aurora-emerald-utama) 0%, transparent 70%),
    radial-gradient(circle at 0% 105%, var(--aurora-emerald-inti) 0%, transparent 45%),
    /* 4. Ambient Core Dust */
    radial-gradient(circle at 50% 50%, var(--aurora-debu-tengah) 0%, transparent 70%);
  background-size: 100% 100%;
  background-attachment: fixed;
}

.bg-wave-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  /* Premium Micro-Grain Titanium Texture */
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="1.2" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Global Heading Color Fixes */
h1, h2, h3, h4, h5, h6, 
.feature-card h3, 
.catalog-card h3 {
  color: #FFFFFF;
}

/* Enhancing the Live Badge */
.badge-gold {
  background: rgba(16, 185, 129, 0.1) !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  color: #10B981 !important;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15) !important;
}
.badge-pulse {
  background: #10B981 !important;
  box-shadow: 0 0 8px #10B981 !important;
}

/* Financial Growth Text */
.growth-text {
  color: #10B981;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================
 * MOBILE RESPONSIVENESS & MEDIA QUERIES
 * ========================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .app-dashboard-wrapper {
    margin: 0 auto;
    max-width: 100%;
  }

  .catalog-grid, .exploration-grid, .features-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-auth {
    display: none;
  }
  
  .navbar-container {
    padding: 12px 20px;
  }
  
  .total-asset-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .dual-price-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .app-dashboard-wrapper {
    padding: 16px;
  }
  
  .price-main {
    font-size: 1.2rem;
  }
}
