@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Barlow:wght@400;500;600&display=swap');

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

:root {
  --bg:       #0c0a14;
  --surface:  #131020;
  --surface2: #16122a;
  --border:   #2a2040;
  --gold:     #c9a84c;
  --text:     #ede0c4;
  --muted:    #7a7090;
  --nav-h:    64px;
}

body {
  background: radial-gradient(ellipse 120% 120% at 50% 30%, #0f0c1c 0%, #0c0a1a 25%, #09103a 60%, #060c48 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(6,14,80,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(6,14,80,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 0%, rgba(6,14,80,0.3) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 100% 0%, rgba(6,14,80,0.3) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(12,10,20,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  gap: 12px;
}

.nav-tabs { display: flex; gap: 2px; }

.nav-tabs a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-tabs a:hover { color: var(--text); background: rgba(237,224,196,0.05); }
.nav-tabs a.active { color: var(--gold); background: rgba(201,168,76,0.08); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(180deg, #e0e0e8 0%, #c8c8d4 30%, #a0a0b0 70%, #787888 100%);
  color: #0c0a14;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid #e8e8f0;
  border-bottom-color: #404050;
  border-right-color: #404050;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: opacity 0.15s, transform 0.1s;
}

.btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* STORE BADGES */
.store-badge { display: block; height: 44px; width: auto; transition: opacity 0.15s, transform 0.1s; }
.store-badge:hover { opacity: 0.82; transform: translateY(-1px); }

/* SHARED SECTION ELEMENTS */
.divider { position: relative; z-index: 1; border: none; border-top: 1px solid var(--border); margin: 0 32px; }

.section { position: relative; z-index: 1; padding: 72px 32px; max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 14px;
}

.section-sub { font-size: 15px; color: var(--muted); max-width: 480px; line-height: 1.7; margin-bottom: 48px; }

/* PAGE HEADER (privacy, support) */
.page-header {
  position: relative;
  z-index: 1;
  padding: 64px 32px 40px;
  max-width: 760px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.page-header h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
}

/* FOOTER */
.footer-wrap { position: relative; z-index: 1; border-top: 1px solid var(--border); }

footer {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

footer p { font-size: 12px; color: var(--muted); }

.footer-nav { display: flex; gap: 4px; }

.footer-nav a { font-size: 12px; color: var(--muted); text-decoration: none; padding: 4px 10px; border-radius: 6px; transition: color 0.15s; }
.footer-nav a:hover { color: var(--text); }
