:root {
    --bg-main: #12031f;
    --bg-secondary: #1f0a33;
    --bg-panel: rgba(20, 9, 42, 0.72);
    --bg-panel-strong: rgba(29, 11, 57, 0.92);
    --line-soft: rgba(255, 255, 255, 0.1);
    --text-main: #f7edff;
    --text-soft: #d8c6ee;
    --text-faint: #ae99ca;
    --pink: #ff4fd8;
    --violet: #8b5dff;
    --cyan: #49d7ff;
    --blue: #4a7dff;
    --gold: #ffd75c;
    --glow: 0 0 18px rgba(255, 79, 216, 0.34);
    --glow-strong: 0 0 30px rgba(73, 215, 255, 0.28);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.28);
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(255, 79, 216, 0.18), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(73, 215, 255, 0.16), transparent 25%),
        linear-gradient(135deg, #090112 0%, #170528 48%, #090314 100%);
    background-attachment: fixed;
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 79, 216, 0.08), rgba(73, 215, 255, 0.08), rgba(139, 93, 255, 0.08));
    background-size: 220% 220%;
    animation: pulseGradient 18s ease infinite;
    opacity: 0.9;
}

.age-entry-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background:
        radial-gradient(circle at top, rgba(255, 79, 216, 0.1), transparent 24%),
        radial-gradient(circle at 80% 18%, rgba(73, 215, 255, 0.08), transparent 20%),
        linear-gradient(145deg, #08040d 0%, #120818 48%, #050308 100%);
}

.age-entry-shell {
    width: 100%;
    max-width: 44rem;
    position: relative;
    z-index: 1;
}

.age-entry-card {
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top, rgba(255, 79, 216, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(24, 14, 34, 0.98), rgba(10, 8, 16, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 26px rgba(255, 79, 216, 0.12);
}

.age-entry-layout {
    padding: 1.5rem;
}

.age-entry-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.age-entry-question {
    margin-bottom: 0;
    color: #fff5ff;
    font-size: 1.2rem;
    font-weight: 700;
}

.age-entry-status {
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 125, 169, 0.34);
    background: rgba(255, 79, 146, 0.08);
    color: #ffd8ea;
}

a {
    color: #fbd7ff;
    text-decoration-color: rgba(251, 215, 255, 0.45);
    transition: color 0.3s ease, text-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

a:hover,
a:focus-visible {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
}

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

.site-shell {
    position: relative;
    z-index: 1;
}

.container {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(10, 3, 20, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-row {
    padding: 1rem 0 0.35rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.brand-avatar {
    width: 4.5rem;
    height: 4.5rem;
    padding: 0.2rem;
    flex: 0 0 auto;
    border-radius: 1.35rem;
    background: linear-gradient(135deg, rgba(255, 79, 216, 0.4), rgba(73, 215, 255, 0.34));
    box-shadow: var(--glow), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.brand-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.1rem;
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.28);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
}

.brand-title {
    font-size: clamp(1.9rem, 4vw, 3.3rem);
    font-weight: 700;
    color: #fff5ff;
    text-shadow: 0 0 24px rgba(255, 79, 216, 0.45);
}

.brand-summary {
    margin: 0.9rem 0 0;
    max-width: 48rem;
    color: var(--text-soft);
}

.main-nav {
    padding: 0.7rem 0 1rem;
}

.main-nav ul,
.link-list,
.footer-links,
.check-list,
.tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 79, 216, 0.24), rgba(73, 215, 255, 0.18));
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: var(--glow);
    transform: translateY(-1px);
}

.site-main {
    padding: 1.6rem 0 4rem;
}

.age-gate-banner {
    margin-bottom: 1.2rem;
}

.age-gate-inner {
    padding: 1.2rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at top right, rgba(255, 215, 92, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(56, 16, 81, 0.96), rgba(18, 8, 38, 0.94));
    box-shadow: var(--shadow-soft), 0 0 24px rgba(255, 79, 216, 0.18);
}

.age-gate-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 215, 92, 0.12);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.age-gate-inner h2 {
    margin-bottom: 0.75rem;
    color: #fff6ff;
}

.age-gate-inner p {
    max-width: 60rem;
}

.age-gate-warning {
    color: #ffd8ea;
}

.age-gate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.ghost-button {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.ghost-button:hover,
.ghost-button:focus-visible {
    box-shadow: 0 0 24px rgba(73, 215, 255, 0.18);
}

.age-gate-links {
    margin-top: 1rem;
    color: var(--text-faint);
}

.site-main.gate-locked > :not(.age-gate-banner) {
    display: none;
}

.yes-button {
    background: linear-gradient(135deg, rgba(31, 181, 96, 0.95), rgba(18, 130, 68, 0.95));
    border-color: rgba(115, 255, 180, 0.35);
    box-shadow: 0 0 24px rgba(46, 201, 111, 0.28);
}

.yes-button:hover,
.yes-button:focus-visible {
    box-shadow: 0 0 28px rgba(46, 201, 111, 0.38);
}

.no-button {
    background: linear-gradient(135deg, rgba(214, 54, 84, 0.95), rgba(155, 24, 48, 0.95));
    border-color: rgba(255, 137, 164, 0.3);
    box-shadow: 0 0 24px rgba(214, 54, 84, 0.24);
}

.no-button:hover,
.no-button:focus-visible {
    box-shadow: 0 0 28px rgba(214, 54, 84, 0.34);
}

.hero,
.page-hero,
.content-card,
.feature-card,
.tip-card,
.form-panel,
.notice {
    background: linear-gradient(180deg, rgba(34, 13, 63, 0.92), rgba(16, 8, 35, 0.82));
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero,
.page-hero {
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.hero::after,
.page-hero::after,
.feature-card::after,
.tip-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -45% auto;
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(73, 215, 255, 0.24), transparent 70%);
    pointer-events: none;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.95rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    color: var(--cyan);
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.12;
}

h1 {
    font-size: clamp(2.3rem, 6vw, 4.8rem);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 79, 216, 0.28);
}

h2 {
    font-size: clamp(1.55rem, 4vw, 2.2rem);
    margin-bottom: 0.85rem;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}

p {
    margin-top: 0;
    color: var(--text-soft);
}

.hero p,
.page-hero p {
    max-width: 42rem;
    font-size: 1.02rem;
}

.hero-grid,
.card-grid,
.mini-grid,
.tip-grid,
.footer-grid,
.faq-grid,
.form-layout,
.art-grid,
.media-strip,
.split-spotlight {
    display: grid;
    gap: 1rem;
}

.hero-grid {
    margin-top: 1.5rem;
}

.hero-stats {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-side {
    display: grid;
    gap: 0.9rem;
}

.stat-box {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 1.3rem;
}

.mascot-panel,
.art-card,
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(50, 20, 89, 0.84), rgba(16, 8, 35, 0.84));
    box-shadow: var(--shadow-soft);
}

.mascot-panel {
    min-height: 16rem;
    padding: 1rem;
    display: flex;
    align-items: end;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 225, 94, 0.32), transparent 22%),
        linear-gradient(160deg, rgba(255, 79, 216, 0.24), rgba(73, 215, 255, 0.16)),
        linear-gradient(180deg, rgba(48, 18, 83, 0.9), rgba(18, 8, 38, 0.9));
}

.mascot-panel img {
    width: min(100%, 17rem);
    filter: drop-shadow(0 0 28px rgba(255, 79, 216, 0.34));
}

.panel-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    padding: 0.8rem 0.95rem;
    border-radius: var(--radius-sm);
    background: rgba(9, 4, 21, 0.68);
    backdrop-filter: blur(10px);
}

.panel-caption strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #fff9ff;
}

.panel-caption span {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.art-card,
.gallery-card {
    min-height: 17rem;
}

.art-card img,
.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.crop-collection {
    object-position: center 24%;
}

.crop-guitar {
    object-position: center 34%;
}

.art-card figcaption,
.gallery-card figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    background: linear-gradient(180deg, transparent, rgba(5, 2, 12, 0.88));
}

.art-card h3,
.gallery-card h2,
.gallery-card h3 {
    margin-bottom: 0.25rem;
}

.art-card p,
.gallery-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.section {
    margin-top: 1.4rem;
}

.card-grid,
.tip-grid,
.faq-grid {
    margin-top: 1rem;
}

.content-card,
.feature-card,
.tip-card,
.form-panel,
.notice {
    padding: 1.25rem;
    position: relative;
}

.content-card h2,
.feature-card h2,
.feature-card h3,
.tip-card h3,
.form-panel h2 {
    color: #fff6ff;
}

.feature-card,
.tip-card {
    background: linear-gradient(180deg, rgba(40, 14, 71, 0.84), rgba(18, 8, 38, 0.84));
}

.feature-card:hover,
.tip-card:hover,
.content-card:hover,
.art-card:hover,
.gallery-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-soft), var(--glow-strong);
    transform: translateY(-2px);
}

.feature-card,
.tip-card,
.content-card,
.art-card,
.gallery-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.check-list li,
.link-list li,
.footer-links li,
.tip-list li {
    margin-bottom: 0.7rem;
    color: var(--text-soft);
}

.check-list li::before,
.tip-list li::before {
    content: "•";
    display: inline-block;
    width: 1rem;
    color: var(--cyan);
}

.link-list a,
.footer-links a {
    text-decoration: none;
}

.callout {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--pink);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(255, 255, 255, 0.05);
}

.dual-column {
    display: grid;
    gap: 1rem;
}

.spotlight-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-item + .faq-item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

form {
    display: grid;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff2ff;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(7, 3, 17, 0.58);
    color: #fff;
    font: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(73, 215, 255, 0.4);
    border-color: rgba(73, 215, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(73, 215, 255, 0.1);
}

textarea {
    min-height: 10rem;
    resize: vertical;
}

button,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(255, 79, 216, 0.28), rgba(73, 215, 255, 0.2));
    color: #fff;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--glow);
}

button:hover,
button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(255, 79, 216, 0.32);
}

.notice.success {
    border-color: rgba(73, 215, 255, 0.35);
}

.notice.error {
    border-color: rgba(255, 79, 216, 0.38);
}

.site-footer {
    padding: 2.4rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 2, 18, 0.66);
}

.site-footer h2 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin-bottom: 0;
}

.page-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.1rem;
}

.muted {
    color: var(--text-faint);
}

@keyframes pulseGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (min-width: 700px) {
    .hero,
    .page-hero {
        padding: 2.3rem;
    }

    .hero-grid {
        grid-template-columns: 1.5fr 0.9fr;
        align-items: end;
    }

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

    .mini-grid,
    .tip-grid,
    .faq-grid,
    .footer-grid,
    .form-layout,
    .dual-column,
    .art-grid,
    .media-strip,
    .split-spotlight {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .tip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .faq-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .art-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
