.hidden { display: none !important; }

@layer reset, tokens, base, components, scrapbook, widgets;

@layer tokens {
    :root {
        --pink-light: #FFF5F5;
        --glass: rgba(255, 209, 220, 0.4);
        --glass-dense: rgba(255, 209, 220, 0.85);
        --pink: #F6A6B2;
        --pink-dark: #D07B88;
        --pink-hover: #e895a2;
        --text: #2C181A;
        --text-faded: #624347;
        --grotesk: 'Satoshi', sans-serif;
        --serif: 'Fraunces', serif;
        --caveat: 'Caveat', cursive;
        --quicksand: 'Quicksand', sans-serif;
        --radii-blossom: 24px;
        --radii-pill: 9999px;
        --depth: 
            0 12px 32px rgba(246, 166, 178, 0.15),
            0 4px 12px rgba(246, 166, 178, 0.1),
            inset 0 1px 1px rgba(255, 255, 255, 0.8);
        --depth-hover: 
            0 24px 48px rgba(246, 166, 178, 0.25),
            0 8px 16px rgba(246, 166, 178, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 1);
        --spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
        --ease: cubic-bezier(0.25, 0.1, 0.25, 1.0);
    }
}
@layer reset {
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body {
        width: 100%;
        min-height: 100vh;
        background-color: var(--pink-light);
        color: var(--text);
        font-family: var(--grotesk);
        overflow-x: hidden;
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
    }
    button { border: none; background: transparent; cursor: pointer; font-family: inherit; color: inherit; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
}
@layer base {
    .top-nav {
        width: 100%;
        padding: 1.5rem 2rem;
        position: relative;
        z-index: 50;
        display: flex;
        justify-content: center;
    }
    .nav-links {
        display: flex;
        gap: 0.5rem;
        background: var(--glass);
        padding: 0.5rem 1rem;
        border-radius: var(--radii-pill);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(246, 166, 178, 0.5);
        box-shadow: 0 8px 24px rgba(246, 166, 178, 0.15);
    }
    .nav-item {
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--text-faded);
        transition: all 0.3s var(--spring);
        padding: 0.4rem 1.2rem;
        border-radius: var(--radii-pill);
        border: 1px solid transparent;
    }
    .nav-item:hover { 
        transform: translateY(-2px); 
        color: var(--pink-dark); 
    }
    .nav-item.active {
        color: var(--pink-dark);
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(246, 166, 178, 0.4);
        box-shadow: 0 2px 8px rgba(246, 166, 178, 0.15);
    }
    .main-wrap {
        position: relative;
        width: 100%;
        min-height: 100vh;
        padding: clamp(1rem, 4vw, 3rem) clamp(1rem, 5vw, 4rem);
        padding-bottom: clamp(10rem, 20vw, 15rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }
    .top-header {
        margin-bottom: clamp(2rem, 8vw, 4rem);
        text-align: center;
        position: relative;
        z-index: 10;
        mix-blend-mode: multiply;
    }
    .big-title {
        font-family: var(--serif);
        font-size: clamp(3rem, 8vw, 7rem);
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -0.03em;
        color: var(--pink-dark);
        text-shadow: 2px 4px 12px rgba(246, 166, 178, 0.3);
        transform: rotate(-2deg);
    }
    .tag-line {
        font-family: var(--caveat);
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        color: var(--text-faded);
        transform: rotate(2deg);
        margin-top: 0.5rem;
    }
}
@layer scrapbook {
    .bg-stuff {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }
    .floaty { position: absolute; will-change: transform; filter: drop-shadow(0 12px 24px rgba(246, 166, 178, 0.2)); }
    .pos-tl { top: 25%; left: -5%; width: clamp(150px, 20vw, 300px); transform: rotate(12deg); z-index: 2; }
    .pos-tr { top: 35%; right: -2%; width: clamp(120px, 15vw, 250px); transform: rotate(-15deg); z-index: 5; }
    .pos-ml { top: 55%; left: 5%; width: clamp(200px, 25vw, 400px); transform: rotate(45deg); opacity: 0.8; mix-blend-mode: multiply; z-index: 1; }
    .pos-mr { top: 75%; right: 10%; width: clamp(100px, 12vw, 200px); transform: rotate(-8deg); z-index: 12; }
    .pos-b { top: 85%; left: 35%; width: clamp(140px, 18vw, 280px); transform: rotate(6deg); z-index: 4; }
    .pos-b-75 { top: 75%; }
    .empty-feed-placeholder {
        grid-column: 1 / -1;
        text-align: center;
        padding: 4rem 2rem;
        background: var(--glass);
        border-radius: var(--radii-blossom);
        border: 1px dashed var(--pink);
    }
    .empty-feed-icon {
        font-size: 3rem;
        color: var(--pink-dark);
        margin-bottom: 2rem;
        opacity: 0.5;
    }
    .empty-feed-title {
        font-family: var(--serif);
        color: var(--text);
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .empty-feed-text {
        color: var(--text-faded);
        font-size: 1.1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    .pagination-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--grotesk);
        font-weight: 500;
        border-radius: 8px;
        border: 1px solid var(--glass);
        background: transparent;
        cursor: pointer;
        color: var(--text);
        transition: all 0.2s;
    }
    .pagination-btn:hover {
        background: var(--glass);
    }
    .pagination-btn-active {
        background: var(--pink);
        color: white;
        border-color: var(--pink);
    }
    .pagination-btn-disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    .pagination-btn-ellipsis {
        border: none;
        cursor: default;
    }
}
@layer components {
    .home-content {
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 4vw, 3rem);
        width: 100%;
        max-width: 800px;
        position: relative;
        z-index: 10;
        perspective: 1000px;
    }
    .section-label {
        font-family: var(--caveat);
        font-size: 1.5rem;
        color: var(--text-faded);
        text-align: center;
        margin-bottom: -1rem;
        transform: rotate(-3deg);
    }
    .ep-card {
        position: relative;
        border-radius: var(--radii-blossom);
        background: #FFE8EC;
        border: 2px solid var(--pink);
        padding: clamp(1.5rem, 4vw, 3rem);
        box-shadow: 
            0 12px 32px rgba(246, 166, 178, 0.2),
            inset 0 1px 1px rgba(255, 255, 255, 0.8);
        transform: rotate(1deg) translate3d(0,0,0);
        transition: transform 0.6s var(--spring), box-shadow 0.6s var(--spring), border-color 0.3s;
        cursor: pointer;
    }
    .ep-card:hover {
        transform: scale(1.02) translateY(-8px) rotate(0deg) translate3d(0,0,0);
        box-shadow: var(--depth-hover);
        z-index: 15;
    }
    .panda-reveal {
        position: absolute;
        top: -15%;
        right: -2%;
        width: clamp(100px, 15vw, 150px);
        transform-origin: bottom center;
        transform: scale(0.8) translateY(40px) translateX(-20px) rotate(15deg);
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s var(--spring);
        z-index: -1;
    }
    .ep-card:hover .panda-reveal {
        opacity: 1;
        transform: scale(1) translateY(-40px) translateX(20px) rotate(5deg);
    }
    .ep-content { display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; position: relative; z-index: 2; }
    .ep-meta-group {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 0.5rem;
    }
    .ep-date {
        font-family: var(--grotesk);
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-faded);
        opacity: 0.8;
        letter-spacing: 0.05em;
        margin-left: 0.2rem;
    }
    .status-pill {
        font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
        padding: 0.4rem 1rem; border-radius: var(--radii-pill);
        background: var(--pink); color: white; box-shadow: 0 4px 12px rgba(246, 166, 178, 0.4);
    }
    .ep-title {
        font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem);
        line-height: 1; letter-spacing: -0.02em; color: var(--text);
        margin-left: -0.05em; 
    }
    .ep-desc { font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--text-faded); font-weight: 400; }
    .listen-btn {
        margin-top: 0.5rem; font-weight: 700; font-size: 1.1rem; color: var(--pink-dark);
        padding: 0.5rem 0; border-bottom: 2px solid transparent; transition: border-color 0.3s;
        display: inline-flex; align-items: center; gap: 0.4rem;
    }
    .ep-card:hover .listen-btn { border-color: var(--pink-dark); }
    .transition-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
    }
    .transition-blossom {
        width: clamp(120px, 25vw, 300px);
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
        will-change: transform, opacity;
        filter: drop-shadow(0 12px 24px rgba(246, 166, 178, 0.4));
    }
    .asym-feed {
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 5vw, 4rem);
        width: 100%;
        max-width: 800px;
        margin-top: 1rem;
        position: relative;
        z-index: 10;
        perspective: 1000px;
    }
    .asym-feed .ep-card:nth-child(even) {
        align-self: flex-end;
        transform: translateX(20px) rotate(2deg) translate3d(0,0,0);
        max-width: 90%;
    }
    .asym-feed .ep-card:nth-child(even):hover {
        transform: translateX(20px) scale(1.02) translateY(-8px) rotate(0deg) translate3d(0,0,0);
    }
    .asym-feed .ep-card:nth-child(odd) {
        align-self: flex-start;
        transform: translateX(-20px) rotate(-1deg) translate3d(0,0,0);
        max-width: 90%;
    }
    .asym-feed .ep-card:nth-child(odd):hover {
        transform: translateX(-20px) scale(1.02) translateY(-8px) rotate(0deg) translate3d(0,0,0);
    }
    .ep-row-double {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(1.5rem, 5vw, 3rem);
        width: 100%;
        margin-bottom: 1rem;
    }
    .ep-row-double > .ep-card:nth-child(odd),
    .ep-row-double > .ep-card:nth-child(even) {
        transform: rotate(1deg) translate3d(0,0,0) !important;
        max-width: 100% !important;
        align-self: stretch !important;
    }
    .ep-row-double > .ep-card:nth-child(odd):hover,
    .ep-row-double > .ep-card:nth-child(even):hover {
        transform: scale(1.02) translateY(-8px) rotate(0deg) translate3d(0,0,0) !important;
    }
    .sticker {
        position: absolute;
        width: clamp(80px, 12vw, 130px);
        pointer-events: none;
        z-index: 20;
        filter: drop-shadow(0 8px 16px rgba(246, 166, 178, 0.3));
    }
    .sticker-top-right { top: -40px; right: -30px; transform: rotate(15deg); }
    .sticker-bottom-right { bottom: -30px; right: -30px; transform: rotate(-15deg); }
    .sticker-bottom-left { bottom: -30px; left: -40px; transform: rotate(-25deg); }
    .ep-card.is-active-episode {
        border: 2px solid var(--pink);
    }
    .compact-header { margin-bottom: 2rem; }
    .compact-header .big-title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
    .asym-feed.simplified-view {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .asym-feed.simplified-view .ep-row-double {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0;
    }
    .asym-feed.simplified-view .ep-card {
        max-width: 100% !important;
        transform: rotate(0deg) translate3d(0,0,0) !important;
        border-radius: var(--radii-pill);
        padding: 1rem 2.5rem;
        align-self: stretch !important;
        background: #FFE8EC;
        border: 2px solid var(--pink);
    }
    .asym-feed.simplified-view .ep-card:hover {
        transform: translateY(-4px) rotate(0deg) translate3d(0,0,0) !important;
        border-color: var(--pink-dark);
        background: white;
    }
    .asym-feed.simplified-view .ep-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 1.5rem;
        row-gap: 0.2rem;
        align-items: center;
        width: 100%;
    }
    .asym-feed.simplified-view .ep-meta-group {
        grid-column: 1;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        width: auto;
    }
    .asym-feed.simplified-view .ep-date {
        font-size: 0.75rem;
        margin: 0;
    }
    .asym-feed.simplified-view .status-pill {
        margin: 0;
    }
    .asym-feed.simplified-view .ep-title {
        grid-column: 2;
        grid-row: 1;
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin: 0;
        align-self: end;
    }
    .asym-feed.simplified-view .ep-desc {
        grid-column: 2;
        grid-row: 2;
        font-size: 1rem;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        align-self: start;
    }
    .asym-feed.simplified-view .listen-btn {
        grid-column: 3;
        grid-row: 1 / 3;
        margin: 0;
    }
    .asym-feed.simplified-view .sticker {
        display: none;
    }
    @media (max-width: 768px) {
        .asym-feed.simplified-view .ep-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        .asym-feed.simplified-view .ep-desc {
            white-space: normal;
        }
        .asym-feed.simplified-view .ep-card {
            border-radius: var(--radii-blossom);
        }
    }
    .ep-toolbar {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 800px;
        margin-bottom: 2.5rem;
        position: relative;
        z-index: 100;
        background: var(--glass);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 0.75rem 1.5rem;
        border-radius: var(--radii-pill);
        border: 1px solid rgba(246, 166, 178, 0.5);
        box-shadow: 0 8px 24px rgba(246, 166, 178, 0.15);
    }
    .search-wrapper {
        position: relative;
        flex-grow: 1;
        min-width: 200px;
        display: flex;
        align-items: center;
    }
    .search-icon {
        position: absolute;
        left: 1rem;
        color: var(--text-faded);
        font-size: 1.2rem;
        pointer-events: none;
    }
    .ep-search-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(246, 166, 178, 0.6);
        box-shadow: inset 0 2px 4px rgba(246, 166, 178, 0.1);
        padding: 0.75rem 1rem 0.75rem 2.8rem;
        border-radius: var(--radii-pill);
        font-family: var(--grotesk);
        font-size: 1rem;
        color: var(--text);
        outline: none;
        transition: all 0.3s var(--spring);
    }
    .ep-search-input:focus {
        background: white;
        border-color: var(--pink);
        box-shadow: 0 4px 12px rgba(246, 166, 178, 0.2);
    }
    .ep-search-input::placeholder {
        color: var(--text-faded);
        opacity: 0.8;
    }
    .toolbar-actions {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }
    .tool-btn {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(246, 166, 178, 0.6);
        padding: 0.6rem 1.2rem;
        border-radius: var(--radii-pill);
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--text);
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        transition: all 0.3s var(--spring);
    }
    .tool-btn:hover {
        background: white;
        color: var(--pink-dark);
        transform: translateY(-2px);
        border-color: var(--pink);
        box-shadow: 0 4px 12px rgba(246, 166, 178, 0.2);
    }
    .dropdown-wrapper {
        position: relative;
    }
    .custom-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 0.5rem;
        background: var(--glass);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(246, 166, 178, 0.5);
        border-radius: var(--radii-blossom);
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        min-width: 180px;
        box-shadow: 0 8px 24px rgba(246, 166, 178, 0.15);
        opacity: 1;
        transition: opacity 0.3s var(--spring), transform 0.3s var(--spring);
        z-index: 1000;
        transform-origin: top right;
    }
    .custom-dropdown.hidden {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        pointer-events: none;
    }
    .drop-item {
        background: transparent;
        padding: 0.6rem 1rem;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--text-faded);
        text-align: left;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s;
    }
    .drop-item i {
        font-size: 1.1rem;
    }
    .drop-item:hover, .drop-item.active {
        background: rgba(255, 255, 255, 0.8);
        color: var(--pink-dark);
    }
    .mr-4 { margin-right: 4px; }
    .mr-6 { margin-right: 6px; }
    .mr-8 { margin-right: 8px; }
    .pagination-matrix-layout {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
}
@layer widgets {
    .teaser-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(1rem, 3vw, 2rem);
        margin-top: 1rem;
    }
    .teaser-card {
        border-radius: var(--radii-blossom);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: clamp(1.5rem, 3vw, 2.5rem);
        display: flex;
        flex-direction: column;
        box-shadow: var(--depth);
        transition: transform 0.4s var(--spring), box-shadow 0.4s var(--spring);
        position: relative;
        overflow: hidden;
    }
    .teaser-card.archive-card {
        background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(200, 220, 255, 0.3) 100%);
    }
    .teaser-card.box-mail {
        border-style: dashed;
        border-color: var(--pink);
        background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255, 220, 200, 0.3) 100%);
    }
    .teaser-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--depth-hover);
    }
    .teaser-title {
        font-family: var(--serif);
        font-size: 1.8rem;
        color: var(--text);
        margin-bottom: 0.5rem;
        display: flex; align-items: center; gap: 0.5rem;
    }
    .teaser-desc {
        color: var(--text-faded);
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .cursive-text {
        font-family: var(--caveat);
        font-size: 1.4em;
        color: var(--pink-dark);
    }
    .teaser-arrow {
        margin-top: auto;
        font-weight: 700;
        color: var(--pink-dark);
        align-self: flex-start;
        transition: transform 0.2s;
        display: flex; align-items: center;
    }
    .teaser-card:hover .teaser-arrow { transform: translateX(4px); }
    .toast-container {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        z-index: 10000;
        pointer-events: none;
    }
    .toast-node {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--pink);
        border-radius: 16px;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 12px 32px rgba(246, 166, 178, 0.2);
        transform: translateX(120%);
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s linear;
        opacity: 0;
        pointer-events: auto;
        min-width: 300px;
    }
    .toast-node.show {
        transform: translateX(0);
        opacity: 1;
    }
    .toast-icon {
        width: 32px;
        height: 32px;
        background: var(--pink);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    .toast-content h4 {
        font-family: var(--serif);
        font-size: 1.1rem;
        color: var(--text);
        margin: 0;
    }
    .toast-content p {
        font-size: 0.9rem;
        color: var(--text-faded);
        margin: 2px 0 0 0;
    }
    .player-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 90px;
        background: #121212;
        border-top: 1px solid #282828;
        display: grid;
        grid-template-columns: 320px 1fr 320px;
        align-items: center;
        padding: 0 1.5rem;
        z-index: 2000;
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s, height 0.4s var(--ease), background 0.4s linear;
        color: white;
    }
    .player-bar.continue-mode {
        height: 60px;
        background: rgba(18, 18, 18, 0.7);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        grid-template-columns: 1fr; 
    }
    .player-bar.continue-mode .player-left,
    .player-bar.continue-mode .player-center,
    .player-bar.continue-mode .player-right {
        display: none;
    }
    .player-bar.hide-player {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }
    .player-left {
        display: flex;
        align-items: center;
        gap: 1rem;
        min-width: 0;
    }
    .player-thumb-container {
        width: 56px;
        height: 56px;
        border-radius: 4px;
        overflow: hidden;
        flex-shrink: 0;
        background: #282828;
    }
    .player-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .track-info {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }
    .track-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: white;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .track-artist {
        font-size: 0.75rem;
        color: #b3b3b3;
        font-weight: 500;
    }
    .player-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 722px;
        margin: 0 auto;
    }
    .playback-controls {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 8px;
    }
    .player-btn {
        background: none;
        border: none;
        color: #b3b3b3;
        font-size: 1.25rem;
        cursor: pointer;
        transition: color 0.2s, transform 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .player-btn:hover {
        color: white;
        transform: scale(1.05);
    }
    .player-btn.main-play {
        width: 44px;
        height: 44px;
        background: transparent;
        color: white;
        border: 2px solid white;
        border-radius: 50%;
        font-size: 1.4rem;
        transition: all 0.3s var(--ease);
    }
    .player-btn.main-play:hover {
        transform: scale(1.1);
        background: var(--pink); 
        border-color: var(--pink);
        color: white;
    }
    .progress-wrapper {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
    }
    .time-stamp {
        font-size: 0.7rem;
        color: #b3b3b3;
        min-width: 35px;
    }
    .progress-bar-container {
        flex: 1;
        height: 4px;
        background: #4d4d4d;
        border-radius: 2px;
        position: relative;
        cursor: pointer;
    }
    .progress-bar {
        height: 100%;
        background: #f6a6b2; 
        border-radius: 2px;
        width: 0%;
        transition: width 150ms linear; 
        position: relative;
    }
    .progress-bar-container:hover .progress-bar {
        background: #f17a8e;
    }
    .player-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 1.2rem;
    }
    .speed-module {
        position: relative;
    }
    .speed-trigger {
        background: none;
        border: none;
        color: #b3b3b3;
        font-size: 0.85rem;
        font-weight: 700;
        cursor: pointer;
        transition: color 0.2s;
    }
    .speed-trigger:hover { color: white; }
    .speed-menu {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        background: #282828;
        border-radius: 4px;
        padding: 4px;
        display: none;
        flex-direction: column;
        box-shadow: 0 8px 16px rgba(0,0,0,0.5);
        min-width: 80px;
    }
    .speed-menu.show { display: flex; }
    .speed-menu button {
        background: none;
        border: none;
        color: #b3b3b3;
        padding: 8px;
        text-align: left;
        cursor: pointer;
        font-size: 0.8rem;
        border-radius: 2px;
    }
    .speed-menu button:hover { background: #3e3e3e; color: white; }
    .speed-menu button.active { color: #f6a6b2; }
    .volume-module {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }
    .vol-btn {
        background: none;
        border: none;
        color: #b3b3b3;
        font-size: 1.2rem;
        cursor: pointer;
        transition: color 0.2s;
    }
    .vol-btn:hover { color: white; }
    .volume-slider-tray {
        width: 0;
        overflow: hidden;
        transition: width 0.3s ease, opacity 0.3s ease;
        display: flex;
        align-items: center;
        opacity: 0;
        pointer-events: none;
    }
    .volume-slider-tray.show {
        width: 100px;
        opacity: 1;
        pointer-events: auto;
    }
    #volume-slider {
        -webkit-appearance: none;
        width: 100%;
        height: 6px;
        background: linear-gradient(to right, #fff 0%, #fff var(--volume-percent, 100%), #4d4d4d var(--volume-percent, 100%), #4d4d4d 100%);
        border-radius: 3px;
        outline: none;
        cursor: pointer;
    }
    #volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 14px;
        height: 14px;
        background: white;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }
    .close-player {
        margin-left: 10px;
        opacity: 0.5;
    }
    .close-player:hover { opacity: 1; }
    .skip-lbl {
        position: absolute; font-size: 0.55rem; font-family: var(--grotesk); font-weight: 800; top: 50%; left: 50%; transform: translate(-50%, -50%);
        color: white; pointer-events: none; padding-top: 1px;
    }
    .player-btn:hover .skip-lbl { color: var(--text); }
    .progress-wrapper {
        display: flex; align-items: center; gap: 1rem; width: 100%; font-family: var(--grotesk); font-variant-numeric: tabular-nums; font-size: 0.9rem; font-weight: 700; color: var(--text-faded);
    }
    .progress-bar-container {
        flex: 1; height: 8px; background: rgba(246, 166, 178, 0.15); border-radius: 6px;
        cursor: pointer; position: relative; transition: height 0.3s;
    }
    .progress-bar-container:hover { height: 10px; }
    .progress-bar {
        position: absolute; left: 0; top: 0; height: 100%; width: 0%;
        background: linear-gradient(90deg, var(--pink), var(--pink-dark));
        border-radius: 6px; 
    }
    .progress-bar::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%) scale(1);
        width: 16px;
        height: 16px;
        background: white;
        border: 3px solid var(--pink);
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(208, 123, 136, 0.3);
        transition: transform 0.3s var(--spring);
    }
    .player-right {
        display: flex; align-items: center; gap: 1rem; flex: 1; justify-content: flex-end;
    }
    .speed-toggle { font-family: var(--grotesk); font-weight: 800; font-size: 0.9rem; color: var(--pink-dark); opacity: 0.8; transition: all 0.3s; }
    .speed-toggle:hover { opacity: 1; transform: translateY(-1px); }
    @media (max-width: 650px) {
        .player-left { display: none; } 
        .player-btn { width: 36px; height: 36px; font-size: 1.1rem; }
        .player-btn.main-play { width: 44px; height: 44px; font-size: 1.3rem; }
        .skip-lbl { font-size: 0.55rem; }
    }
    .mail-instructions {
        font-family: var(--caveat);
        font-size: 1.4rem;
        color: var(--text-faded);
        text-align: center;
        margin-bottom: 2rem;
    }
    .nav-style-box {
        background: var(--glass);
        border: 1px solid rgba(246, 166, 178, 0.5);
        border-radius: var(--radii-blossom);
        padding: clamp(2rem, 5vw, 4rem);
        max-width: 650px;
        box-shadow: 0 8px 24px rgba(246, 166, 178, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        align-self: center;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .nav-style-box.hidden { display: none !important; }
    .interaction-pod {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .interaction-pod.hidden { display: none !important; }
    .recorder-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }
    .recorder-state.hidden { display: none !important; }
    .marshmallow-btn {
        width: clamp(120px, 18vw, 160px);
        height: clamp(120px, 18vw, 160px);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(246, 166, 178, 0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: inset 0 2px 4px rgba(246, 166, 178, 0.1);
        transition: all 0.4s var(--spring);
    }
    .marshmallow-btn:hover {
        transform: scale(1.05) translateY(-5px);
        background: white;
        border-color: var(--pink);
        box-shadow: 0 4px 12px rgba(246, 166, 178, 0.2);
    }
    .marshmallow-btn.is-recording {
        transform: scale(0.95);
        background: white;
        border-color: var(--pink);
        box-shadow: inset 0 4px 8px rgba(246, 166, 178, 0.2);
    }
    .mic-icon {
        font-size: 45px;
        color: var(--pink-dark);
        opacity: 0.8;
    }
    .blood-dot {
        width: 35%;
        height: 35%;
        background: #D2122E;
        border-radius: 8px;
    }
    .rec-label {
        font-family: var(--caveat);
        font-size: 1.8rem;
        color: var(--text);
        transform: rotate(-2deg);
        opacity: 0.9;
    }
    .hand-timer {
        font-family: var(--caveat);
        font-size: 3rem;
        color: #D2122E;
        text-shadow: 0 2px 8px rgba(210, 18, 46, 0.2);
    }
    .wave-visualizer {
        display: flex;
        align-items: center;
        gap: 6px;
        height: 50px;
        margin-bottom: -10px;
    }
    .wave-visualizer .bar {
        width: 8px;
        background: #D2122E;
        border-radius: var(--radii-pill);
        height: 10px;
        transition: height 0.05s linear;
        box-shadow: 0 2px 8px rgba(210, 18, 46, 0.3);
    }
    .review-layout {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem 1.5rem;
        border-radius: var(--radii-pill);
        border: 1px solid rgba(246, 166, 178, 0.6);
        box-shadow: inset 0 2px 4px rgba(246, 166, 178, 0.1);
    }
    .toggle-play-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--pink);
        color: white;
        display: flex; align-items: center; justify-content: center;
        padding: 0;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(246, 166, 178, 0.3);
    }
    .toggle-play-btn i {
        font-size: 1.6rem;
    }
    .custom-playback-track {
        flex-grow: 1;
        height: 8px;
        background: rgba(255,255,255,0.8);
        border-radius: 4px;
        position: relative;
        overflow: hidden;
    }
    .custom-playback-fill {
        position: absolute; left: 0; top: 0; height: 100%; width: 0%;
        background: var(--pink);
        border-radius: 4px;
        pointer-events: none;
    }
    .icon-action-btn {
        width: 40px; height: 40px; border-radius: 50%;
        background: transparent; color: var(--text-faded);
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; transition: all 0.2s;
    }
    .icon-action-btn:hover {
        background: rgba(255,255,255,0.8); color: var(--pink-dark);
        transform: scale(1.1);
    }
    .hidden-audio { display: none; }
    .submission-area {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px dashed rgba(246, 166, 178, 0.4);
    }
    .cloud-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(246, 166, 178, 0.6);
        box-shadow: inset 0 2px 4px rgba(246, 166, 178, 0.1);
        border-radius: var(--radii-pill);
        padding: 1rem 1.5rem;
        font-family: var(--grotesk);
        font-size: 1.1rem;
        color: var(--text);
        outline: none;
        transition: all 0.3s var(--spring);
    }
    .cloud-input:focus {
        border-color: var(--pink);
        background: white;
    }
    .cloud-send-btn {
        background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: var(--radii-pill);
        font-weight: 700;
        font-size: 1.1rem;
        letter-spacing: 0.05em;
        box-shadow: 0 8px 24px rgba(246, 166, 178, 0.4);
        transition: all 0.3s var(--spring);
        width: 100%;
    }
    .cloud-send-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(246, 166, 178, 0.6);
    }
    .drawer-container {
        width: 100%;
        max-width: 600px;
        margin: 1.5rem auto 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .drawer-trigger {
        background: transparent;
        color: var(--text-faded);
        font-family: var(--grotesk);
        font-size: 1.1rem;
        font-weight: 700;
        display: flex; align-items: center; gap: 0.5rem;
        padding: 0.5rem 1rem;
        transition: color 0.3s;
    }
    .drawer-trigger:hover { color: var(--pink-dark); }
    .drawer-content {
        width: 100%;
        margin-top: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeSlideDown 0.4s var(--spring);
    }
    @keyframes fadeSlideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-style-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(246, 166, 178, 0.6);
        box-shadow: inset 0 2px 4px rgba(246, 166, 178, 0.1);
        border-radius: var(--radii-pill);
        padding: 1.2rem 1.5rem;
        font-family: var(--grotesk);
        font-size: 1.1rem;
        color: var(--text);
        outline: none;
        transition: all 0.3s var(--spring);
        margin-bottom: 1rem;
    }
    .nav-style-input:focus {
        background: white;
        border-color: var(--pink);
        box-shadow: 0 4px 12px rgba(246, 166, 178, 0.2);
    }
    .anony-footer-text {
        font-family: var(--grotesk);
        font-size: 0.9rem;
        color: var(--text-faded);
        margin-top: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        opacity: 0.8;
    }
    .outline-variant {
        background: rgba(255,255,255,0.7);
        color: var(--pink-dark);
        border: 2px solid var(--pink);
        box-shadow: none;
    }
    .outline-variant:hover {
        background: white;
        box-shadow: 0 8px 24px rgba(246, 166, 178, 0.3);
    }
    .nav-style-canvas {
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(246, 166, 178, 0.6);
        box-shadow: inset 0 2px 4px rgba(246, 166, 178, 0.1);
        border-radius: var(--radii-blossom);
        padding: 1.5rem;
        margin-bottom: 2rem;
        transition: all 0.3s var(--spring);
    }
    .nav-style-canvas:focus-within {
        background: white;
        border-color: var(--pink);
        box-shadow: 0 4px 12px rgba(246, 166, 178, 0.2);
    }
    #text-inquiry {
        width: 100%;
        height: 200px;
        background: transparent;
        border: none;
        resize: none;
        font-family: var(--caveat);
        font-size: 1.8rem;
        line-height: 1.5;
        color: var(--text);
        outline: none;
    }
    #text-inquiry::placeholder { color: var(--text-faded); opacity: 0.5; }
    .text-meta {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-top: 1rem;
        font-size: 1rem;
        color: var(--text-faded);
        font-weight: 700;
        border-top: 1px dashed rgba(246, 166, 178, 0.4);
        padding-top: 0.5rem;
    }
    .sent-message {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .sent-message i { font-size: 4rem; color: var(--pink); margin-bottom: 1rem; }
    .sent-message h2 { font-family: var(--serif); font-size: 3rem; color: var(--text); }
    .sent-message p { font-size: 1.2rem; color: var(--text-faded); margin-bottom: 2rem;}
    .interaction-pod {
        transition: transform 0.5s var(--spring), opacity 0.5s linear;
    }
    .interaction-pod.resetting {
        opacity: 0;
        transform: scale(0.95);
    }
    .continue-prompt {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        inset: 0;
        padding: 0 2rem;
        z-index: 2001;
    }
    .continue-content {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        font-family: var(--font-sans);
    }
    .continue-text {
        font-size: 0.95rem;
        color: #ddd;
    }
    .continue-text strong {
        color: white;
        font-weight: 700;
    }
    .continue-actions {
        display: flex;
        gap: 0.8rem;
    }
    .continue-btn {
        padding: 8px 20px;
        border-radius: 20px;
        border: none;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
    }
    .continue-btn.yes {
        background: var(--pink);
        color: white;
    }
    .continue-btn.yes:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
    }
    .continue-btn.no {
        background: rgba(255,255,255,0.1);
        color: white;
    }
    .continue-btn.no:hover {
        background: rgba(255,255,255,0.2);
    }
}
