
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-black: #000000;
  --bg-surface: #0E0E10;
  --bg-card: #121214;
  --bg-card-hover: #18181C;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(230, 175, 46, 0.35);
  --border-gold-bright: rgba(255, 215, 0, 0.6);
  
  --gold-gradient: linear-gradient(135deg, #FFE895 0%, #E6AF2E 50%, #BD8313 100%);
  --gold-glow: 0 0 35px rgba(230, 175, 46, 0.25);
  --gold-text: #FDE047;
  
  --emerald-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --emerald-glow: 0 0 25px rgba(37, 211, 102, 0.35);
  
  --text-white: #FFFFFF;
  --text-gray: #A1A1AA;
  --text-muted: #71717A;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  background-image: 
    radial-gradient(circle at 50% 0%, #1A1404 0%, transparent 45%),
    radial-gradient(circle at 100% 30%, #0A0A0E 0%, transparent 35%),
    radial-gradient(circle at 0% 70%, #0D0902 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* HARMONI TOP BAR */
.vip-topbar {
  background: linear-gradient(90deg, #000000 0%, #1C1300 50%, #000000 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}
.vip-topbar-badge {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 900;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

header { background: rgba(14, 14, 16, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-gold); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-heading); font-size: 24px; font-weight: 900; color: #fff; letter-spacing: 1px; }
.logo span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

nav { display: flex; gap: 24px; }
nav a { font-size: 14px; font-weight: 600; color: var(--text-gray); transition: color 0.2s; }
nav a:hover { color: var(--gold-text); }

/* HERO HARMONI STYLE */
.hero { padding: 56px 0 36px; text-align: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(230, 175, 46, 0.12); color: var(--gold-text); border: 1px solid var(--border-gold); font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 20px; }
.hero h1 { font-family: var(--font-heading); font-size: 42px; font-weight: 900; line-height: 1.2; margin-bottom: 16px; background: linear-gradient(180deg, #FFFFFF 0%, #D4D4D8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-gray); font-size: 17px; max-width: 680px; margin: 0 auto; }

.section-title { font-family: var(--font-heading); font-size: 26px; font-weight: 800; margin: 40px 0 24px; display: flex; align-items: center; gap: 12px; color: var(--gold-text); }
.section-title::before { content: ''; width: 4px; height: 28px; background: var(--gold-gradient); border-radius: 2px; }

/* HARMONI PROFILE GRID */
.profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-bottom: 48px; }
.profile-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; position: relative; }
.profile-card:hover { transform: translateY(-6px); border-color: var(--border-gold-bright); box-shadow: var(--gold-glow); background: var(--bg-card-hover); }

.profile-img-wrap { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: #000; }
.profile-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.profile-card:hover .profile-img-wrap img { transform: scale(1.06); }

.badge-vitrin { position: absolute; top: 12px; left: 12px; background: var(--gold-gradient); color: #000; font-size: 10px; font-weight: 900; padding: 4px 10px; border-radius: var(--radius-full); letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.profile-age { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.85); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(8px); }

.profile-info { padding: 18px; display: flex; flex-direction: column; flex-grow: 1; }
.profile-name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.profile-location { font-size: 13px; color: var(--gold-text); font-weight: 600; margin-bottom: 12px; }

.profile-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.profile-tags span { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-subtle); color: var(--text-gray); font-size: 11px; padding: 3px 8px; border-radius: var(--radius-sm); }

.profile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.btn-wa { background: var(--emerald-gradient); color: #fff; font-size: 12px; font-weight: 800; padding: 10px 0; border-radius: var(--radius-sm); text-align: center; box-shadow: var(--emerald-glow); transition: all 0.25s; }
.btn-wa:hover { filter: brightness(1.15); transform: translateY(-1px); }
.btn-profile { background: rgba(255, 255, 255, 0.05); color: var(--text-white); border: 1px solid var(--border-gold); font-size: 12px; font-weight: 700; padding: 10px 0; border-radius: var(--radius-sm); text-align: center; transition: all 0.25s; }
.btn-profile:hover { background: var(--gold-gradient); color: #000; }

.articles-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; margin-bottom: 48px; }
.article-wrap { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 36px; margin: 32px 0; }
.article-meta { display: flex; gap: 12px; margin-bottom: 16px; font-size: 13px; color: var(--text-muted); }
.tag { background: rgba(230, 175, 46, 0.15); color: var(--gold-text); padding: 3px 10px; border-radius: var(--radius-full); font-weight: 700; border: 1px solid var(--border-gold); }

.article-wrap h1 { font-family: var(--font-heading); font-size: 32px; font-weight: 800; margin-bottom: 18px; line-height: 1.3; }
.article-wrap h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin: 28px 0 14px; color: var(--gold-text); }
.article-wrap p { margin-bottom: 18px; color: var(--text-gray); font-size: 16px; }

.sidebar .widget { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; box-shadow: var(--gold-glow); }
.sidebar h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--gold-text); }
.sidebar p { font-size: 14px; color: var(--text-gray); margin-bottom: 16px; }
.cta-btn { display: block; background: var(--gold-gradient); color: #000; text-align: center; padding: 12px; border-radius: var(--radius-sm); font-weight: 900; letter-spacing: 0.5px; transition: all 0.25s; }
.cta-btn:hover { filter: brightness(1.15); }

.city-list { list-style: none; }
.city-list li { border-bottom: 1px solid var(--border-subtle); }
.city-list a { display: block; padding: 10px 0; color: var(--text-gray); font-size: 14px; transition: color 0.2s; }
.city-list a:hover { color: var(--gold-text); }

footer { background: #000000; border-top: 1px solid var(--border-gold); padding: 40px 0; margin-top: 80px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; }
.footer-links a { color: var(--text-gray); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-text); }
.copyright { color: var(--text-muted); font-size: 13px; }

@media (max-width: 768px) {
  .articles-layout { grid-template-columns: 1fr; }
  .profile-actions { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero h1 { font-size: 28px; }
}
