:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --gold: #c8a96e;
    --gold-light: #e2d1a6;
    --gold-dark: #9f824c;
    --text: #f5f2eb;
    --text-muted: #b9b0a2;
    --text-dim: #6a6256;
    --white: #fcfaf7;
    --poem-color: #e4d5b6;
    --poem-glow: rgba(200, 169, 110, 0.45);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-magazine: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', 'Noto Serif SC', serif;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
    opacity: 0;
    transition: opacity 1.8s ease;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 200;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 4px 4px;
    mix-blend-mode: overlay;
    opacity: 0.7;
}

.poem-rain-layer {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.poem-drop {
    position: absolute;
    top: -40px;
    white-space: nowrap;
    font-family: 'ZCOOL XiaoWei', 'Noto Serif SC', 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--poem-color);
    text-shadow: 0 0 25px var(--poem-glow), 0 0 50px rgba(200, 169, 110, 0.15);
    pointer-events: none;
    will-change: transform, opacity;
    animation: poemFall var(--fall-duration) var(--fall-delay) linear forwards;
    opacity: 0;
    font-size: var(--font-size);
}

@keyframes poemFall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(0.6);
        opacity: 0;
    }
    4% {
        opacity: 0.65;
        transform: translateY(4vh) translateX(calc(var(--sway-1) * 1px)) rotate(calc(var(--rotate-1) * 0.4deg)) scale(0.8);
    }
    10% {
        opacity: 0.8;
        transform: translateY(10vh) translateX(calc(var(--sway-2) * 1px)) rotate(calc(var(--rotate-2) * 0.6deg)) scale(0.9);
    }
    20% {
        opacity: 0.85;
        transform: translateY(20vh) translateX(calc(var(--sway-3) * 1px)) rotate(calc(var(--rotate-3) * 0.7deg)) scale(1);
    }
    35% {
        opacity: 0.75;
        transform: translateY(35vh) translateX(calc(var(--sway-4) * 1px)) rotate(calc(var(--rotate-4) * 0.5deg)) scale(0.98);
    }
    50% {
        opacity: 0.6;
        transform: translateY(50vh) translateX(calc(var(--sway-5) * 1px)) rotate(calc(var(--rotate-5) * 0.3deg)) scale(0.93);
    }
    65% {
        opacity: 0.4;
        transform: translateY(65vh) translateX(calc(var(--sway-6) * 1px)) rotate(calc(var(--rotate-6) * 0.2deg)) scale(0.88);
    }
    80% {
        opacity: 0.2;
        transform: translateY(80vh) translateX(calc(var(--sway-7) * 1px)) rotate(calc(var(--rotate-7) * 0.1deg)) scale(0.82);
    }
    95% {
        opacity: 0.05;
        transform: translateY(95vh) translateX(calc(var(--sway-8) * 0.4px)) rotate(0deg) scale(0.78);
    }
    100% {
        transform: translateY(105vh) translateX(0) rotate(0deg) scale(0.75);
        opacity: 0;
    }
}

.particles-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.28;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold-light);
    animation: floatUp var(--dur) var(--delay) infinite ease-in;
    opacity: 0;
    pointer-events: none;
    filter: blur(0.6px);
}

@keyframes floatUp {
    0% {
        transform: translateY(105vh) translateX(0) scale(0);
        opacity: 0;
    }
    12% {
        opacity: 0.6;
    }
    35% {
        opacity: 0.3;
        transform: translateY(60vh) translateX(var(--drift)) scale(1);
    }
    65% {
        opacity: 0.12;
    }
    90% {
        opacity: 0.02;
    }
    100% {
        transform: translateY(-8vh) translateX(var(--drift-end)) scale(1.4);
        opacity: 0;
    }
}

.app-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.magazine-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 2.8rem;
    pointer-events: none;
    transition: all 0.6s var(--transition-smooth);
    opacity: 0;
    animation: fadeInDown 1.2s 0.5s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.magazine-header .issue-info {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
    text-shadow: 0 0 12px rgba(226, 209, 166, 0.18);
}

.magazine-header .brand-title {
    font-family: 'Playfair Display', 'Noto Serif SC', serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 0 30px rgba(200, 169, 110, 0.25);
    transition: all 0.6s var(--transition-smooth);
}

.magazine-header .page-num {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--text-dim);
    font-weight: 300;
}

.magazine-header .decorative-line {
    position: absolute;
    bottom: 0;
    left: 2.8rem;
    right: 2.8rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.5), transparent);
    opacity: 0.6;
    transition: all 0.6s var(--transition-smooth);
}

.main-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1800px;
}

.style-showcase {
    position: absolute;
    width: 86vw;
    max-width: 1200px;
    height: 76vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    gap: 2.4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px) scale(0.95);
    filter: blur(6px);
    transition: all 0.8s var(--transition-magazine);
    will-change: transform, opacity, filter;
}

.style-showcase.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    filter: blur(0);
}

.style-showcase.exit-left {
    opacity: 0;
    transform: translateX(-70px) scale(0.93);
    filter: blur(10px);
    transition: all 0.6s var(--transition-magazine);
}

.style-showcase.exit-right {
    opacity: 0;
    transform: translateX(70px) scale(0.93);
    filter: blur(10px);
    transition: all 0.6s var(--transition-magazine);
}

.showcase-image-wrapper {
    position: relative;
    flex: 0 0 58%;
    height: 100%;
    overflow: hidden;
    border-radius: 1px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.65), 0 10px 25px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(200, 169, 110, 0.13);
    transition: box-shadow 0.8s ease;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.12), rgba(20, 20, 20, 0.9));
}

.style-showcase.active .showcase-image-wrapper {
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.7), 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 169, 110, 0.2);
}

.showcase-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.9s ease, filter 0.9s ease;
    will-change: opacity, transform;
}

.showcase-main-image.is-portrait {
    object-fit: contain;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(10, 10, 10, 0.88));
}

.showcase-main-image.is-missing {
    object-fit: contain;
    padding: 2rem;
    opacity: 0.9;
}

.showcase-image-wrapper .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
    z-index: 2;
}

.showcase-image-wrapper .gold-border {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(200, 169, 110, 0.25);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.9s ease;
    box-shadow: inset 0 0 30px rgba(200, 169, 110, 0.08);
}

.style-showcase.active .gold-border {
    opacity: 1;
    transition: opacity 1.3s ease 0.4s;
}

.showcase-text-panel {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem 0;
    position: relative;
}

.style-number {
    font-family: 'Playfair Display', serif;
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold-dark);
    text-stroke: 1.5px var(--gold-dark);
    opacity: 0.25;
    letter-spacing: -0.02em;
    margin-bottom: -0.4rem;
    transition: all 0.7s var(--transition-smooth);
}

.style-showcase.active .style-number {
    opacity: 0.4;
    transition: all 0.9s ease 0.25s;
}

.style-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.7s ease 0.15s;
}

.style-showcase.active .style-label {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease 0.4s;
}

.style-title {
    font-family: 'Noto Serif SC', 'Playfair Display', serif;
    font-size: 2.45rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1.24;
    margin-bottom: 0.72rem;
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.7s ease 0.2s;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.style-showcase.active .style-title {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease 0.5s;
}

.style-subtitle {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-size: 1.02rem;
    font-style: italic;
    color: rgba(226, 209, 166, 0.86);
    letter-spacing: 0.04em;
    line-height: 1.65;
    margin-bottom: 1.15rem;
    max-width: 340px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(14px);
    transition: all 0.7s ease 0.25s;
}

.style-showcase.active .style-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease 0.6s;
}

.style-description {
    font-family: 'Jost', 'Noto Serif SC', sans-serif;
    font-size: 0.84rem;
    line-height: 1.82;
    color: rgba(245, 242, 235, 0.82);
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.7s ease 0.3s;
    max-width: 350px;
}

.style-showcase.active .style-description {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease 0.65s;
}

.divider-dot {
    display: flex;
    gap: 7px;
    margin-bottom: 1.4rem;
    opacity: 0;
    transition: all 0.7s ease 0.35s;
}

.style-showcase.active .divider-dot {
    opacity: 1;
    transition: all 0.7s ease 0.7s;
}

.divider-dot span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    display: block;
    opacity: 0.7;
}

.divider-dot span:nth-child(2) {
    width: 22px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.meta-info {
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
    text-shadow: 0 0 12px rgba(226, 209, 166, 0.16);
    opacity: 0;
    transition: all 0.7s ease 0.4s;
}

.style-showcase.active .meta-info {
    opacity: 1;
    transition: all 0.7s ease 0.75s;
}

.style-navigation {
    position: fixed;
    bottom: 2.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 50px;
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 169, 110, 0.08);
    transition: all 0.5s var(--transition-smooth);
    animation: fadeInUp 1.2s 0.8s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.45s var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-dot:hover {
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(200, 169, 110, 0.35);
    transform: translateY(-4px);
    background: rgba(200, 169, 110, 0.08);
}

.nav-dot:active {
    transform: scale(0.9);
    transition: all 0.12s ease;
}

.nav-dot.active {
    border-color: var(--gold);
    background: rgba(200, 169, 110, 0.18);
    box-shadow: 0 0 40px rgba(200, 169, 110, 0.5);
    width: 52px;
    height: 52px;
}

.nav-dot .dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.45s var(--transition-bounce);
}

.nav-dot.active .dot-inner {
    background: var(--gold-light);
    width: 11px;
    height: 11px;
    box-shadow: 0 0 20px var(--gold);
}

.nav-separator {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.4rem;
    border-radius: 1px;
}

.nav-label-mini {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    text-transform: uppercase;
    padding: 0 0.7rem;
    transition: all 0.5s ease;
    cursor: default;
}

.music-player {
    position: fixed;
    bottom: 2.8rem;
    right: 2.8rem;
    z-index: 101;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.45rem 1.2rem 0.45rem 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(200, 169, 110, 0.1);
    cursor: pointer;
    transition: all 0.5s var(--transition-smooth);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    animation: fadeInRight 1.2s 1s forwards;
    opacity: 0;
    appearance: none;
    -webkit-appearance: none;
    color: inherit;
    font: inherit;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.music-player:hover {
    border-color: rgba(200, 169, 110, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 35px rgba(200, 169, 110, 0.25);
}

.music-player.playing {
    border-color: rgba(200, 169, 110, 0.7);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(200, 169, 110, 0.35);
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition-bounce);
    flex-shrink: 0;
    position: relative;
    pointer-events: none;
}

.music-player:hover .play-btn {
    background: rgba(200, 169, 110, 0.35);
    transform: scale(1.1);
}

.music-player:active .play-btn {
    transform: scale(0.88);
    transition: all 0.1s ease;
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--gold-light);
    margin-left: 3px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(200, 169, 110, 0.4));
}

.music-player.playing .play-icon {
    border-width: 0;
    width: 9px;
    height: 13px;
    border-left: 3px solid var(--gold-light);
    border-right: 3px solid var(--gold-light);
    margin-left: 0;
    border-radius: 1px;
    filter: none;
}

.music-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
}

.music-wave .bar {
    width: 2.8px;
    border-radius: 2px;
    background: var(--gold);
    transition: height 0.18s ease;
    opacity: 0.65;
    box-shadow: 0 0 10px rgba(200, 169, 110, 0.5);
}

.music-player.playing .music-wave .bar {
    animation: waveBounce 0.75s ease-in-out infinite alternate;
}

.music-player.playing .music-wave .bar:nth-child(1) { animation-delay: 0s; }
.music-player.playing .music-wave .bar:nth-child(2) { animation-delay: 0.13s; }
.music-player.playing .music-wave .bar:nth-child(3) { animation-delay: 0.26s; }
.music-player.playing .music-wave .bar:nth-child(4) { animation-delay: 0.39s; }
.music-player.playing .music-wave .bar:nth-child(5) { animation-delay: 0.52s; }

@keyframes waveBounce {
    0% { height: 7px; }
    40% { height: 20px; }
    100% { height: 5px; }
}

.music-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.music-player.playing .music-label {
    color: var(--gold-light);
}

.swipe-hint {
    position: fixed;
    bottom: 8.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    color: var(--text-dim);
    text-transform: uppercase;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    opacity: 0.5;
    transition: opacity 1.2s ease;
}

.swipe-hint .arrow-hint {
    display: inline-block;
    animation: hintPulse 2.2s ease-in-out infinite;
    font-size: 0.85rem;
    opacity: 0.7;
}

@keyframes hintPulse {
    0%, 100% {
        opacity: 0.25;
        transform: translateX(0);
    }
    50% {
        opacity: 0.9;
        transform: translateX(6px);
    }
}

.showcase-main-image.zoom-in {
    animation: subtleReveal 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes subtleReveal {
    0% {
        transform: scale(1.04);
        filter: brightness(1.25) blur(4px) saturate(0.8);
    }
    100% {
        transform: scale(1);
        filter: brightness(1) blur(0) saturate(1);
    }
}

@media (max-width: 1024px) {
    .style-showcase {
        width: 92vw;
        height: 68vh;
        flex-direction: column;
        gap: 1.2rem;
    }
    .showcase-image-wrapper {
        flex: 0 0 52%;
        width: 100%;
        border-radius: 1px;
    }
    .showcase-text-panel {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
        align-items: center;
        padding: 0.5rem 1.2rem;
    }
    .style-title { font-size: 1.8rem; }
    .style-number {
        font-size: 3.8rem;
        margin-bottom: -0.1rem;
    }
    .style-description {
        max-width: 100%;
        font-size: 0.82rem;
    }
    .magazine-header { padding: 1rem 1.8rem; }
    .magazine-header .brand-title { font-size: 1.3rem; }
    .magazine-header .issue-info,
    .magazine-header .page-num { font-size: 0.6rem; }
    .music-player {
        bottom: 1.8rem;
        right: 1.2rem;
        padding: 0.35rem 0.9rem 0.35rem 0.35rem;
        gap: 0.5rem;
    }
    .play-btn {
        width: 34px;
        height: 34px;
    }
    .music-label { font-size: 0.5rem; }
    .style-navigation {
        bottom: 1.8rem;
        gap: 0.4rem;
        padding: 0.4rem 0.5rem;
    }
    .nav-dot {
        width: 36px;
        height: 36px;
    }
    .nav-dot.active {
        width: 42px;
        height: 42px;
    }
    .nav-label-mini {
        font-size: 0.5rem;
        padding: 0 0.4rem;
    }
    .swipe-hint {
        bottom: 6.5rem;
        font-size: 0.5rem;
    }
    .poem-drop {
        font-size: calc(var(--font-size) * 0.75) !important;
    }
}

@media (max-width: 640px) {
    .style-showcase {
        width: 94vw;
        height: 63vh;
        gap: 0.8rem;
    }
    .showcase-image-wrapper {
        flex: 0 0 46%;
        border-radius: 1px;
    }
    .showcase-image-wrapper .gold-border { inset: 8px; }
    .style-title {
        font-size: 1.28rem;
        letter-spacing: 0.04em;
        line-height: 1.3;
    }
    .style-number { font-size: 3rem; }
    .style-subtitle {
        font-size: 0.8rem;
        line-height: 1.55;
        margin-bottom: 0.72rem;
        max-width: 100%;
    }
    .style-description {
        font-size: 0.66rem;
        line-height: 1.62;
        margin-bottom: 0.95rem;
        max-width: 100%;
    }
    .style-label, .meta-info { font-size: 0.52rem; }
    .magazine-header .brand-title { font-size: 1.1rem; }
    .music-player {
        bottom: 69px;
        left: calc(100% - 123px);
        right: auto;
        transform: none;
        width: 42px;
        max-width: none;
        justify-content: center;
        padding: 0.3rem;
        gap: 0;
        animation: none;
        opacity: 1;
    }
    .play-btn {
        width: 30px;
        height: 30px;
    }
    .play-icon { border-width: 6px 0 6px 10px; }
    .music-player.playing .play-icon {
        border-width: 0;
        width: 7px;
        height: 10px;
        border-left-width: 2px;
        border-right-width: 2px;
    }
    .music-wave,
    .music-label {
        display: none;
    }
    .style-navigation {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 4.3rem);
        left: 50%;
        right: auto;
        display: inline-flex;
        width: auto;
        max-width: none;
        transform: translateX(-50%);
        justify-content: center;
        gap: 0.25rem;
        padding: 0.35rem 0.4rem;
    }
    .nav-dot {
        width: 30px;
        height: 30px;
    }
    .nav-dot.active {
        width: 36px;
        height: 36px;
    }
    .nav-dot .dot-inner {
        width: 5px;
        height: 5px;
    }
    .nav-dot.active .dot-inner {
        width: 8px;
        height: 8px;
    }
    .nav-separator {
        height: 12px;
        margin: 0 0.15rem;
    }
    .nav-label-mini { display: none; }
    .swipe-hint {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 7.8rem);
        font-size: 0.45rem;
        gap: 0.5rem;
    }
    .poem-drop {
        font-size: calc(var(--font-size) * 0.6) !important;
    }
}

@media (max-width: 380px) {
    .magazine-header {
        padding: 0.85rem 1rem;
        justify-content: flex-end;
    }
    .magazine-header .issue-info {
        display: none;
    }
    .magazine-header .brand-title {
        position: static;
        transform: none;
        margin-right: auto;
        font-size: 0.92rem;
        letter-spacing: 0.08em;
        max-width: calc(100vw - 6.2rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
    }
    .magazine-header .page-num {
        font-size: 0.52rem;
        letter-spacing: 0.16em;
    }
    .music-player {
        gap: 0.4rem;
        padding-right: 0.55rem;
    }
    .music-label {
        font-size: 0.46rem;
        letter-spacing: 0.12em;
    }
}
