:root {
  --bg: #050505;
  --card-bg: #111111;
  --gold: #d4af37;
  --gold-dark: #aa8c2c;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e29c 100%);
  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
}

body { background-color: var(--bg); color: var(--text-main); font-family: 'Poppins', sans-serif; }

.text-gold { color: var(--gold); }
.bg-gold { background: var(--gold-gradient); }

/* Glassmorphism */
.glass-effect {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Navbar */
.dm-navbar { background: rgba(0,0,0,0.9); padding: 15px 0; border-bottom: 1px solid rgba(212, 175, 55, 0.15); }
.nav-logo { width: 80px; height: auto; }

/* Hero */
.hero-section { padding: 160px 0 80px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 800; }
.badge-gold { border: 1px solid var(--gold); color: var(--gold); padding: 6px 18px; border-radius: 50px; font-size: 0.8rem; letter-spacing: 1px; }

/* Stats */
.stat-card { background: var(--card-bg); padding: 30px; border-radius: 20px; border: 1px solid #222; text-align: center; transition: 0.4s; }
.stat-card:hover { border-color: var(--gold); transform: translateY(-8px); }
.counter { font-weight: 800; font-size: 2.2rem; margin: 10px 0; color: var(--gold); }

/* Metrics Section */
.metric-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.metric-item .label { color: var(--text-muted); font-weight: 500; }
.metric-item .value { color: #fff; font-weight: 700; font-size: 1.1rem; }

/* Instagram Showcase */
.insta-post-card { background: #0e0e0e; padding: 15px; border-radius: 18px; transition: 0.3s; }
.insta-post-card:hover { background: #151515; }
.post-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.post-header .views { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.post-footer { padding-top: 15px; color: var(--text-muted); line-height: 1.4; }

/* Buttons & Links */
.btn-accent { background: var(--gold-gradient); color: #000 !important; font-weight: 700; border-radius: 10px; border: none; }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); font-weight: 700; border-radius: 10px; }
.email-link { font-size: clamp(1.2rem, 4vw, 2.5rem); color: var(--gold); text-decoration: none; font-weight: 800; transition: 0.3s; }
.email-link:hover { color: #fff; text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }

.border-gold { border: 1px solid var(--gold) !important; }