/* Social Spins Master — subpages (sunburn_orange + ai_future_ui) */

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

:root {
  --bg: #2a0e05;
  --surface: #3a1408;
  --text: #fff7ed;
  --muted: #fdba74;
  --primary: #f97316;
  --secondary: #fb7185;
  --accent: #facc15;
  --border: rgba(255, 247, 237, 0.14);
  --glow-primary: rgba(249, 115, 22, 0.45);
  --font-display: 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', sans-serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Tahoma, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  background:
    radial-gradient(ellipse 70% 40% at 20% 0%, rgba(249, 115, 22, 0.18), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

ul,
ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

ul {
  list-style: disc;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.warning-banner {
  background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
  color: #2a0e05;
  padding: 0.75rem 1.25rem;
  font-size: clamp(0.8125rem, 2.4vw, 0.9375rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
  text-wrap: balance;
}

.subpage-header {
  border-bottom: 1px solid var(--border);
  background: rgba(58, 20, 8, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.subpage-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.subpage-header img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.back-home {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.back-home:hover {
  color: var(--primary);
}

.legal-page {
  padding: 3rem 0 4rem;
  max-width: 800px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--accent);
}

.legal-page p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.legal-page li {
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: #2a0e05;
  box-shadow: 0 0 24px var(--glow-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(26, 8, 4, 0.9);
  padding: 3rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.footer__brandtext {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 360px;
}

.footer__links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
  margin: 0;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer__badges img {
  height: 52px;
  width: auto;
}

.footer__disclaimer {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 247, 237, 0.06);
}

.footer__contact {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__copy {
  color: rgba(253, 186, 116, 0.7);
  font-size: 0.8rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(20, 6, 2, 0.88);
  backdrop-filter: blur(10px);
}

.age-gate.active {
  display: flex;
}

.age-gate__box {
  width: min(420px, 100%);
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 50px rgba(249, 115, 22, 0.35);
  text-align: center;
}

.age-gate__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: #2a0e05;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.age-gate__box h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
}

.age-gate__box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.age-gate__note {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  font-size: 0.8rem !important;
}

.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 950;
  display: none;
  max-width: 640px;
  margin: 0 auto;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 800px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
