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

:root {
    --bg: #fff8ef;
    --bg-soft: #fffdf8;
    --ink: #17212b;
    --muted: #60717d;
    --line: rgba(23, 33, 43, 0.12);
    --navy: #102a43;
    --teal: #0f9f9a;
    --teal-dark: #087974;
    --coral: #ff6f61;
    --gold: #f7b731;
    --mint: #dff8ec;
    --sky: #dceeff;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(16, 42, 67, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 111, 97, 0.14), transparent 28rem),
        radial-gradient(circle at 92% 2%, rgba(15, 159, 154, 0.13), transparent 24rem),
        linear-gradient(180deg, #fff8ef 0%, #f7fbff 46%, #fffaf3 100%);
    line-height: 1.6;
    min-width: 320px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(16, 42, 67, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 42, 67, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 65%);
}

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

p {
    color: var(--muted);
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 248, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 42, 67, 0.08);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

header.scrolled {
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 12px 30px rgba(16, 42, 67, 0.08);
}

nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-img {
    width: 158px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px;
    border-radius: var(--radius);
    color: #344754;
    font-weight: 700;
    font-size: 0.94rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal-dark);
    background: rgba(15, 159, 154, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 230px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: var(--white);
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-cta,
.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), #1677d2);
    box-shadow: 0 16px 28px rgba(15, 159, 154, 0.24);
}

.btn-secondary {
    background: #b51be9;
    border: 1px solid var(--line);
    color: white;
}

.btn-accent {
    color: white;
    background: linear-gradient(135deg, var(--gold), #ea3d0d);
}

.nav-cta {
    min-height: 42px;
    padding: 10px 15px;
    white-space: nowrap;
}

.hero,
.about-story-hero,
.contact-hero,
.legal-hero {
    padding: 92px 0 64px;
    overflow: hidden;
}

.hero-layout,
.about-story-grid,
.contact-hero-grid,
.legal-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    gap: 44px;
    align-items: center;
}

.hero-copy h1,
.about-story-copy h1,
.contact-hero-copy h1,
.legal-hero-copy h1 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(2.35rem, 6vw, 5.3rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero-copy h2 {
    margin-bottom: 16px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
}

.hero-copy p,
.about-story-copy p,
.contact-hero-copy p,
.legal-hero-copy p {
    max-width: 660px;
    font-size: 1.1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-buttons,
.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-visual,
.party-visual,
.about-story-visual,
.contact-orbit,
.legal-ticket {
    position: relative;
    min-height: 360px;
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.party-visual {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255, 111, 97, 0.18), rgba(15, 159, 154, 0.16)),
        #ffffff;
}

.party-bubble {
    width: min(94%, 470px);
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
}

.hero-game-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: end;
}

.hero-game-tile {
    display: grid;
    gap: 12px;
    place-items: center;
    min-height: 190px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--bg-soft);
    box-shadow: 0 14px 30px rgba(16, 42, 67, 0.11);
}

.hero-game-tile-main {
    min-height: 240px;
    background: var(--mint);
}

.hero-game-tile img {
    max-height: 96px;
    object-fit: contain;
}

.hero-game-tile span {
    color: var(--navy);
    font-weight: 900;
}

.confetti-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.dot-one {
    top: 12%;
    left: 12%;
    background: var(--coral);
}

.dot-two {
    top: 16%;
    right: 18%;
    background: var(--gold);
}

.dot-three {
    bottom: 18%;
    left: 18%;
    background: var(--teal);
}

.section-shell,
.games-section,
.game-section,
.contact-section,
.legal-document,
.disclaimer-section {
    padding: 72px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-title,
.bento-header h2,
.philosophy-header h2,
.timeline-header h2,
.legal-aside h2 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.section-subtitle {
    font-size: 1.03rem;
}

.builder-layout,
.contact-grid,
.legal-doc-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.builder-panel,
.order-card,
.card,
.step,
.faq-item,
.contact-wrapper,
.contact-form,
.legal-aside,
.legal-note-card,
.disclaimer-box,
.game-wrapper {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 48px rgba(16, 42, 67, 0.09);
}

.builder-panel,
.order-card,
.contact-wrapper,
.legal-aside,
.legal-note-card,
.disclaimer-box {
    padding: 28px;
}

.builder-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
}

.builder-step:not(:first-child) {
    margin-top: 26px;
}

.builder-step h3 {
    margin: 0;
    color: var(--navy);
}

.step-number,
.note-number {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
}

.theme-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.theme-chip,
.host-card,
.contact-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffdf8;
    color: var(--navy);
    font-weight: 800;
}

.theme-chip.active,
.theme-chip:hover {
    border-color: rgba(15, 159, 154, 0.4);
    background: var(--mint);
}

.party-slider {
    height: 14px;
    padding: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.party-slider span {
    display: block;
    width: 62%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.host-avatar,
.step-icon,
.bento-icon,
.timeline-node,
.ticket-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--white);
    background: var(--teal);
}

.host-card h4,
.host-card p,
.order-card h3 {
    margin-bottom: 4px;
}

.order-card ul {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

.card-grid,
.htp-steps,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card,
.step,
.faq-item {
    padding: 22px;
}

.card-image {
    width: 100%;
    height: 178px;
    object-fit: contain;
    padding: 18px;
    border-radius: var(--radius);
    background: #f7fbff;
}

.card-tag {
    display: inline-flex;
    margin: 18px 0 10px;
    color: var(--teal-dark);
    font-weight: 900;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.card h3,
.step h3,
.faq-item h3 {
    color: var(--navy);
}

.card .btn {
    width: 100%;
    margin-top: 10px;
}

.step-icon {
    margin-bottom: 18px;
    background: var(--coral);
}

.disclaimer-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff5d9;
}

.disclaimer-box > i {
    color: #b67200;
    font-size: 1.8rem;
    margin-top: 4px;
}

.disclaimer-box h3,
.disclaimer-box p {
    margin-bottom: 0;
}

footer {
    padding: 60px 0 26px;
    background: #102a43;
    color: var(--white);
}

footer p,
footer a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, 1fr);
    gap: 32px;
}

.footer-brand p {
    max-width: 380px;
    margin-top: 18px;
}

.footer-col h4 {
    margin-bottom: 14px;
}

.footer-col ul {
    display: grid;
    gap: 10px;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.92rem;
}

.page-hero {
    padding-bottom: 44px;
}

.page-hero .hero-visual {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: 28px;
}

.page-hero .card-image {
    height: 220px;
    background: transparent;
}

.game-section {
    padding-top: 28px;
}

.game-wrapper {
    padding: 12px;
    background: #102a43;
}

.game-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 16 / 9;
    background: #050b12;
}

.game-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-story-visual {
    padding: 26px;
}

.story-sunburst {
    position: relative;
    min-height: 260px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--mint), var(--sky));
}

.story-card {
    position: absolute;
    display: grid;
    gap: 6px;
    max-width: 190px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(16, 42, 67, 0.12);
}

.story-card.main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.story-card.main span,
.bento-stat {
    color: var(--coral);
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1;
}

.story-card.top {
    top: 18px;
    left: 18px;
}

.story-card.bottom {
    right: 18px;
    bottom: 18px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.story-stats div {
    padding: 14px;
    border-radius: var(--radius);
    background: var(--white);
    text-align: center;
}

.story-stats strong,
.story-stats span {
    display: block;
}

.story-stats strong {
    color: var(--navy);
    font-size: 1.5rem;
}

.story-stats span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bento-card {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

.bento-gradient-mint {
    background: linear-gradient(135deg, #e2fff0, #ffffff);
}

.bento-gradient-coral {
    background: linear-gradient(135deg, #ffe0dc, #fff9ec);
}

.bento-shine {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(247, 183, 49, 0.24);
}

.philosophy-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.philosophy-card {
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(16, 42, 67, 0.08);
}

.philosophy-num {
    color: var(--coral);
    font-size: 0.86rem;
    font-weight: 900;
}

.philosophy-card h3 {
    margin: 18px 0 38px;
    color: var(--navy);
    font-size: 1.55rem;
    line-height: 1.15;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 20px;
    margin-top: 26px;
}

.timeline-line {
    position: absolute;
    left: 26px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: rgba(15, 159, 154, 0.18);
}

.timeline-progress {
    width: 100%;
    height: 64%;
    background: var(--teal);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.timeline-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.stats-marquee {
    overflow: hidden;
    border-block: 1px solid var(--line);
}

.stats-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 18px 0;
    animation: marquee 28s linear infinite;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(16, 42, 67, 0.08);
}

.stat-pill strong {
    color: var(--teal-dark);
}

.stat-pill span {
    color: var(--muted);
    font-weight: 700;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.about-quote-v2 {
    position: relative;
    overflow: hidden;
    padding: 56px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}

.quote-content {
    position: relative;
    max-width: 760px;
}

.quote-content i {
    color: var(--gold);
    font-size: 2rem;
}

.quote-content p {
    margin: 16px 0;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 3rem);
    line-height: 1.12;
    font-weight: 900;
}

.quote-line {
    display: block;
    width: 90px;
    height: 5px;
    border-radius: 999px;
    background: var(--gold);
}

.contact-orbit {
    display: grid;
    place-items: center;
    min-height: 420px;
    background: linear-gradient(135deg, #ffffff, #e4f8ff);
}

.orbit-core,
.orbit-card {
    display: grid;
    gap: 8px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 36px rgba(16, 42, 67, 0.12);
    color: var(--navy);
    font-weight: 900;
}

.orbit-core {
    width: 170px;
    height: 170px;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), #1677d2);
}

.orbit-core i {
    font-size: 2rem;
}

.orbit-card {
    position: absolute;
    padding: 14px;
    min-width: 150px;
}

.orbit-one {
    top: 42px;
    left: 34px;
}

.orbit-two {
    right: 28px;
    top: 45%;
}

.orbit-three {
    left: 58px;
    bottom: 42px;
}

.contact-wrapper {
    padding: 34px;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
}

.contact-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-point i {
    color: var(--teal-dark);
}

.contact-form form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffdf8;
    padding: 13px 14px;
    color: var(--ink);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(15, 159, 154, 0.12);
}

.legal-hero {
    padding-bottom: 32px;
}

.legal-ticket {
    min-height: auto;
    padding: 28px;
}

.legal-ticket.warning {
    background: #fff2e7;
}

.legal-ticket.calm {
    background: #eef9f3;
}

.legal-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.legal-tabs a {
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
}

.legal-tabs a.active,
.legal-tabs a:hover {
    color: var(--white);
    background: var(--teal);
}

.legal-doc-grid {
    grid-template-columns: 310px minmax(0, 1fr);
}

.legal-aside {
    position: sticky;
    top: 108px;
}

.doc-label {
    color: var(--coral);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.legal-card-stack {
    display: grid;
    gap: 18px;
}

.legal-note-card.featured {
    border-color: rgba(15, 159, 154, 0.28);
    background: #f3fffa;
}

.legal-note-card ul {
    display: grid;
    gap: 9px;
    margin-top: 12px;
    padding-left: 20px;
    list-style: disc;
    color: var(--muted);
}

.top-age-banner {
    padding: 13px 0;
    color: #fff;
    background: var(--navy);
}

.top-age-banner .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
}

.bar-mark {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

@media (max-width: 980px) {
    .nav-cta {
        display: none;
    }

    .hero-layout,
    .about-story-grid,
    .contact-hero-grid,
    .legal-hero-grid,
    .builder-layout,
    .contact-grid,
    .legal-doc-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .htp-steps,
    .faq-grid,
    .philosophy-deck {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-aside {
        position: static;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    nav {
        min-height: 72px;
    }

    .logo-img {
        width: 136px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 14px;
        right: 14px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 14px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        margin: 4px 0 8px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f7fbff;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: none;
    }

    .dropdown.active-dropdown .dropdown-menu {
        display: block;
    }

    .hero,
    .about-story-hero,
    .contact-hero,
    .legal-hero {
        padding: 54px 0 38px;
    }

    .section-shell,
    .games-section,
    .game-section,
    .contact-section,
    .legal-document,
    .disclaimer-section {
        padding: 48px 0;
    }

    .hero-visual,
    .party-visual,
    .about-story-visual,
    .contact-orbit {
        min-height: 300px;
    }

    .hero-game-strip,
    .theme-options,
    .story-stats,
    .card-grid,
    .htp-steps,
    .faq-grid,
    .philosophy-deck,
    .bento-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-game-tile,
    .hero-game-tile-main {
        min-height: 150px;
    }

    .bento-wide,
    .bento-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .builder-panel,
    .order-card,
    .contact-wrapper,
    .legal-aside,
    .legal-note-card,
    .disclaimer-box,
    .about-quote-v2 {
        padding: 22px;
    }

    .contact-form {
        padding: 18px;
    }

    .orbit-card {
        position: static;
        margin: 8px;
        min-width: 0;
        width: calc(100% - 40px);
    }

    .contact-orbit {
        align-content: center;
        gap: 4px;
        padding: 18px;
    }

    .orbit-core {
        width: 140px;
        height: 140px;
    }

    .disclaimer-box {
        flex-direction: column;
    }

    .game-container {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 520px) {
    .hero-buttons,
    .about-hero-actions,
    .legal-tabs {
        flex-direction: column;
    }

    .btn,
    .legal-tabs a {
        width: 100%;
    }

    .story-card {
        position: static;
        max-width: none;
        margin: 10px;
    }

    .story-card.main {
        transform: none;
        text-align: left;
    }

    .story-sunburst {
        display: grid;
        align-content: center;
        min-height: auto;
        padding: 10px 0;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .top-age-banner .container {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* --- AESTHETIC REDESIGN --- */

.premium-hero {
    position: relative;
    overflow: visible;
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.aesthetic-h1 {
    font-size: clamp(2rem, 5vw, 5rem) !important;
    font-weight: 900;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
}

.aesthetic-p {
    font-size: 1.25rem !important;
    line-height: 1.7;
    color: #4a5c6a;
}

.aesthetic-eyebrow {
    background: rgba(15, 159, 154, 0.15);
    padding: 6px 16px;
    border-radius: 999px;
    color: var(--teal-dark) !important;
    letter-spacing: 0.15em !important;
}

.aesthetic-btn {
    border-radius: 999px !important;
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, var(--teal), #0a5f5c) !important;
    box-shadow: 0 20px 40px rgba(15, 159, 154, 0.3) !important;
}

.aesthetic-btn:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(15, 159, 154, 0.4) !important;
}

.aesthetic-btn-sec {
    border-radius: 999px !important;
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    border: 2px solid var(--teal) !important;
}

.aesthetic-btn-sec:hover {
    background: rgba(15, 159, 154, 0.05) !important;
    transform: translateY(-4px) !important;
}

.aesthetic-visual {
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8) !important;
    box-shadow: 0 30px 60px rgba(16, 42, 67, 0.15) !important;
    border-radius: 24px !important;
    overflow: hidden;
}

.glass-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.1));
    z-index: 0;
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.aesthetic-visual > * {
    z-index: 2;
    position: relative;
}

.aesthetic-bubble {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255,255,255,1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-radius: 20px !important;
}

.hover-tilt {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-tilt:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(16, 42, 67, 0.15);
}

.hover-float {
    transition: transform 0.4s ease;
}

.hover-float:hover {
    transform: translateY(-8px) !important;
}
.story-card.main.hover-float:hover {
    transform: translate(-50%, -60%) !important;
}

.aesthetic-sunburst {
    border-radius: 20px !important;
    background: radial-gradient(circle at center, var(--mint), var(--sky)) !important;
    box-shadow: inset 0 0 40px rgba(255,255,255,0.8);
}

.aesthetic-stats div {
    background: rgba(255,255,255,0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aesthetic-stats div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* FAQ Accordion */
.aesthetic-faq {
    background: linear-gradient(to bottom, transparent, rgba(15, 159, 154, 0.05));
    border-radius: 40px;
    margin: 40px 0;
}

.aesthetic-h2 {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(16, 42, 67, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
    border-color: rgba(15, 159, 154, 0.3);
}

.faq-accordion-header {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--navy);
}

.faq-accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-accordion-header i {
    font-size: 1.2rem;
    color: var(--teal);
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-header i {
    transform: rotate(45deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(255,255,255,0.5);
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 500px;
    transition: max-height 0.4s ease-in-out;
}

.faq-accordion-content p {
    padding: 0 24px 24px;
    margin: 0;
    font-size: 1.1rem;
}

/* Bento Hover */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 42, 67, 0.12);
    z-index: 10;
}


/* --- EXTRA AESTHETICS --- */

body {
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 111, 97, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(15, 159, 154, 0.2) 0%, transparent 40%),
        linear-gradient(135deg, #fffcf9 0%, #f4faff 100%) !important;
}

header {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.7) !important;
}

.nav-links a {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.aesthetic-h1 {
    text-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.text-gradient {
    background: linear-gradient(135deg, #ff6f61, #f7b731, #0f9f9a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.aesthetic-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.aesthetic-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #0a5f5c, var(--teal));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.aesthetic-btn:hover::before {
    opacity: 1;
}

/* Floating animation for the whole visual */
@keyframes float-container {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.aesthetic-visual {
    animation: float-container 6s ease-in-out infinite;
}

/* Bolder glassmorphism */
.glass-bg {
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2)) !important;
    border: 1px solid rgba(255,255,255,0.9);
}

.aesthetic-bubble {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8);
}

.faq-accordion-item {
    background: rgba(255,255,255,0.6) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8) !important;
}

.faq-accordion-item:hover {
    background: rgba(255,255,255,0.9) !important;
    transform: scale(1.01) !important;
}

.bento-card {
    border: 1px solid rgba(255,255,255,0.8) !important;
    background: rgba(255,255,255,0.6) !important;
    backdrop-filter: blur(20px);
}

.bento-card:hover {
    background: rgba(255,255,255,0.95) !important;
}

/* Add custom aesthetic scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--teal-dark);
}
