/* =========================================
   MANIS SOCIAL — SOFT & PLAYFUL THEME
   1. Tokens
========================================= */
:root {
  --cream: #fff8f2;
  --surface: #ffffff;
  --surface-soft: #fff2f6;

  --ink: #35284f;
  --ink-soft: #6a6086;
  --muted: #8d86a3;

  --pink: #ff7aa8;
  --pink-deep: #ff5c93;
  --purple: #9b7bff;
  --mint: #4fd3aa;
  --sun: #ffc24b;
  --sky: #6fc6ff;

  --line: rgba(74, 54, 110, 0.1);
  --line-strong: rgba(74, 54, 110, 0.18);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --max-width: 1240px;
  --transition: 0.32s cubic-bezier(0.23, 1, 0.32, 1);

  --shadow-soft: 0 18px 44px rgba(122, 91, 214, 0.13);
  --shadow-card: 0 14px 30px rgba(122, 91, 214, 0.1);
  --shadow-pop: 0 26px 60px rgba(122, 91, 214, 0.22);

  --header-offset: 104px;
  --scroll-offset: 148px;
  --dismissed-notice-offset: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  color: var(--ink);
  background-color: var(--cream);
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -120px;
  z-index: -2;
  pointer-events: none;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(255, 209, 227, 0.85) 0, transparent 42%),
    radial-gradient(circle at 88% 4%, rgba(210, 232, 255, 0.85) 0, transparent 40%),
    radial-gradient(circle at 2% 62%, rgba(206, 246, 233, 0.8) 0, transparent 40%),
    radial-gradient(circle at 96% 58%, rgba(255, 236, 200, 0.9) 0, transparent 38%),
    radial-gradient(circle at 52% 100%, rgba(225, 214, 255, 0.85) 0, transparent 45%);
}

h1,
h2,
h3,
h4 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

/* =========================================
   2. LEGAL NOTICE BANNER
========================================= */
.notice-banner {
  position: relative;
  z-index: 100;
  background: linear-gradient(100deg, #ffe6ef, #eee4ff 55%, #e2f6ff);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 11px 56px 11px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13.5px;
  line-height: 1.5;
  text-align: center;
}

.notice-container {
  max-width: 1080px;
  margin: 0 auto;
}

.notice-dismiss-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(74, 54, 110, 0.08);
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}

.notice-dismiss-btn:hover {
  background: rgba(74, 54, 110, 0.16);
}

/* =========================================
   3. HEADER / NAV
========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 14px 24px;
  transition: padding var(--transition);
}

.nav-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.brand-name {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--pink-deep);
}

.brand-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 9px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--pink-deep);
  background: var(--surface-soft);
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(120deg, var(--pink), var(--purple));
  box-shadow: 0 8px 18px rgba(255, 106, 158, 0.35);
}

.nav-toggle,
.nav-toggle-btn {
  display: none;
}

/* =========================================
   4. HERO
========================================= */
.hero-section {
  padding: 64px 0 var(--dismissed-notice-offset);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 52px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 800;
}

.hero-copy h1 .accent {
  background: linear-gradient(120deg, var(--pink-deep), var(--purple) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0 0 30px;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-disclaimer {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-art img {
  width: min(100%, 400px);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(155, 123, 255, 0.28));
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* =========================================
   5. BUTTONS
========================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 14px 30px;
  border: 0;
  border-radius: 100px;
  background: linear-gradient(120deg, var(--pink), var(--purple));
  color: #fff;
  font-family: "Baloo 2", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 106, 158, 0.32);
  transition: transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 34px rgba(255, 106, 158, 0.42);
}

.button--ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}

.button--ghost:hover {
  box-shadow: 0 12px 24px rgba(122, 91, 214, 0.16);
}

/* =========================================
   6. SECTION SHELL
========================================= */
.page-shell {
  padding: 34px 0 90px;
}

.section-stack {
  display: grid;
  gap: 56px;
}

.marketing-section {
  scroll-margin-top: var(--scroll-offset);
}

.panel {
  padding: 46px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.panel-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.66fr) minmax(0, 1.34fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 34px;
}

.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--surface-soft);
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
}

.panel-head .panel-lead {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
}

.panel-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.85;
  text-align: justify;
  text-align-last: left;
}

.disclosure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
  padding: 13px 20px;
  background: linear-gradient(100deg, #fff0f5, #f1ecff);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.disclosure svg {
  flex: 0 0 auto;
  color: var(--pink);
}

/* =========================================
   7. CATEGORY FILTER CHIPS
========================================= */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-chip {
  padding: 9px 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  background: #fff;
  color: var(--ink-soft);
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-chip:hover {
  border-color: var(--pink);
  color: var(--pink-deep);
  transform: translateY(-2px);
}

.filter-chip.is-active {
  border-color: transparent;
  background: linear-gradient(120deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 106, 158, 0.3);
}

/* =========================================
   8. GAME GRID & CARDS
========================================= */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.game-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 168, 0.5);
  box-shadow: var(--shadow-pop);
}

.game-card__top {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(120deg, #ffe6ef, #eee4ff);
}

.card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.game-card:hover .card-image {
  transform: scale(1.06);
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(53, 40, 79, 0.12);
}

.game-card__btm {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 24px;
}

.game-card__title {
  margin-bottom: 8px;
  font-family: "Baloo 2", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}

.game-card__btm p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.game-card .card-button {
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 14.5px;
}

/* =========================================
   9. ABOUT PAGE
========================================= */
.about-hero {
  padding: 52px;
  margin-bottom: 34px;
}

.about-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
}

.about-hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.about-panel {
  padding: 46px;
  margin-bottom: 34px;
}

.about-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
}

.about-panel p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.85;
  text-align: justify;
  text-align-last: left;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

.about-support {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0;
}

.about-support-copy {
  padding: 46px;
}

.about-support-copy h2 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 800;
}

.about-support-copy p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.85;
}

.about-support-copy a {
  color: var(--pink-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 92, 147, 0.4);
  text-underline-offset: 3px;
}

.about-support-art {
  display: grid;
  place-items: center;
  padding: 40px;
  background: linear-gradient(150deg, #ffe6ef, #eae2ff 60%, #dff3ff);
}

.about-support-art img {
  width: min(100%, 240px);
  height: auto;
}

.contact-card {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.contact-row span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--surface-soft);
  font-size: 17px;
}

.contact-row a {
  color: var(--pink-deep);
}

/* =========================================
   10. POLICY PAGES
========================================= */
.policy-hero {
  padding: 46px 52px;
  margin-bottom: 30px;
}

.policy-hero .panel-kicker {
  margin-bottom: 14px;
}

.policy-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
}

.policy-hero p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 264px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 130px;
  max-height: calc(100vh - 160px);
  overflow: auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.policy-toc h2 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.policy-toc ol {
  margin: 0;
  padding-left: 18px;
}

.policy-toc li {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 9px;
}

.policy-toc a {
  color: var(--ink-soft);
  font-weight: 600;
  transition: color var(--transition);
}

.policy-toc a:hover {
  color: var(--pink-deep);
}

.policy-document {
  padding: 42px clamp(26px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.policy-document .policy-intro p,
.policy-document .policy-section p,
.policy-document .policy-section li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.policy-section {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
}

.policy-section h4 {
  margin: 20px 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.policy-section p {
  margin: 0 0 14px;
}

.policy-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 8px;
}

/* =========================================
   11. FOOTER
========================================= */
.site-footer {
  margin-top: 40px;
  padding: 44px 24px 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.92));
  border-top: 1px solid var(--line);
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-responsible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
  padding: 20px 24px;
  background: linear-gradient(100deg, #fff0f5, #f1ecff);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: left;
}

.footer-responsible h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.footer-responsible p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.footer-18 {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
}

.footer-separator {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
}

.footer-link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--pink-deep);
}

.footer-link-sep {
  color: var(--line-strong);
}

.footer-copyright {
  width: 100%;
  max-width: 940px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.footer-copyright p {
  margin: 0 0 6px;
}

.footer-company {
  margin-top: 10px;
}

.footer-company a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.footer-company a:hover {
  color: var(--pink-deep);
}

/* =========================================
   12. AGE GATE (18+)
========================================= */
body.age-gate-open {
  overflow: hidden;
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(53, 40, 79, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.age-gate-overlay.is-active {
  display: grid;
}

.age-gate-modal {
  width: min(440px, calc(100vw - 32px));
  padding: 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  text-align: center;
  animation: pop-in 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.age-gate-badge {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
}

.age-gate-headline {
  margin: 0 0 10px;
  font-size: 27px;
  font-weight: 800;
}

.age-gate-text {
  margin: 0 auto 26px;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

.age-gate-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.age-gate-btn {
  flex: 1;
  padding: 14px 16px;
  border: 0;
  border-radius: 100px;
  font-family: "Baloo 2", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.age-gate-btn--yes {
  background: linear-gradient(120deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 106, 158, 0.32);
}

.age-gate-btn--yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 106, 158, 0.42);
}

.age-gate-btn--no {
  background: #f3f0fa;
  color: var(--ink-soft);
}

.age-gate-btn--no:hover {
  background: #e9e3f7;
}

.age-gate-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.age-gate-note a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.age-gate-denied .age-gate-text {
  margin-bottom: 22px;
}

.age-gate-retry {
  border: 0;
  background: none;
  padding: 8px;
  color: var(--pink-deep);
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.age-gate-body[hidden] {
  display: none;
}

/* =========================================
   13. RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 38px;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    width: min(100%, 300px);
  }

  .panel-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-support {
    grid-template-columns: 1fr;
  }

  .about-support-art {
    min-height: 220px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-shell {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-wrapper {
    order: 3;
    flex: 1 0 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .nav-link {
    font-size: 13.5px;
    padding: 8px 12px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .panel,
  .about-panel,
  .about-hero,
  .policy-hero,
  .about-support-copy {
    padding: 30px 22px;
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-inner {
    padding: 28px 22px;
  }

  .panel-copy p,
  .about-panel p {
    text-align: left;
  }

  .page-shell {
    padding-bottom: 60px;
  }

  .footer-responsible {
    text-align: center;
    justify-content: center;
  }

  .age-gate-buttons {
    flex-direction: column-reverse;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .notice-banner {
    padding: 12px 48px 12px 16px;
    font-size: 12.5px;
  }
}
