/* Shared styles for standard pages (About, Privacy, Terms, Contact, How It Works) */
:root {
  --bg:      #07050d;
  --surface: #12101e;
  --gold:    #c9a84c;
  --gold-bright: #f0c040;
  --jade:    #29b865;
  --red:     #c1121f;
  --text:    #e8dcc8;
  --text-dim:#8a7a68;
  --serif:   'Noto Serif SC', Georgia, serif;
  --display: 'Cinzel', Georgia, serif;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100dvh;
  background: #07050d;
  color: var(--text);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(41,184,101,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(140,20,20,0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Nav */
.page-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  background: rgba(7,5,13,0.9);
  backdrop-filter: blur(10px);
  gap: 20px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(201,168,76,0.3);
  text-decoration: none;
  outline: none;
}
.nav-logo:hover, .nav-logo:focus { text-decoration: none; }
.nav-back {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(232,220,200,0.78);
  transition: color 0.2s;
  margin-left: auto;
}
.nav-back:hover { color: var(--gold); text-decoration: none; }

/* Page wrapper */
.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Headings */
.page-title {
  font-family: var(--display);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.page-subtitle {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  font-style: italic;
}

/* Decorative divider */
.page-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
  color: rgba(201,168,76,0.3);
  font-size: 12px;
}
.page-divider::before,
.page-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.15);
}

/* Section */
.page-section { margin-bottom: 36px; }
.page-section h2 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.page-section p {
  font-size: 14px;
  color: rgba(232,220,200,0.75);
  margin-bottom: 12px;
  line-height: 1.9;
}
.page-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.page-section li {
  font-size: 14px;
  color: rgba(232,220,200,0.75);
  margin-bottom: 6px;
  line-height: 1.8;
}

/* Info card */
.info-card {
  background: rgba(18,16,30,0.8);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.info-card h3 {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-card p {
  font-size: 14px;
  color: rgba(232,220,200,0.7);
  line-height: 1.8;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.form-input,
.form-textarea {
  background: rgba(18,16,30,0.8);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(232,220,200,0.25); font-style: italic; }
.form-btn {
  align-self: flex-start;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(201,168,76,0.9) 0%, rgba(180,140,50,0.9) 100%);
  border: none;
  border-radius: 4px;
  color: #0a0608;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.form-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* Footer */
.page-footer {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.page-footer a {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(232,220,200,0.82);
  transition: color 0.2s;
}
.page-footer a:hover { color: var(--gold); text-decoration: none; }
.page-footer .sep { color: rgba(201,168,76,0.4); font-size: 10px; }

@media (max-width: 480px) {
  .page-wrap { padding: 32px 16px 60px; }
}
