/* RaffleTracker Legal Pages — Shared Styles */
/* Matches the app's dark theme: #020617 bg, #f97316 accent */

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

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

body {
  background-color: #020617;
  color: #94a3b8;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* Header */
.legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f97316;
}

.legal-header .legal-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.legal-header .legal-logo img {
  height: 68px;
  width: auto;
  display: block;
}

.legal-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: #f9fafb;
  margin-top: 12px;
}

.legal-header .meta {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
  font-weight: 600;
}

/* Callout box */
.callout {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  color: #f97316;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

/* Section headings */
h2 {
  font-size: 18px;
  font-weight: 700;
  color: #f9fafb;
  margin-top: 32px;
  margin-bottom: 10px;
}

h3 {
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  margin-top: 20px;
  margin-bottom: 8px;
}

/* Body text */
p {
  margin-bottom: 12px;
}

/* Lists */
ul, ol {
  margin-bottom: 12px;
  padding-left: 24px;
}

li {
  margin-bottom: 6px;
}

/* Bold emphasis */
strong {
  color: #e2e8f0;
  font-weight: 600;
}

/* Uppercase legal sections */
.uppercase {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Links */
a {
  color: #f97316;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #fb923c;
}

/* Footer */
.legal-footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 13px;
  color: #475569;
}

/* Navigation between legal pages */
.legal-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.legal-nav a {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid #1e293b;
  border-radius: 8px;
  transition: all 0.2s;
}

.legal-nav a:hover,
.legal-nav a.active {
  color: #f97316;
  border-color: #f97316;
  background: rgba(249, 115, 22, 0.08);
}

/* Back to app link */
.back-link {
  display: inline-block;
  margin-top: 24px;
  color: #64748b;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: #f97316;
}

/* Responsive */
@media (max-width: 480px) {
  .container { padding: 24px 16px 60px; }
  .legal-header h1 { font-size: 20px; }
  h2 { font-size: 16px; }
}
