/* ══════════════════════════════════════════════════════════════════
   ZEUS — CINEMATIC PROFILE STYLESHEET
   Aesthetic: Dark Monochrome • Cinematic • Atmospheric • Luxury
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@400;600;700&display=swap');

:root {
    --bg-void: #050608;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.38);
    
    --glass-bg: rgba(10, 12, 16, 0.45);
    --glass-bg-hover: rgba(18, 20, 26, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.22);
    --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.65);
    
    --lunar-white: #f8fafc;
    --silver-glow: rgba(255, 255, 255, 0.15);
    --gold-ember: rgba(234, 179, 8, 0.85);

    --status-online: #23a55a;
    --status-idle: #f0b232;
    --status-dnd: #f23f43;
    --status-offline: #80848e;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-void);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ══════════════════════════════════════════════════════════════════
   CUSTOM AMBIENT CURSOR
   ══════════════════════════════════════════════════════════════════ */
#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(-50%, -50%, 0);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: transform 0.05s linear;
}

#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate3d(-50%, -50%, 0);
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s ease, background 0.3s ease;
}

#cursor-ring.cursor-hover {
    width: 52px;
    height: 52px;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
}

@media (pointer: coarse) {
    #cursor-dot, #cursor-ring { display: none; }
}

/* ══════════════════════════════════════════════════════════════════
   BACKGROUND ENVIRONMENT & CANVAS
   ══════════════════════════════════════════════════════════════════ */
.environment-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.bg-video-container {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    will-change: transform;
    transition: transform 0.15s ease-out;
}

.bg-video, .bg-image-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.9) contrast(1.1);
}

.bg-image-fallback {
    z-index: 1;
}

.bg-video {
    z-index: 2;
}

/* Dark atmospheric vignette & lunar godray overlay */
.vignette-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 45% 35%,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(5, 6, 8, 0.92) 100%
    );
    z-index: 3;
    pointer-events: none;
}

#env-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════
   CINEMATIC ENTRANCE CURTAIN
   ══════════════════════════════════════════════════════════════════ */
#entrance-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

#entrance-modal.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.entrance-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.entrance-ring {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: entrancePulse 2.4s infinite ease-in-out;
}

.entrance-ring svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    opacity: 0.8;
}

.entrance-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: #ffffff;
    text-transform: uppercase;
}

.entrance-prompt {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
}

@keyframes entrancePulse {
    0%, 100% {
        transform: scale(0.95);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 25px 5px rgba(255, 255, 255, 0.12);
    }
}

/* ══════════════════════════════════════════════════════════════════
   FOREGROUND UI LAYER & COMPOSITION
   ══════════════════════════════════════════════════════════════════ */
#app-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 3.5rem;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
}

#app-container.revealed {
    opacity: 1;
    transform: scale(1);
}

body.scenery-mode .ambient-speaker-btn,
body.scenery-mode .main-stage,
body.scenery-mode .audio-widget,
body.scenery-mode .metric-pill,
body.cinema-active .ambient-speaker-btn,
body.cinema-active .main-stage,
body.cinema-active .audio-widget,
body.cinema-active .metric-pill {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0.96);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* Eye Icon (Top Right) stays visible and interactive in Scenery Mode to return */
body.scenery-mode .cinema-toggle-btn,
body.cinema-active .cinema-toggle-btn {
    opacity: 0.65 !important;
    pointer-events: auto !important;
    background: rgba(14, 16, 22, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    z-index: 1000;
}

body.scenery-mode .cinema-toggle-btn:hover,
body.cinema-active .cinema-toggle-btn:hover {
    opacity: 1 !important;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.35);
}

/* Header Controls */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.ambient-speaker-btn, .cinema-toggle-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.ambient-speaker-btn:hover, .cinema-toggle-btn:hover {
    color: #ffffff;
    border-color: var(--glass-border-hover);
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.ambient-speaker-btn.active {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

/* Center Stage: ZEUS Profile & Identity */
.main-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto 0;
    position: relative;
    z-index: 20;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 620px;
    will-change: transform;
    transition: transform 0.2s ease-out;
}

/* Glowing Emblem Ring with Profile Picture */
.emblem-wrapper {
    position: relative;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.emblem-wrapper:hover {
    transform: scale(1.06);
}

.emblem-outer-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.95);
    border-right-color: rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    animation: ringSpin 10s linear infinite;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

/* Secondary delicate orbit ring & dot (as shown in reference) */
.emblem-orbit-dot {
    position: absolute;
    top: -2px;
    left: -4px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    pointer-events: none;
    animation: orbitFloat 6s ease-in-out infinite alternate;
}

.emblem-orbit-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 2px;
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffffff, 0 0 16px rgba(255, 255, 255, 0.8);
}

.emblem-inner-glow {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(5, 6, 8, 0.6) 80%);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
}

.emblem-avatar {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #090a0f;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    transition: filter 0.3s ease;
}

.emblem-wrapper:hover .emblem-avatar {
    filter: brightness(1.1);
}

@keyframes ringSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbitFloat {
    0% { transform: translate(0, 0) scale(0.95); opacity: 0.7; }
    100% { transform: translate(3px, 4px) scale(1.05); opacity: 1; }
}

/* Primary Title */
.profile-title {
    font-family: 'Cinzel', serif;
    font-size: 2.9rem;
    font-weight: 900;
    letter-spacing: 0.35em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.95), 0 0 24px rgba(255, 255, 255, 0.22);
}

/* Introspective Poetic Bio (Pure English 3 AM Thought) */
.poetic-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    max-width: 540px;
    margin-bottom: 2.2rem;
    padding: 0 1rem;
}

.poetic-line {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.03em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.poetic-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    font-style: italic;
    margin-top: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ══════════════════════════════════════════════════════════════════
   PREMIUM DISCORD CARD (CINEMATIC INTEGRATED)
   ══════════════════════════════════════════════════════════════════ */
.discord-card-widget {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0.75rem 1.4rem 0.75rem 0.85rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    box-shadow: var(--glass-glow);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s var(--ease-out-expo);
    margin-bottom: 1.8rem;
    position: relative;
    overflow: hidden;
}

.discord-card-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.discord-card-widget:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px 0 rgba(0, 0, 0, 0.8), 0 0 24px rgba(255, 255, 255, 0.08);
}

.discord-card-widget:hover::before {
    transform: translateX(100%);
}

.discord-avatar-container {
    position: relative;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.discord-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #111216;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.discord-avatar-frame {
    position: absolute;
    inset: -12%;
    width: 124%;
    height: 124%;
    pointer-events: none;
    display: none;
}

.status-dot {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid #0d0f14;
    background-color: var(--status-offline);
    transition: background-color 0.3s ease;
}

.status-dot.status-online { background-color: var(--status-online); box-shadow: 0 0 8px var(--status-online); }
.status-dot.status-idle { background-color: var(--status-idle); }
.status-dot.status-dnd { background-color: var(--status-dnd); box-shadow: 0 0 8px var(--status-dnd); }
.status-dot.status-offline { background-color: var(--status-offline); }

.discord-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.discord-names {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-display-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.discord-presence-badge {
    width: 15px;
    height: 15px;
    fill: #5865F2;
    filter: drop-shadow(0 0 4px rgba(88, 101, 242, 0.6));
}

.discord-username {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.discord-status-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-activity {
    display: none;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #a5b4fc;
    margin-top: 0.2rem;
}

/* ══════════════════════════════════════════════════════════════════
   CINEMATIC INTEGRATED NAVIGATION (Discord · YouTube · GitHub · Portfolio)
   ══════════════════════════════════════════════════════════════════ */
.cinematic-nav {
    position: relative;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 1.4rem;
    background: rgba(10, 12, 16, 0.42);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s var(--ease-out-expo);
    pointer-events: auto;
}

.cinematic-nav:hover {
    border-color: var(--glass-border-hover);
    background: rgba(16, 18, 24, 0.6);
}

.nav-item {
    position: relative;
    z-index: 51;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s var(--ease-out-expo);
    padding: 0.35rem 0.6rem;
    cursor: pointer !important;
    pointer-events: auto !important;
    display: inline-block;
}

.nav-label {
    pointer-events: none;
    display: inline-block;
}

.nav-item:hover {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}

.nav-sep {
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.85rem;
    user-select: none;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════
   BOTTOM CONTROLLER: AUDIO PLAYER & VIEW COUNTER
   ══════════════════════════════════════════════════════════════════ */
.bottom-dock {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

/* Metrics Pill (eye count like in reference) */
.metric-pill {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(10, 12, 16, 0.35);
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.25s var(--ease-out-expo);
}

.metric-pill:hover {
    color: #ffffff;
    background: rgba(18, 20, 26, 0.65);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.12);
}

.metric-pill svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: 0.7;
}

/* Audio Player Widget */
.audio-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1.1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-glow);
    transition: all 0.3s var(--ease-out-expo);
}

.audio-widget:hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-bg-hover);
}

.audio-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audio-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.6);
}

.audio-play-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.audio-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 180px;
}

.audio-track-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.audio-track-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* Progress bar */
.audio-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audio-progress-fill {
    width: 0%;
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Waveform Bars */
.waveform-bars {
    display: flex;
    align-items: center;
    gap: 2.5px;
    height: 18px;
}

.waveform-bar {
    width: 2.5px;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
    transform-origin: bottom;
    transform: scaleY(0.1);
    transition: transform 0.08s ease, opacity 0.08s ease;
}

/* Volume Control */
.audio-volume-container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.audio-volume-icon {
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.audio-volume-icon:hover {
    color: #ffffff;
}

.audio-volume-slider {
    width: 55px;
    height: 3px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
}

.audio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

/* ══════════════════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ══════════════════════════════════════════════════════════════════ */
#toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(14, 16, 22, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease-out-expo);
    z-index: 10000;
}

#toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    #app-container {
        padding: 1.5rem 1.25rem;
    }

    .profile-title {
        font-size: 2.2rem;
        letter-spacing: 0.2em;
    }

    .profile-bio {
        font-size: 0.85rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .bottom-dock {
        flex-direction: column-reverse;
        align-items: center;
        gap: 1rem;
    }

    .audio-widget {
        width: 100%;
        max-width: 340px;
        justify-content: space-between;
    }

    .audio-volume-container {
        display: none;
    }
}
