/* Social free-play landing — sg- prefix */
:root {
  --sg-bg: #0f111a;
  --sg-surface: #171a26;
  --sg-elevated: #1e2233;
  --sg-text: #e8ecf8;
  --sg-muted: #9aa3b8;
  --sg-accent: #2dd4bf;
  --sg-accent-dim: rgba(45, 212, 191, 0.15);
  --sg-coral: #f9736b;
  --sg-coral-dim: rgba(249, 115, 107, 0.12);
  --sg-line: rgba(255, 255, 255, 0.08);
  --sg-warn-bg: #fff7ed;
  --sg-warn-text: #7c2d12;
  --sg-warn-border: #fdba74;
  --sg-radius: 14px;
  --sg-radius-sm: 10px;
  --sg-font: "Outfit", system-ui, sans-serif;
  --sg-max: 1120px;
  --sg-space: clamp(1rem, 4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

html.sg-modal-open {
  overflow: hidden;
}

html:not(.sg-age-ok) {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--sg-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sg-text);
  background: var(--sg-bg);
  min-height: 100vh;
}

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

a {
  color: var(--sg-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #5eead4;
}

.sg-topbar {
  background: linear-gradient(90deg, #1a1f35, #12162a);
  border-bottom: 1px solid var(--sg-line);
  font-size: 0.8125rem;
  color: var(--sg-muted);
  text-align: center;
  padding: 0.45rem var(--sg-space);
}

.sg-topbar p {
  margin: 0;
  max-width: 56rem;
  margin-inline: auto;
}

.sg-strip {
  background: linear-gradient(90deg, var(--sg-coral-dim), var(--sg-accent-dim));
  border-bottom: 2px solid var(--sg-accent);
}

.sg-strip-inner {
  max-width: var(--sg-max);
  margin: 0 auto;
  padding: 0.75rem var(--sg-space);
}

.sg-strip-flag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(0.92rem, 2.8vw, 1.125rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--sg-text);
  text-align: center;
}

.sg-strip-flag svg {
  flex-shrink: 0;
}

.sg-banner-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.2);
  color: var(--sg-accent);
  font-size: 0.72em;
}

.sg-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(15, 17, 26, 0.88);
  border-bottom: 1px solid var(--sg-line);
  overflow: visible;
}

.sg-site-header-inner {
  max-width: var(--sg-max);
  margin: 0 auto;
  padding: 0.75rem var(--sg-space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 861px) {
  .sg-site-header-inner {
    flex-wrap: nowrap;
  }
}

.sg-logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sg-logo-mark img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--sg-line);
  padding: 4px;
  background: var(--sg-surface);
}

/* Ember-style burger: framed icon, simple bars (no fullscreen overlay) */
.sg-nav-toggle {
  display: none;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: transparent;
  border: 1px solid rgba(45, 212, 191, 0.38);
  border-radius: 4px;
  cursor: pointer;
  color: inherit;
}

.sg-nav-toggle-line {
  display: block;
  width: 16px;
  height: 2px;
  background: #fbbf24;
  border-radius: 2px;
}

.sg-nav-panel {
  display: flex;
}

.sg-nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  align-items: center;
}

.sg-nav-panel a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  color: var(--sg-muted);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.sg-nav-panel a:hover {
  color: var(--sg-text);
  background: rgba(255, 255, 255, 0.05);
}

.sg-nav-panel a.is-active {
  color: var(--sg-bg);
  background: var(--sg-accent);
}

@media (max-width: 860px) {
  .sg-nav-toggle {
    display: flex;
  }

  .sg-nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 14px clamp(18px, 4vw, 40px);
    gap: 0;
    margin: 0;
    border-bottom: 1px solid var(--sg-line);
    background: rgba(15, 17, 26, 0.97);
    backdrop-filter: blur(14px);
    z-index: 90;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }

  .sg-nav-panel.is-open {
    display: flex;
  }

  .sg-nav-panel ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .sg-nav-panel li {
    width: 100%;
  }

  .sg-nav-panel a {
    border-radius: 0;
    text-align: left;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(45, 212, 191, 0.12);
    font-weight: 500;
  }

  .sg-nav-panel li:last-child a {
    border-bottom: 0;
  }

  .sg-nav-panel a.is-active {
    color: var(--sg-accent);
    background: transparent;
    border-bottom-color: rgba(45, 212, 191, 0.12);
  }
}

main {
  display: block;
}

.sg-section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.sg-shell {
  width: min(100%, var(--sg-max));
  margin-inline: auto;
  padding-inline: var(--sg-space);
}

.sg-hero {
  position: relative;
  overflow: hidden;
  background: #14182a;
}

.sg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-art.jpg") center / cover no-repeat;

  pointer-events: none;
}

.sg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 40%,
      rgba(45, 212, 191, 0.1) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(249, 115, 107, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse 80% 60% at 50% -20%,
      rgba(99, 102, 241, 0.35),
      transparent
    ),
    linear-gradient(180deg, rgba(20, 24, 42, 0.88), rgba(10, 12, 20, 0.94));
  pointer-events: none;
}

.sg-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .sg-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.sg-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sg-hero-lead {
  margin: 0 0 1.5rem;
  color: var(--sg-muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.sg-hero-warn {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--sg-radius);
  background: var(--sg-warn-bg);
  color: var(--sg-warn-text);
  border: 2px solid var(--sg-warn-border);
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.sg-hero-warn strong {
  display: block;
  font-size: 1.05em;
  margin-bottom: 0.35rem;
}

.sg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease;
}

.sg-btn:focus-visible {
  outline: 2px solid var(--sg-accent);
  outline-offset: 3px;
}

.sg-btn:active {
  transform: translateY(1px);
}

.sg-btn--primary {
  background: linear-gradient(135deg, var(--sg-accent), #22b8a3);
  color: #04120f;
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.35);
}

.sg-btn--primary:hover {
  box-shadow: 0 8px 28px rgba(45, 212, 191, 0.45);
  color: #020807;
}

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

.sg-btn--ghost:hover {
  border-color: var(--sg-accent);
  color: var(--sg-accent);
}

.sg-card-panel {
  background: linear-gradient(145deg, var(--sg-elevated), var(--sg-surface));
  border-radius: calc(var(--sg-radius) + 6px);
  border: 1px solid var(--sg-line);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.sg-card-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--sg-accent);
}

.sg-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  text-align: center;
}

.sg-stat {
  padding: 0.65rem;
  border-radius: var(--sg-radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.sg-stat b {
  display: block;
  font-size: 1.25rem;
  color: var(--sg-text);
}

.sg-stat span {
  font-size: 0.75rem;
  color: var(--sg-muted);
}

.sg-muted-block {
  color: var(--sg-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.sg-sep-motif {
  height: 42px;
  background: url("../images/separator-burst.png") center / auto 100% repeat-x;
  opacity: 0.9;
  pointer-events: none;
}

.sg-features {
  position: relative;
  background: var(--sg-surface);
  border-block: 1px solid var(--sg-line);
}

.sg-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/features-pattern.jpg") repeat;
  background-size: 420px auto;
  opacity: 0.2;
  pointer-events: none;
}

.sg-features > .sg-shell {
  position: relative;
  z-index: 1;
}

.sg-title {
  font-size: clamp(1.6rem, 3.8vw, 2.35rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sg-subtitle {
  margin: 0 0 2rem;
  color: var(--sg-muted);
  max-width: 46rem;
}

.sg-feature-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .sg-feature-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sg-fcard {
  background: var(--sg-elevated);
  padding: 1.5rem;
  border-radius: var(--sg-radius);
  border: 1px solid var(--sg-line);
  transition:
    border-color 0.15s ease,
    transform 0.15s ease;
}

.sg-fcard:hover {
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-2px);
}

.sg-fcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: var(--sg-accent-dim);
  color: var(--sg-accent);
}

.sg-fcard h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.sg-fcard p {
  margin: 0;
  color: var(--sg-muted);
  font-size: 0.9375rem;
}

.sg-games {
  background: var(--sg-bg);
}

.sg-games-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .sg-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .sg-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sg-gcard {
  background: var(--sg-surface);
  border-radius: var(--sg-radius);
  border: 1px solid var(--sg-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sg-gcard-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0c12;
  cursor: pointer;
}

.sg-gcard-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sg-gcard-cover:hover img {
  transform: scale(1.04);
}

.sg-gcard-body {
  padding: 1rem 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sg-gcard h3 {
  margin: 0;
  font-size: 1.05rem;
}

.sg-gcard-actions {
  margin-top: auto;
}

.sg-btn--block {
  width: 100%;
}

.sg-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(6px);
}

.sg-modal.is-hidden {
  display: none !important;
}

.sg-modal-inner {
  position: relative;
  width: min(980px, 100%);
  height: min(640px, 88vh);
  background: var(--sg-surface);
  border-radius: var(--sg-radius);
  border: 1px solid var(--sg-line);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
}

.sg-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.sg-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--sg-line);
  background: var(--sg-elevated);
  color: var(--sg-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.sg-banner {
  background: linear-gradient(120deg, #fef3f2 0%, #ecfeff 100%);
}

.sg-banner-shell {
  color: #1f2937;
}

.sg-banner-shell .sg-title,
.sg-banner-shell .sg-subtitle {
  color: inherit;
}

.sg-banner-shell .sg-subtitle {
  opacity: 0.82;
}

.sg-banner-shell .sg-btn--primary {
  margin-top: 0.5rem;
}

.sg-banner-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .sg-banner-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.sg-banner-art {
  border-radius: var(--sg-radius);
  min-height: 220px;
  background-image:
    linear-gradient(135deg, rgba(45, 212, 191, 0.2), rgba(99, 102, 241, 0.15)),
    url("../images/banner-relax.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.sg-board {
  background: linear-gradient(180deg, #1c2135, var(--sg-bg));
  border-top: 1px solid var(--sg-line);
}

.sg-board-shell {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .sg-board-shell {
    grid-template-columns: minmax(0, 420px) 1fr;
    align-items: center;
  }
}

.sg-scoreboard {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--sg-radius);
  border: 1px solid var(--sg-line);
  padding: 1.35rem;
}

.sg-score-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--sg-line);
}

.sg-score-row:last-child {
  border-bottom: 0;
}

.sg-rank {
  font-weight: 800;
  color: var(--sg-accent);
  width: 1.75rem;
}

.sg-avatar-dot {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: center / cover no-repeat;
  border: 1px solid var(--sg-line);
}

.sg-avatar-dot--moss {
  background-image: url("../images/avatar-moss.jpg");
}

.sg-avatar-dot--velvet {
  background-image: url("../images/avatar-velvet.jpg");
}

.sg-avatar-dot--ridge {
  background-image: url("../images/avatar-ridge.jpg");
}

.sg-score-meta {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem;
}

.sg-score-name {
  font-weight: 600;
}

.sg-score-val {
  color: var(--sg-muted);
  font-variant-numeric: tabular-nums;
}

.sg-board-visual {
  min-height: 260px;
  border-radius: var(--sg-radius);
  border: 1px solid var(--sg-line);
  background-image:
    linear-gradient(165deg, rgba(28, 33, 53, 0.5), rgba(10, 12, 22, 0.82)),
    url("../images/community-panel.jpg");
  background-size: cover;
  background-position: center;
}

.sg-quotes {
  background: #f8fafc;
  color: #1f2937;
}

.sg-quotes .sg-subtitle {
  color: #475569;
}

.sg-quote-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .sg-quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .sg-quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sg-quote {
  background: #fff;
  border-radius: var(--sg-radius);
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.sg-quote-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.sg-quote-head h3 {
  margin: 0;
  font-size: 0.9375rem;
}

.sg-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.sg-quote p {
  margin: 0 0 1rem;
  font-size: 0.9125rem;
  color: #475569;
}

.sg-quote-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: #64748b;
}

.sg-site-footer {
  background: var(--sg-surface);
  border-top: 1px solid var(--sg-line);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.sg-footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.sg-footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--sg-line);
  padding: 4px;
  background: var(--sg-elevated);
}

.sg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  max-width: 900px;
}

.sg-footer-links a {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--sg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.sg-footer-links a:hover {
  color: var(--sg-accent);
}

.sg-footer-notes {
  margin: 0 auto 1.75rem;
  max-width: 44rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--sg-muted);
}

.sg-wellbeing-heading {
  text-align: center;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sg-muted);
  margin-bottom: 0.75rem;
}

.sg-wellbeing-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4vw, 2rem);
  margin-bottom: 1.5rem;
}

.sg-wellbeing-links a {
  display: block;
  opacity: 0.88;
  transition: opacity 0.15s ease;
}

.sg-wellbeing-links a:hover {
  opacity: 1;
}

.sg-wellbeing-links img {
  height: 40px;
  width: auto;
  max-width: min(140px, 38vw);
  object-fit: contain;
}

.sg-age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.75rem;
  background: var(--sg-coral-dim);
  color: var(--sg-coral);
  border: 1px solid rgba(249, 115, 107, 0.35);
}

.sg-footer-meta {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--sg-muted);
}

.sg-footer-meta p {
  margin: 0.35rem 0;
}

/* Age gate — full-screen, above cookie bar */
.sg-age-gate {
  position: fixed;
  inset: 0;
  z-index: 650;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sg-space);
  background: rgba(5, 8, 14, 0.94);
  backdrop-filter: blur(10px);
}

html.sg-age-ok .sg-age-gate {
  display: none !important;
}

.sg-age-gate-box {
  width: min(440px, 100%);
  background: linear-gradient(165deg, var(--sg-elevated), var(--sg-surface));
  border: 1px solid var(--sg-line);
  border-radius: var(--sg-radius);
  padding: clamp(1.35rem, 4vw, 1.85rem);
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.sg-age-gate-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  background: var(--sg-coral-dim);
  color: var(--sg-coral);
  border: 1px solid rgba(249, 115, 107, 0.35);
}

.sg-age-gate-title {
  margin: 0 0 0.65rem;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sg-age-gate-text {
  margin: 0 0 1.25rem;
  color: var(--sg-muted);
  font-size: 0.95rem;
}

.sg-age-strong {
  color: var(--sg-text);
}

.sg-age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.sg-age-gate-foot {
  margin: 0;
  font-size: 0.76rem;
  color: var(--sg-muted);
  line-height: 1.45;
}

.sg-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 520;
  padding: var(--sg-space);
  pointer-events: none;
}

.sg-cookie.is-hidden {
  display: none !important;
}

.sg-cookie-box {
  max-width: var(--sg-max);
  margin: 0 auto;
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--sg-radius);
  background: rgba(30, 34, 51, 0.97);
  border: 1px solid var(--sg-line);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.55);
}

.sg-cookie-box p {
  margin: 0;
  flex: 1;
  font-size: 0.8875rem;
  color: var(--sg-muted);
  min-width: min(280px, 100%);
}

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

.sg-inner-page {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.sg-inner-page h1 {
  margin-top: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.sg-inner-page h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.sg-inner-page p,
.sg-inner-page li {
  color: var(--sg-muted);
}

.sg-inner-page ul {
  padding-left: 1.25rem;
}

.sg-inner-page a {
  color: var(--sg-accent);
}
