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

:root {
    /* Shoyurei Grove palette — Pink & Green */
    --bg-deep: #0c100e;
    --bg-card: rgba(14, 22, 16, 0.78);
    --bg-card-solid: #0e1610;

    --pink: #f0a0c0;
    --pink-soft: #f7c8da;
    --pink-hot: #e06090;
    --green: #6dbd8a;
    --green-deep: #3d8a5a;
    --green-pale: #a4dbb8;
    --mint: #8ecfab;
    --mint-pale: #b8e6cc;
    --cream: #f5f0ea;

    --text-main: #f2f0ee;
    --text-soft: rgba(242, 240, 238, 0.7);
    --text-muted: rgba(242, 240, 238, 0.4);
    --glow-pink: rgba(240, 160, 192, 0.35);
    --glow-green: rgba(109, 189, 138, 0.3);
    --glow-mint: rgba(142, 207, 171, 0.25);

    --avatar-size: 72px;
    --radius: 16px;
    --radius-sm: 10px;
    --max-w: 620px;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    cursor: none !important;
}

/* Hide default cursor on everything */
*, *::before, *::after,
a, button, input, select, textarea,
.social-link, .link-item, .credit-card,
.schedule-item, .twitch-btn, .scroll-indicator,
.lore-item, .bio-card {
    cursor: none !important;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 20px;
    transform: translate(-50%, -50%);
    will-change: transform, left, top;
    filter: drop-shadow(0 0 4px rgba(240,160,192,0.5));
    opacity: 0;
    transition: opacity 0.2s ease;
}
.custom-cursor.active { opacity: 1; }
.custom-cursor.spin {
    animation: cursorSpin 0.4s linear infinite;
}
@keyframes cursorSpin {
    from { transform: translate(-50%, -50%) rotate(0deg) scale(1.2); }
    to { transform: translate(-50%, -50%) rotate(360deg) scale(1.2); }
}

/* ===== BACKGROUND ===== */
.bg-layer { position: fixed; inset: 0; z-index: 0; }

.bg-image {
    position: absolute;
    inset: 0;
    background: url('Shoyu Tree.png') center/cover no-repeat;
    filter: brightness(0.4) saturate(1.1);
    transform: scale(1.03);
    animation: gentleDrift 40s ease-in-out infinite alternate;
    transition: background-image 1s ease;
}

@keyframes gentleDrift {
    0% { transform: scale(1.03) translate(0, 0); }
    100% { transform: scale(1.06) translate(-0.5%, 0.3%); }
}

.bg-tint {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 15%, rgba(240, 160, 192, 0.08), transparent 50%),
        radial-gradient(ellipse at 75% 85%, rgba(109, 189, 138, 0.08), transparent 50%),
        linear-gradient(180deg, rgba(12, 16, 14, 0.15) 0%, rgba(12, 16, 14, 0.6) 100%);
}

#petals { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

/* ===== LIVE BANNER ===== */
.live-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(224,96,144,0.9), rgba(61,138,90,0.9));
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    animation: slideDown 0.4s ease;
}
.live-banner.active { display: flex; }

.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ff3b3b;
    box-shadow: 0 0 8px rgba(255,59,59,0.6);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.live-text { text-transform: uppercase; letter-spacing: 0.1em; }
.live-title { opacity: 0.85; font-weight: 400; }

/* ===== SITE WRAPPER ===== */
.site-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-bottom: 20px;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    animation: fadeUp 1s ease-out 1.5s both;
}
.scroll-indicator:hover { opacity: 0.8; }
.scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-soft);
}
.scroll-indicator i {
    font-size: 0.8rem;
    color: var(--pink);
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== HERO (first viewport) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 28px 36px;
}

/* Top bar */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    animation: fadeDown 0.7s ease-out 0.1s both;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.identity { display: flex; align-items: center; gap: 14px; }

.avatar-ring {
    position: relative;
    width: var(--avatar-size);
    height: var(--avatar-size);
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--pink), var(--green), var(--mint));
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.avatar-ring:hover {
    transform: scale(1.08);
    box-shadow: 0 0 24px var(--glow-pink), 0 0 48px var(--glow-green);
}
.avatar {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--bg-deep);
    display: block;
    position: relative;
    z-index: 1;
}
.avatar-decoration {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 130%; height: 130%;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: contain;
}
.avatar-decoration.active { opacity: 1; }

.identity-info { display: flex; flex-direction: column; gap: 1px; }
.name {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-main);
    text-shadow: 0 0 20px var(--glow-pink);
    line-height: 1.15;
}
.handle { font-size: 0.78rem; color: var(--text-soft); letter-spacing: 0.04em; }

/* Status pill */
.status-pill {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 500;
    color: var(--text-soft);
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 160, 192, 0.12);
    border-radius: 100px;
    padding: 8px 16px;
    letter-spacing: 0.03em;
}
.status-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px var(--glow-green);
    animation: pulse 2.5s ease-in-out infinite;
}

/* Hero center */
.hero-center {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 16px 0;
    animation: fadeUp 0.9s ease-out 0.3s both;
}

/* Bio card */
.bio-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(240, 160, 192, 0.1);
    border-radius: var(--radius);
    padding: 36px 40px;
    max-width: var(--max-w);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.bio-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-soft), var(--green-pale), var(--mint-pale), transparent);
    opacity: 0.4;
}
.banner-strip {
    display: none;
    height: 100px;
    margin: -36px -40px 20px -40px;
    border-radius: var(--radius) var(--radius) 0 0;
    background-size: cover;
    background-position: center;
    position: relative;
}
.banner-strip.active { display: block; }
.banner-strip::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to top, var(--bg-card-solid), transparent);
}

.bio-quote {
    font-size: 1rem; line-height: 1.75;
    color: var(--text-main); text-align: center;
}
.bio-welcome {
    text-align: center; font-size: 0.88rem;
    color: var(--pink-soft); margin-top: 10px;
    font-weight: 500; font-style: italic;
}

/* Bottom bar */
.bottom-bar {
    display: flex; align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    animation: fadeUp 0.7s ease-out 0.6s both;
}
.twitch-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--pink-hot), var(--green-deep));
    color: #fff; font-family: inherit;
    font-size: 0.8rem; font-weight: 600;
    padding: 10px 20px; border-radius: var(--radius-sm);
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s ease; letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(224, 96, 144, 0.25);
}
.twitch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(224, 96, 144, 0.4);
}
.twitch-btn i { font-size: 1rem; }

.social-row { display: flex; align-items: center; gap: 8px; }
.social-link {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 160, 192, 0.1);
    color: var(--text-soft);
    font-size: 1rem; text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover { transform: translateY(-3px); color: var(--text-main); }
.social-link.discord:hover { border-color: #5865F2; color: #5865F2; box-shadow: 0 4px 16px rgba(88,101,242,0.25); }
.social-link.youtube:hover { border-color: #FF0000; color: #FF0000; box-shadow: 0 4px 16px rgba(255,0,0,0.2); }
.social-link.twitter:hover { border-color: var(--text-main); color: var(--text-main); box-shadow: 0 4px 16px rgba(255,255,255,0.1); }
.social-link.instagram:hover { border-color: #E4405F; color: #E4405F; box-shadow: 0 4px 16px rgba(228,64,95,0.2); }
.social-link.kofi:hover { border-color: #FF5E5B; color: #FF5E5B; box-shadow: 0 4px 16px rgba(255,94,91,0.25); }

/* ===== SECTIONS ===== */
.section {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 48px 24px;
    animation: fadeUp 0.7s ease-out both;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-main);
    text-shadow: 0 0 16px var(--glow-pink);
}
.section-icon { margin-right: 8px; }

/* Divider between sections */
.section + .section::before {
    content: '✿';
    display: block;
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    opacity: 0.5;
}

/* ===== COUNTDOWN ===== */
/* Hero schedule (inside bio card) */
.hero-schedule {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(240,160,192,0.08);
}

.countdown-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: rgba(240,160,192,0.04);
    border: 1px solid rgba(240,160,192,0.08);
    border-radius: var(--radius-sm);
}
.countdown-bar.hidden { display: none; }
.countdown-label {
    font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pink);
}
.countdown-digits {
    display: flex; align-items: center; gap: 6px;
}
.countdown-unit {
    display: flex; flex-direction: column;
    align-items: center; gap: 2px;
    min-width: 48px;
}
.countdown-unit span {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--text-main);
}
.countdown-unit small {
    font-size: 0.6rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-muted);
}
.countdown-sep {
    font-size: 1.4rem; color: var(--text-muted);
    font-weight: 300; margin-bottom: 14px;
}

/* ===== SCHEDULE ===== */
.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.schedule-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(240,160,192,0.05);
    border: 1px solid rgba(240,160,192,0.08);
    transition: all 0.3s ease;
}
.schedule-item:hover {
    background: rgba(240,160,192,0.1);
    border-color: rgba(240,160,192,0.2);
    transform: translateY(-2px);
}
.schedule-when {
    display: flex; flex-direction: column;
    align-items: center; gap: 2px;
    min-width: 60px; flex-shrink: 0;
}
.schedule-day {
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--pink);
}
.schedule-date {
    font-size: 0.6rem; color: var(--text-muted);
    letter-spacing: 0.05em;
}
.schedule-details {
    flex: 1; display: flex;
    flex-direction: column; gap: 3px;
    min-width: 0;
}
.schedule-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem; font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
    white-space: nowrap; overflow: hidden;
    text-overflow: ellipsis;
}
.schedule-desc {
    font-size: 0.65rem; color: var(--text-muted);
    line-height: 1.3;
    display: flex; align-items: center; gap: 5px;
}
.schedule-desc i { font-size: 0.55rem; color: var(--green); }
.schedule-time {
    font-size: 0.72rem; font-weight: 600;
    color: var(--green); white-space: nowrap;
    flex-shrink: 0;
}
.schedule-vacation {
    display: flex; align-items: center;
    gap: 10px; padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(109,189,138,0.08);
    border: 1px solid rgba(109,189,138,0.15);
    font-size: 0.78rem; color: var(--green-pale);
    margin-bottom: 4px;
}
.vacation-icon { font-size: 1.1rem; }
.schedule-empty {
    text-align: center; padding: 20px;
    font-size: 0.8rem; color: var(--text-muted);
    font-style: italic;
}
.schedule-twitch-link {
    display: flex; align-items: center;
    justify-content: center; gap: 8px;
    padding: 10px; margin-top: 4px;
    border-radius: var(--radius-sm);
    background: rgba(145,70,255,0.08);
    border: 1px solid rgba(145,70,255,0.15);
    color: #b9a3e3; font-size: 0.72rem;
    font-weight: 600; text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}
.schedule-twitch-link:hover {
    background: rgba(145,70,255,0.15);
    border-color: rgba(145,70,255,0.3);
    transform: translateY(-1px);
    color: #d2c0f0;
}
.schedule-twitch-link i { font-size: 0.85rem; }

/* ===== NOW PLAYING ===== */
.now-playing-card {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(109,189,138,0.15);
    border-radius: var(--radius);
    position: relative; overflow: hidden;
}
.np-album {
    width: 56px; height: 56px;
    border-radius: 8px; object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.np-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.np-track { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
.np-artist { font-size: 0.72rem; color: var(--text-soft); }
.np-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: rgba(255,255,255,0.05);
}
.np-bar {
    height: 100%; background: linear-gradient(90deg, var(--green), var(--mint));
    border-radius: 0 3px 3px 0; width: 0%;
    transition: width 1s linear;
}

/* ===== LORE STORY ===== */
.lore-story {
    display: flex; flex-direction: column;
    gap: 6px;
}
.lore-chapter {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: rgba(240,160,192,0.04);
    border: 1px solid rgba(240,160,192,0.06);
    transition: all 0.3s ease;
}
.lore-chapter:hover {
    background: rgba(240,160,192,0.08);
    border-color: rgba(240,160,192,0.15);
    transform: translateX(4px);
}
.lore-chapter-icon {
    font-size: 1.2rem; flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 4px var(--glow-pink));
}
.lore-chapter p {
    font-size: 0.82rem; line-height: 1.7;
    color: var(--text-soft); margin: 0;
}
.lore-chapter em { color: var(--pink-soft); font-style: italic; }
.lore-chapter strong { color: var(--text-main); font-weight: 600; }
.lore-closing {
    justify-content: center;
    border: none; background: none;
    padding: 8px 18px;
}
.lore-closing p {
    text-align: center;
    font-size: 0.88rem; font-weight: 600;
    color: var(--text-muted);
    font-style: italic;
}

/* VSONA Button */
.vsona-btn {
    display: flex; align-items: center; gap: 14px;
    margin-top: 14px; padding: 16px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(240,160,192,0.12);
    border-radius: var(--radius-sm);
    text-decoration: none; color: var(--text-main);
    transition: all 0.3s ease;
}
.vsona-btn:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,160,192,0.15);
}
.vsona-badge {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 6px var(--glow-pink));
}
.vsona-text {
    flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.vsona-text strong {
    font-size: 0.85rem; font-weight: 600;
}
.vsona-text small {
    font-size: 0.68rem; color: var(--text-muted);
}
.vsona-btn i {
    font-size: 0.7rem; color: var(--text-muted);
    transition: transform 0.3s ease;
}
.vsona-btn:hover i {
    transform: translateX(3px);
    color: var(--pink);
}

/* Lore section with sakura corners */
.lore-section {
    position: relative;
    overflow: visible;
}
.sakura-corner {
    position: absolute;
    font-size: 1.6rem;
    opacity: 0.25;
    pointer-events: none;
    filter: drop-shadow(0 0 8px var(--glow-pink));
}
.sakura-tl { top: 8px; left: 8px; }
.sakura-tr { top: 8px; right: 8px; }
.sakura-bl { bottom: 8px; left: 8px; }
.sakura-br { bottom: 8px; right: 8px; }

/* ===== CONTACT ===== */
.contact-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(240,160,192,0.12);
    border-radius: var(--radius-sm);
    text-decoration: none; color: var(--text-main);
    transition: all 0.3s ease;
}
.contact-card:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240,160,192,0.15);
}
.contact-card > i:first-child {
    font-size: 1.2rem; color: var(--pink);
    width: 28px; text-align: center;
}
.contact-text {
    flex: 1; display: flex; flex-direction: column; gap: 2px;
}
.contact-text strong { font-size: 0.85rem; font-weight: 600; }
.contact-text small { font-size: 0.72rem; color: var(--text-muted); }
.contact-card .link-arrow {
    font-size: 0.7rem; color: var(--text-muted);
    transition: transform 0.3s ease;
}
.contact-card:hover .link-arrow {
    transform: translateX(4px);
    color: var(--pink);
}

/* ===== LINK TREE ===== */
.link-tree { display: flex; flex-direction: column; gap: 8px; }
.link-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(240,160,192,0.08);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.88rem; font-weight: 500;
    transition: all 0.3s ease;
}
.link-item:hover {
    border-color: var(--pink);
    transform: translateX(6px);
    background: rgba(240,160,192,0.06);
}
.link-item i:first-child { font-size: 1.1rem; width: 24px; text-align: center; color: var(--pink); }
.link-item span { flex: 1; }
.link-arrow { font-size: 0.7rem; color: var(--text-muted); transition: transform 0.3s ease; }
.link-item:hover .link-arrow { transform: translateX(4px); color: var(--pink); }

/* ===== ART CREDITS ===== */
.credits-intro {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-bottom: 12px;
    font-style: italic;
}
.credits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.credit-card {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
    padding: 12px 8px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(109,189,138,0.1);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}
.credit-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(109,189,138,0.15);
}
.credit-role {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}
.credit-artist {
    font-size: 0.75rem;
    color: var(--text-main);
    font-weight: 600;
}



/* ===== CHAT EMBED ===== */
.chat-embed {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(240,160,192,0.1);
}
.chat-embed iframe {
    width: 100%; height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.site-footer {
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    padding: 32px 24px 48px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.footer-text {
    font-size: 0.72rem; color: var(--text-muted);
}
.footer-season {
    font-size: 0.65rem; color: var(--text-muted);
    opacity: 0.5;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: rgba(240,160,192,0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(240,160,192,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    :root { --avatar-size: 56px; }
    .hero { padding: 20px 18px; }
    .name { font-size: 1.25rem; }
    .bio-card { padding: 24px 20px; }
    .bio-quote { font-size: 0.9rem; }
    .schedule-item { padding: 12px 14px; gap: 10px; }
    .schedule-when { min-width: 50px; }
    .schedule-label { white-space: normal; }
    .lore-chapter { padding: 12px 14px; gap: 10px; }
    .credits-grid { grid-template-columns: repeat(2, 1fr); }
    .bottom-bar { flex-direction: column; gap: 14px; }
    .twitch-btn { width: 100%; justify-content: center; }
    .social-row { width: 100%; justify-content: center; }
    .countdown-unit span { font-size: 1.2rem; }
    .section { padding: 32px 18px; }
    .banner-strip { margin: -24px -20px 16px -20px; }
    .page3-layout { flex-direction: column; gap: 16px; padding: 0 18px; }
}
@media (max-width: 480px) {
    .status-pill { display: none; }
    .lore-chapter-icon { font-size: 1rem; }
    .credits-grid { grid-template-columns: 1fr; }
    .custom-cursor { display: none; }
}
