/* SHATTA FANS — Dark Blue & Gold Theme */
:root {
  --bg: #060B18;
  --bg2: #0D1526;
  --bg3: #131E35;
  --gold: #D4AF37;
  --gold2: #F5D76E;
  --blue: #1A2744;
  --blue2: #1E3A8A;
  --border: #1E2D4A;
  --border2: #2A3F6A;
  --text: #E8EDF5;
  --text2: #8A9BBF;
  --text3: #5A6E8A;
  --success: #22C55E;
  --danger: #EF4444;
  --radius: 8px;
  --radius-lg: 16px;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; }
section[id] { scroll-margin-top: 88px; }
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; }

/* DONATION BANNER */
.donation-top-banner {
  background: linear-gradient(90deg, #0b1222 0%, #14213b 48%, #1f1a0a 100%);
  border-bottom: 1px solid rgba(212,175,55,0.26);
  color: var(--text);
}
.donation-top-inner {
  max-width: 1280px;
  min-height: 42px;
  margin: 0 auto;
  padding: 7px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.donation-top-inner p {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.donation-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 28px;
  padding: 6px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
  color: #0a0800;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 2px 12px rgba(212,175,55,0.32);
}
.donation-top-btn:hover {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #0a0800;
}

/* NAVBAR */
.navbar {
  background: rgba(6,11,24,0.97);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.4);
}
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 28px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 900; font-size: 18px; color: var(--text); }
.brand-sm {
  background: linear-gradient(135deg, #D4AF37, #8B6914);
  color: #0a0800; padding: 4px 10px; border-radius: 8px;
  font-size: 14px; font-weight: 900; letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(212,175,55,0.3);
}
.brand-fans { color: var(--text); letter-spacing: 2px; font-size: 15px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(200,215,240,0.65);
  font-size: 13px; font-weight: 500;
  padding: 7px 13px; border-radius: 8px;
  transition: all 0.18s; white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-link.gold { color: rgba(212,175,55,0.85); }
.nav-link.gold:hover { color: #FFD700; background: rgba(212,175,55,0.1); }
.btn-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%) !important;
  color: #0a0800 !important;
  box-shadow: 0 2px 12px rgba(212,175,55,0.35);
  font-weight: 800; letter-spacing: 0.3px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%) !important;
  box-shadow: 0 4px 20px rgba(212,175,55,0.5);
  transform: translateY(-1px);
  color: #0a0800 !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text2); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius); font-family: var(--font-head); font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold2); color: var(--bg); }
.btn-outline { background: transparent; border: 1px solid var(--border2); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--bg); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* FLASH */
.flash-container { position: fixed; top: 80px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.alert { padding: 12px 20px; border-radius: var(--radius); font-size: 14px; display: flex; align-items: center; gap: 12px; max-width: 380px; }
.alert-success { background: #052e16; border: 1px solid var(--success); color: var(--success); }
.alert-error { background: #2d0a0a; border: 1px solid var(--danger); color: var(--danger); }
.alert-close { background: none; border: none; cursor: pointer; color: inherit; font-size: 18px; margin-left: auto; }

/* HERO */
.hero { min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; background: radial-gradient(ellipse at center top, #1A2744 0%, #060B18 70%); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 2; padding: 40px 20px; }
.hero-donation-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  max-width: min(720px, 100%);
  margin: -12px auto 28px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 999px;
  background: rgba(8,15,29,0.86);
  box-shadow: 0 12px 36px rgba(0,0,0,0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero-donation-copy {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.hero-donation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 32px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8960C 100%);
  color: #0a0800;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(212,175,55,0.34);
}
.hero-donation-btn:hover {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
  color: #0a0800;
}
.hero-badge { display: inline-block; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.hero-title { font-family: var(--font-head); font-size: clamp(56px, 10vw, 100px); font-weight: 900; line-height: 0.9; color: var(--text); margin-bottom: 24px; letter-spacing: -2px; }
.gold { color: var(--gold); }
.hero-slogan { font-size: clamp(16px, 2.5vw, 22px); font-weight: 600; color: var(--text2); margin-bottom: 16px; }
.hero-sub { font-size: 15px; color: var(--text3); max-width: 500px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* STATS BAR */
.stats-bar { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-container { max-width: 1200px; margin: 0 auto; padding: 24px 20px; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 120px; text-align: center; padding: 16px; }
.stat-number { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--gold); }
.stat-label { display: block; font-size: 12px; color: var(--text2); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* SECTIONS */
.section { padding: 80px 0; }
.section-dark { background: var(--bg2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 12px; }
.section-sub { color: var(--text2); font-size: 16px; }

/* ANNOUNCEMENTS */
.announcements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.ann-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: relative; overflow: hidden; }
.ann-pinned { border-color: var(--gold); }
.ann-pin-badge { font-size: 12px; color: var(--gold); margin-bottom: 8px; }
.ann-card-image { display: block; width: calc(100% + 48px); aspect-ratio: 4 / 3; object-fit: cover; margin: -24px -24px 18px; border-bottom: 1px solid var(--border); }
.ann-category { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 8px; }
.ann-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.ann-body { color: var(--text2); font-size: 14px; margin-bottom: 16px; }
.ann-date { font-size: 12px; color: var(--text3); margin-top: 12px; }

/* COUNTRIES GRID */
.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.country-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.country-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.country-name { font-weight: 600; font-size: 14px; color: var(--text); }
.country-count { font-size: 12px; color: var(--gold); margin-top: 4px; }

/* FANBASES */
.continent-block { margin-bottom: 40px; }
.continent-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.fanbases-row { display: flex; flex-wrap: wrap; gap: 8px; }
.fanbase-chip { background: var(--bg3); border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; display: flex; flex-direction: column; }
.fb-name { font-weight: 600; font-size: 13px; }
.fb-country { font-size: 11px; color: var(--text2); }

/* RECENT FANS */
.recent-fans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.recent-fan-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; display: flex; align-items: center; gap: 12px; }
.rfc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--bg); font-family: var(--font-head); font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rfc-name { font-weight: 600; font-size: 14px; }
.rfc-location { font-size: 12px; color: var(--text2); }

/* CTA */
.cta-section { background: linear-gradient(135deg, #0D1526 0%, #1A2744 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; text-align: center; }
.cta-container { }
.cta-section h2 { font-family: var(--font-head); font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.cta-section p { color: var(--text2); margin-bottom: 28px; font-size: 16px; }

/* REGISTRATION FORM */
.form-section { padding: 60px 0; }
.form-header { text-align: center; margin-bottom: 40px; }
.form-badge { display: inline-block; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); padding: 6px 16px; border-radius: 100px; font-size: 13px; margin-bottom: 16px; }
.form-header h1 { font-family: var(--font-head); font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.form-header p { color: var(--text2); }
.reg-form { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.form-block { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.form-block-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--gold); margin-bottom: 20px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text2); }
.form-control { background: var(--bg); border: 1px solid var(--border); color: var(--text); border-radius: var(--radius); padding: 10px 14px; font-size: 14px; font-family: var(--font-body); width: 100%; transition: border-color 0.2s; }
.form-control:focus { outline: none; border-color: var(--gold); }
textarea.form-control { resize: vertical; }
.optional { color: var(--text3); font-size: 12px; font-weight: 400; }
.form-submit { text-align: center; }
.form-note { font-size: 12px; color: var(--text3); margin-top: 12px; }
.mb-2 { margin-bottom: 16px; }

/* FAN CARD */
.card-section { padding: 60px 0; }
.success-banner { text-align: center; margin-bottom: 40px; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.success-banner h2 { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.fan-card { max-width: 420px; margin: 0 auto; background: linear-gradient(135deg, #0D1526 0%, #1A2744 100%); border: 2px solid var(--gold); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(212,175,55,0.2); }
.fc-header { background: var(--gold); padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.fc-brand { font-family: var(--font-head); font-weight: 900; font-size: 16px; color: var(--bg); }
.fc-sub { font-size: 11px; color: var(--bg); font-weight: 600; }
.fc-body { padding: 28px 24px; display: flex; align-items: center; gap: 20px; }
.fc-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); color: var(--bg); font-family: var(--font-head); font-weight: 900; font-size: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 3px solid rgba(212,175,55,0.3); }
.fc-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.fc-location { font-size: 13px; color: var(--text2); margin-bottom: 4px; }
.fc-chapter { font-size: 12px; color: var(--gold); margin-bottom: 8px; }
.fc-number { font-size: 14px; color: var(--text2); }
.fc-number strong { color: var(--gold); font-family: var(--font-head); }
.fc-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.fc-joined { font-size: 12px; color: var(--text3); }
.fc-seal { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--bg); font-family: var(--font-head); font-weight: 900; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.card-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.fan-details-box { max-width: 420px; margin: 20px auto 0; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.fan-details-box h4 { color: var(--gold); margin-bottom: 8px; font-size: 13px; }

/* DIRECTORY */
.dir-filters { margin-bottom: 32px; }
.filter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.filter-form .form-control { flex: 1; min-width: 160px; }
.dir-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.dir-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: flex; align-items: center; gap: 12px; }
.dir-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue2), var(--gold)); color: var(--text); font-family: var(--font-head); font-weight: 900; font-size: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dir-name { font-weight: 600; font-size: 14px; }
.dir-location { font-size: 12px; color: var(--text2); }
.dir-number { font-size: 11px; color: var(--gold); margin-top: 2px; }
.dir-socials { margin-left: auto; display: flex; flex-direction: column; gap: 4px; }
.social-tag { background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; font-size: 10px; font-weight: 700; color: var(--text2); }

/* FANBASES PAGE */
.continent-section { margin-bottom: 48px; }
.continent-heading { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--gold); margin-bottom: 20px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.fanbases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.fb-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.fb-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.fb-card-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.fb-listed-badge { font-size: 11px; color: var(--success); }
.fb-card-location { font-size: 13px; color: var(--text2); margin-bottom: 8px; }
.fb-leader { font-size: 12px; color: var(--text3); }
.mt-1 { margin-top: 8px; }
.add-fanbase-cta { text-align: center; padding: 48px; background: var(--bg2); border-radius: var(--radius-lg); border: 1px solid var(--border); margin-top: 48px; }
.add-fanbase-cta h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 12px; }
.add-fanbase-cta p { color: var(--text2); margin-bottom: 20px; }

/* ANNOUNCEMENTS PAGE */
.ann-list { display: flex; flex-direction: column; gap: 20px; }
.ann-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.ann-item-pinned { border-color: var(--gold); }
.ann-pin { font-size: 13px; color: var(--gold); margin-bottom: 8px; }
.ann-item-image { display: block; width: 100%; max-height: 720px; object-fit: contain; background: #050915; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 18px; }
.ann-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.ann-cat { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); color: var(--gold); padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.ann-date-text { font-size: 12px; color: var(--text3); }
.ann-item-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.ann-item-body { color: var(--text2); line-height: 1.7; white-space: pre-line; }

/* 1GH PROJECT */
.onegh-hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(212,175,55,0.2), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(34,197,94,0.14), transparent 26%),
    linear-gradient(135deg, #060B18 0%, #101a2d 58%, #0D1526 100%);
  border-bottom: 1px solid var(--border);
}
.onegh-hero-inner { max-width: 860px; text-align: center; padding: 88px 20px; }
.onegh-badge { display: inline-block; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.3); color: var(--gold); padding: 7px 16px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.onegh-hero h1 { font-family: var(--font-head); font-size: clamp(42px, 7vw, 78px); font-weight: 900; line-height: 0.96; margin-bottom: 22px; }
.onegh-lead { color: var(--text); font-size: clamp(18px, 2.4vw, 24px); font-weight: 700; max-width: 780px; margin: 0 auto 14px; }
.onegh-copy { color: var(--text2); max-width: 660px; margin: 0 auto 32px; }
.onegh-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.onegh-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.onegh-card, .onegh-step, .onegh-note { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.onegh-card h3, .onegh-step h3, .onegh-note h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 8px; }
.onegh-card p, .onegh-step p, .onegh-trust p { color: var(--text2); }
.onegh-icon { font-size: 30px; margin-bottom: 12px; }
.onegh-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.onegh-step span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.32); color: var(--gold); font-family: var(--font-head); font-weight: 900; margin-bottom: 14px; }
.onegh-trust { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 28px; align-items: center; }
.onegh-note { border-color: rgba(212,175,55,0.35); background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(13,21,38,0.95)); }
.onegh-stats { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)) minmax(220px, 1.3fr); gap: 18px; align-items: stretch; }
.onegh-stat { background: var(--bg2); border: 1px solid rgba(212,175,55,0.28); border-radius: var(--radius-lg); padding: 22px; }
.onegh-stat span { display: block; color: var(--text3); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.onegh-stat strong { color: var(--gold); font-family: var(--font-head); font-size: clamp(26px, 4vw, 40px); }
.onegh-stats p { color: var(--text2); margin: 0; align-self: center; }
.onegh-donation-grid { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: 22px; align-items: start; }
.onegh-payment-card { background: linear-gradient(145deg, rgba(212,175,55,0.18), rgba(13,21,38,0.98) 58%); border: 1px solid rgba(212,175,55,0.42); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 30px); box-shadow: 0 20px 50px rgba(0,0,0,0.24); }
.onegh-payment-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.onegh-payment-head .onegh-badge { margin-bottom: 10px; }
.onegh-payment-head h3 { font-family: var(--font-head); font-size: clamp(22px, 4vw, 30px); line-height: 1.05; margin: 0; }
.onegh-momo-mark { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 16px; background: #f5d400; color: #07111f; font-family: var(--font-head); font-size: 13px; font-weight: 900; box-shadow: 0 12px 28px rgba(245,212,0,0.22); }
.onegh-merchant-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 16px; align-items: center; background: rgba(4,9,20,0.7); border: 1px solid rgba(212,175,55,0.34); border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.onegh-merchant-panel span { color: var(--text3); font-size: 12px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.onegh-merchant-panel strong { color: var(--gold); font-family: var(--font-head); font-size: clamp(44px, 9vw, 68px); line-height: 0.95; letter-spacing: 3px; overflow-wrap: anywhere; }
.onegh-copy-btn { width: max-content; border: 1px solid rgba(212,175,55,0.45); border-radius: 999px; background: rgba(212,175,55,0.12); color: var(--gold); padding: 10px 16px; font-weight: 900; cursor: pointer; }
.onegh-copy-btn:hover { background: rgba(212,175,55,0.2); }
.onegh-payment-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0 0 16px; }
.onegh-payment-facts div { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 13px; }
.onegh-payment-facts dt { color: var(--text3); font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.onegh-payment-facts dd { color: var(--text); font-weight: 800; margin: 0; font-size: 14px; line-height: 1.35; }
.onegh-proof-jump { display: inline-flex; justify-content: center; width: 100%; border: 1px solid rgba(212,175,55,0.4); border-radius: var(--radius); color: var(--gold); padding: 13px 16px; font-weight: 900; text-decoration: none; }
.onegh-proof-jump:hover { background: rgba(212,175,55,0.12); }
.onegh-payment-steps { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
.onegh-proof-wrap { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr); gap: 28px; align-items: start; }
.onegh-proof-form { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: grid; gap: 16px; }
.onegh-proof-form label { color: var(--text); font-weight: 800; display: grid; gap: 8px; }
.onegh-proof-form label span, .onegh-proof-form small { color: var(--text3); font-size: 12px; font-weight: 600; }
.onegh-proof-form input { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); background: #050915; color: var(--text); padding: 13px 14px; font: inherit; }
.onegh-proof-form input:focus { outline: none; border-color: rgba(212,175,55,0.65); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }

/* DASHBOARD */
.dashboard-section { padding: 40px 0; }
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.dash-welcome h1 { font-family: var(--font-head); font-size: 28px; font-weight: 900; }
.dash-welcome p { color: var(--text2); font-size: 14px; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 28px; }
.dash-stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.dsc-icon { font-size: 28px; margin-bottom: 8px; }
.dsc-value { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: var(--gold); }
.dsc-label { font-size: 12px; color: var(--text2); margin-top: 4px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.dash-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.dash-card.full-width { grid-column: 1/-1; }
.card-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.card-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.card-header-row .card-title { margin-bottom: 0; }
.top-list { display: flex; flex-direction: column; gap: 8px; }
.top-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.top-rank { font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--gold); width: 28px; }
.top-name { flex: 1; font-size: 14px; }
.top-count { font-size: 13px; color: var(--gold); font-weight: 600; }
.promos-table { display: flex; flex-direction: column; }
.table-head { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 12px; font-weight: 700; color: var(--text3); text-transform: uppercase; }
.table-head span, .table-row span { flex: 1; min-width: 80px; }
.table-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; align-items: center; }
.table-date { color: var(--text3); font-size: 12px; }
.dash-admin-links { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.ann-admin-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); gap: 12px; }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 56px; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 8px; }
.empty-state p { color: var(--text2); margin-bottom: 20px; }

/* ERROR PAGE */
.error-section { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; text-align: center; }
.error-content { padding: 40px; }
.error-code { font-family: var(--font-head); font-size: 100px; font-weight: 900; line-height: 1; }
.error-content h2 { font-family: var(--font-head); font-size: 28px; margin: 16px 0 8px; }
.error-content p { color: var(--text2); margin-bottom: 24px; }

/* FOOTER */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-logo { font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.footer-slogan { color: var(--text2); font-size: 14px; margin-bottom: 4px; }
.footer-sub { color: var(--text3); font-size: 13px; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-head); font-size: 14px; margin-bottom: 16px; color: var(--text); }
.footer-links a, .footer-contact p { display: block; color: var(--text2); font-size: 14px; margin-bottom: 8px; }
.footer-links a:hover { color: var(--gold); }
.admin-link { font-size: 12px; color: var(--text3); }
.footer-bottom { border-top: 1px solid var(--border); padding: 16px 20px; text-align: center; font-size: 13px; color: var(--text3); }
.footer-bottom a { color: var(--text2); }
.footer-bottom a:hover { color: var(--gold); }

/* LEGAL PAGES */
.legal-page { padding: 72px 0; }
.legal-container { max-width: 920px; }
.legal-header { margin-bottom: 24px; }
.legal-kicker { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.legal-header h1 { font-family: var(--font-head); font-size: clamp(34px, 5vw, 56px); line-height: 1; margin-bottom: 12px; }
.legal-header p { color: var(--text2); }
.legal-note { margin-top: 12px; padding: 12px 14px; border: 1px solid rgba(212,175,55,0.25); border-radius: var(--radius); background: rgba(212,175,55,0.08); color: var(--text) !important; }
.legal-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 40px); }
.legal-card h2 { font-family: var(--font-head); color: var(--gold); font-size: 18px; margin: 30px 0 10px; }
.legal-card h2:first-of-type { margin-top: 22px; }
.legal-card p { color: var(--text2); margin-bottom: 14px; line-height: 1.75; }
.legal-card strong { color: var(--text); }

/* MOBILE */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .dash-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .donation-top-inner { min-height: auto; padding: 10px 18px; flex-direction: column; gap: 8px; }
  .donation-top-inner p { font-size: 12px; }
  .donation-top-btn { width: 100%; max-width: 220px; }
  .hero-donation-cta {
    width: min(100%, 360px);
    flex-direction: column;
    gap: 10px;
    margin: -12px auto 26px;
    padding: 12px;
    border-radius: 16px;
  }
  .hero-donation-copy { font-size: 12px; }
  .hero-donation-btn { width: 100%; max-width: 220px; min-height: 34px; }
  .legal-page { padding: 48px 0; }
  .legal-card { border-radius: var(--radius); }
  .onegh-trust { grid-template-columns: 1fr; }
  .onegh-stats, .onegh-donation-grid, .onegh-payment-steps, .onegh-proof-wrap { grid-template-columns: 1fr; }
  .onegh-payment-head { align-items: center; }
  .stats-container { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .table-head, .table-row { font-size: 12px; }
}

@media (max-width: 520px) {
  .onegh-payment-facts, .onegh-merchant-panel { grid-template-columns: 1fr; }
}

/* GOLD CARD */
.gold-card-preview {
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 60%, #FBF5B7 80%, #AA771C 100%);
  border-radius: 20px; padding: 28px; position: relative; overflow: hidden;
  max-width: 420px; margin: 0 auto 48px; box-shadow: 0 20px 60px rgba(212,175,55,0.4);
  aspect-ratio: 1.586/1;
}
.gcp-shine { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%); border-radius: 20px; }
.gcp-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.gcp-brand { font-family: var(--font-head); font-weight: 900; font-size: 14px; color: #1a1000; letter-spacing: 2px; }
.gcp-logo { width: 40px; height: 40px; background: #1a1000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 900; color: var(--gold); font-size: 14px; }
.gcp-chip { width: 48px; height: 36px; background: linear-gradient(135deg, #d4a017, #f5d76e); border-radius: 6px; margin-bottom: 20px; border: 1px solid rgba(0,0,0,0.2); }
.gcp-number { font-family: 'Courier New', monospace; font-size: 20px; font-weight: 700; color: #1a1000; letter-spacing: 3px; margin-bottom: 20px; }
.gcp-bottom { display: flex; gap: 24px; }
.gcp-label { font-size: 9px; font-weight: 700; color: rgba(0,0,0,0.5); letter-spacing: 1px; margin-bottom: 2px; }
.gcp-value { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: #1a1000; }

/* REAL GOLD CARD */
.gold-card-real {
  background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 30%, #B38728 60%, #FBF5B7 80%, #AA771C 100%);
  border-radius: 20px; padding: 28px; position: relative; overflow: hidden;
  max-width: 420px; margin: 0 auto 24px; box-shadow: 0 20px 60px rgba(212,175,55,0.5);
}
.gcr-shine { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%); }
.gcr-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; position: relative; z-index: 1; }
.gcr-brand { font-family: var(--font-head); font-weight: 900; font-size: 13px; color: #1a1000; letter-spacing: 2px; }
.gcr-logo { width: 36px; height: 36px; background: #1a1000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 900; color: var(--gold); font-size: 13px; }
.gcr-chip { width: 44px; height: 32px; background: linear-gradient(135deg, #d4a017, #f5d76e); border-radius: 5px; margin-bottom: 16px; border: 1px solid rgba(0,0,0,0.2); position: relative; z-index: 1; }
.gcr-number { font-family: 'Courier New', monospace; font-size: 18px; font-weight: 700; color: #1a1000; letter-spacing: 3px; margin-bottom: 16px; position: relative; z-index: 1; }
.gcr-bottom { display: flex; gap: 20px; position: relative; z-index: 1; margin-bottom: 16px; }
.gcr-label { font-size: 9px; font-weight: 700; color: rgba(0,0,0,0.5); letter-spacing: 1px; margin-bottom: 2px; }
.gcr-value { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: #1a1000; }
.gcr-qr { position: absolute; bottom: 20px; right: 20px; z-index: 1; border: 2px solid #1a1000; border-radius: 6px; overflow: hidden; }

/* CARD PERKS */
.card-perks { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.perk-item { display: flex; gap: 16px; align-items: flex-start; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.perk-icon { font-size: 28px; flex-shrink: 0; }
.perk-text { display: flex; flex-direction: column; gap: 4px; }
.perk-text strong { font-weight: 600; }
.perk-text span { color: var(--text2); font-size: 14px; }
.card-cta { text-align: center; padding: 40px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.card-price-display { margin-bottom: 12px; }
.card-currency { font-size: 20px; font-weight: 700; color: var(--gold); vertical-align: top; margin-top: 8px; display: inline-block; }
.card-amount { font-family: var(--font-head); font-size: 60px; font-weight: 900; color: var(--gold); line-height: 1; }
.card-period { font-size: 16px; color: var(--text2); }

/* APPLY STEPS */
.apply-step { display: flex; gap: 20px; margin-bottom: 32px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--bg); font-family: var(--font-head); font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content { flex: 1; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.step-content h3 { font-family: var(--font-head); font-size: 16px; margin-bottom: 8px; }
.step-content p { color: var(--text2); font-size: 14px; margin-bottom: 12px; }
.momo-box { background: var(--bg); border: 2px solid var(--gold); border-radius: var(--radius); padding: 20px; text-align: center; }
.momo-label { font-size: 12px; color: var(--text2); margin-bottom: 8px; }
.momo-number { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--gold); letter-spacing: 2px; margin-bottom: 4px; }
.momo-name { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.momo-note { font-size: 13px; color: var(--text2); }

/* VERIFY */
.verify-valid, .verify-invalid { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.verify-details { margin: 20px 0; }
.verify-name { font-family: var(--font-head); font-size: 22px; font-weight: 700; }
.verify-country, .verify-num, .verify-card, .verify-exp { color: var(--text2); font-size: 14px; margin-top: 4px; }
.verify-badge { display: inline-block; background: rgba(212,175,55,0.1); border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-top: 16px; }

/* STATUS PILL */
.status-pill { padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.mt-1 { margin-top: 8px; }
.alert-pending { background: #1a1a0a; border: 1px solid #eab308; color: #eab308; }
