/* ==========================================================================
   0. FONTS & CSS VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    --bg: #161f1d;
    --bg-elevated: #1c2624;
    --bg-card: #212c29;
    --bg-card-hover: #283531;
    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #f2f5f2;
    --text-muted: #93a49d;
    --text-faint: #66766f;

    /* Midnight Teal + Normn Hue palette: pale mint CTA, dusty slate-blue as secondary accent */
    --accent: #a9d8b4;
    --accent-ink: #142019;
    --accent-slate: #7c88a6;
    --danger: #e08585;
    --success: #a9d8b4;

    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shell-max: 720px;
    --player-height: 76px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.app-body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 50% -10%, #24312d 0%, var(--bg) 45%) fixed;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(var(--player-height) + var(--safe-bottom) + 16px);
}

::selection {
    background-color: var(--accent);
    color: var(--accent-ink);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 10px; }

a { color: inherit; }

/* ==========================================================================
   1. SHELL / HEADER / PROFILE
   ========================================================================== */
.app-shell {
    max-width: var(--shell-max);
    margin: 0 auto;
    padding: 32px 20px 0;
}

.profile-banner {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -20px 28px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--bg);
}

.profile-avatar-photo {
    position: relative;
    z-index: 1;
    flex: 0 0 33.333%;
    width: 33.333%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f2a28, #2c3d37);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.28);
}

.profile-avatar-photo svg {
    width: 34%;
    max-width: 64px;
    height: auto;
}

.profile-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0, transparent 33.333%, var(--bg) calc(33.333% + 56px));
    pointer-events: none;
}

.profile-text {
    position: relative;
    z-index: 2;
    flex: 1 1 66.666%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    padding: 0 22px 0 16px;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

.artist-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin: 0;
}

/* ==========================================================================
   2. NAVIGATION
   ========================================================================== */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 4px 16px;
    margin: 0 -4px 24px;
    background: linear-gradient(to bottom, var(--bg) 70%, transparent);
    scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }

.nav-item {
    flex: 0 0 auto;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-item:hover { color: var(--text); border-color: var(--border-strong); }

.nav-item.is-active {
    color: var(--accent-ink);
    background: var(--accent);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(169, 216, 180, 0.25);
}

.nav-sub {
    font-weight: 500;
    opacity: 0.75;
    font-size: 0.85em;
}

/* ==========================================================================
   3. SECTIONS (general)
   ========================================================================== */
.app-main { min-height: 40vh; }

.app-section[hidden] { display: none; }

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}

.section-title-sub {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.7em;
}

.section-lead {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0 0 28px;
}

.empty-state {
    color: var(--text-faint);
    background: var(--bg-card);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    padding: 20px;
    font-size: 0.9rem;
}

.app-footer {
    text-align: center;
    color: var(--text-faint);
    font-size: 0.8rem;
    padding: 48px 0 24px;
}

/* ==========================================================================
   4. BIO
   ========================================================================== */
.bio-text {
    white-space: pre-line;
    line-height: 1.6;
    color: #d9d8e3;
    font-size: 1rem;
    margin: 0 0 24px;
}

.label-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.label-pill {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent-slate);
    background: rgba(124, 136, 166, 0.14);
    border: 1px solid rgba(124, 136, 166, 0.3);
    padding: 6px 12px;
    border-radius: 999px;
}

.highlights-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlights-list li {
    position: relative;
    padding-left: 22px;
    color: #dbe4df;
    font-size: 0.94rem;
    line-height: 1.4;
}

.highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.social-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-1px);
}

.social-icon { width: 20px; height: 20px; flex: 0 0 20px; color: var(--accent-slate); }
.social-icon svg { width: 100%; height: 100%; }

/* ==========================================================================
   5. RELEASES + MODAL
   ========================================================================== */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.release-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    color: var(--text);
}

.cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f2a28, #2c3d37);
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.32);
}

.cover-square { aspect-ratio: 1 / 1; border-radius: var(--radius-md); width: 100%; }
.cover-round { aspect-ratio: 1 / 1; border-radius: 50%; width: 64px; flex: 0 0 64px; }
.cover-note { font-size: 1.8rem; }

.release-card[data-release-index]:nth-child(3n+1) .cover-placeholder { background: linear-gradient(135deg, #1f2a28, #2c3d37); }
.release-card[data-release-index]:nth-child(3n+2) .cover-placeholder { background: linear-gradient(135deg, #212a3a, #303f57); }
.release-card[data-release-index]:nth-child(3n+3) .cover-placeholder { background: linear-gradient(135deg, #232f2b, #34483f); }

.release-info { display: flex; flex-direction: column; gap: 2px; }
.release-title { font-weight: 700; font-size: 0.92rem; }
.release-meta { color: var(--text-muted); font-size: 0.78rem; }

.release-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.release-modal[hidden] { display: none; }

.release-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 10, 0.72);
    backdrop-filter: blur(4px);
}

.release-modal-panel {
    position: relative;
    width: 100%;
    max-width: var(--shell-max);
    max-height: 88vh;
    overflow-y: auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border-strong);
    border-radius: 24px 24px 0 0;
    padding: 28px 20px calc(24px + var(--player-height));
}

@media (min-width: 760px) {
    .release-modal { align-items: center; }
    .release-modal-panel { border-radius: 24px; max-height: 80vh; }
}

.release-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--bg-card);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.release-modal-cover {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-md);
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1f2a28, #2c3d37);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.32);
    font-size: 2.4rem;
}

.release-modal-title { font-size: 1.3rem; font-weight: 800; margin: 0 0 4px; text-align: center; }
.release-modal-meta { color: var(--text-muted); font-size: 0.85rem; text-align: center; margin: 0 0 16px; }
.release-modal-desc { color: #d9d8e3; font-size: 0.92rem; line-height: 1.55; margin: 0 0 20px; }

.release-modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.release-modal-links a {
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    color: var(--text);
}
.release-modal-links a:hover { border-color: var(--accent); color: var(--accent); }

.tracklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }

.tracklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}
.tracklist li:last-child { border-bottom: none; }

.tracklist .track-index { color: var(--text-faint); width: 18px; font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; }
.tracklist .track-title { flex: 1; }
.tracklist .track-duration { color: var(--text-muted); font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; }

/* ==========================================================================
   6. PLAY BUTTONS (shared: releases tracklist, podcast)
   ========================================================================== */
.play-btn {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:disabled {
    background: var(--bg-card);
    opacity: 0.5;
    cursor: not-allowed;
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent var(--accent-ink);
    margin-left: 2px;
}

.play-btn.is-playing .play-icon {
    width: 10px;
    height: 12px;
    border-style: double;
    border-width: 0 0 0 10px;
    margin-left: 0;
}

/* ==========================================================================
   7. PODCAST
   ========================================================================== */
.podcast-list { display: flex; flex-direction: column; gap: 14px; }

.podcast-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
}

.podcast-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.podcast-title { font-weight: 700; font-size: 0.9rem; }
.podcast-date { color: var(--text-faint); font-size: 0.76rem; font-family: 'JetBrains Mono', monospace; }
.podcast-desc { color: var(--text-muted); font-size: 0.82rem; margin: 4px 0 0; line-height: 1.4; }

.embed-wrapper { position: relative; width: 100%; margin-top: 10px; border-radius: var(--radius-sm); overflow: hidden; }
.embed-wrapper iframe { width: 100%; border: none; display: block; height: 120px; }

/* ==========================================================================
   8. GALLERY + LIGHTBOX
   ========================================================================== */
.album-block { margin-bottom: 36px; }
.album-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 12px; }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.photo-thumb {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    border: none;
    padding: 0;
    cursor: pointer;
    background: linear-gradient(135deg, #212a3a, #303f57);
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.video-grid { display: flex; flex-direction: column; gap: 12px; }

.video-embed-wrapper, .video-embed { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius-md); overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.video-embed-placeholder {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px dashed var(--border-strong);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-faint);
    font-size: 0.85rem;
}
.video-embed-placeholder .cover-note { font-size: 2rem; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(5, 5, 10, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox[hidden] { display: none; }

.lightbox-content { max-width: 100%; max-height: 100%; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 78vh; border-radius: var(--radius-md); }
.lightbox-caption { color: var(--text-muted); margin-top: 12px; font-size: 0.85rem; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--bg-card);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   9. GIGS
   ========================================================================== */
.gigs-subnav { display: flex; gap: 8px; margin-bottom: 20px; }

.gigs-tab {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
}
.gigs-tab.is-active { color: var(--accent-ink); background: var(--accent); border-color: transparent; }

.gigs-list { display: flex; flex-direction: column; gap: 12px; }
.gigs-list[hidden] { display: none; }

.gig-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
}

.gig-card-past { opacity: 0.6; }

.gig-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    font-family: 'JetBrains Mono', monospace;
}
.gig-day { font-size: 1.3rem; font-weight: 700; line-height: 1; color: var(--accent-slate); }
.gig-month { font-size: 0.7rem; color: var(--text-faint); }

.gig-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.gig-venue { font-weight: 700; font-size: 0.9rem; }
.gig-lineup { color: var(--text-muted); font-size: 0.8rem; }

.gig-cta {
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    background: var(--accent);
    color: var(--accent-ink);
}
.gig-cta-soon { background: var(--bg-elevated); color: var(--text-muted); }
.gig-cta-past { background: transparent; border: 1px solid var(--border-strong); color: var(--text-faint); }

/* ==========================================================================
   10. BOOKING FORM
   ========================================================================== */
.booking-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.field-optional { font-weight: 400; color: var(--text-faint); }

.form-field input, .form-field textarea {
    font-family: inherit;
    font-size: 0.94rem;
    color: var(--text);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    resize: vertical;
}

.form-field input:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    left: -9999px;
}

.submit-btn {
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-ink);
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}
.submit-btn:hover { transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status {
    font-size: 0.86rem;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin: 0;
}
.form-status[hidden] { display: none; }
.form-status.is-success { background: rgba(169, 216, 180, 0.12); color: var(--success); border: 1px solid rgba(169, 216, 180, 0.3); }
.form-status.is-error { background: rgba(224, 133, 133, 0.12); color: var(--danger); border: 1px solid rgba(224, 133, 133, 0.3); }

/* ==========================================================================
   11. PERSISTENT AUDIO PLAYER BAR
   ========================================================================== */
.player-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    height: var(--player-height);
    padding: 0 16px calc(var(--safe-bottom));
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(22, 31, 29, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-strong);
}
.player-bar[hidden] { display: none; }

.player-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-toggle-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 11px;
    border-color: transparent transparent transparent var(--accent-ink);
    margin-left: 2px;
}
.player-toggle.is-playing .player-toggle-icon {
    width: 11px;
    height: 13px;
    border-style: double;
    border-width: 0 0 0 11px;
    margin-left: 0;
}

.player-track-info {
    flex: 0 1 34%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.player-track-title, .player-track-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.player-track-title { font-size: 0.84rem; font-weight: 700; }
.player-track-subtitle { font-size: 0.72rem; color: var(--text-faint); }

.player-progress-wrap { flex: 1; min-width: 60px; }

.player-progress {
    width: 100%;
    accent-color: var(--accent);
    cursor: pointer;
}

.player-close {
    flex: 0 0 auto;
    background: none;
    border: none;
    color: var(--text-faint);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 6px;
}

/* ==========================================================================
   12. RESPONSIVE TWEAKS
   ========================================================================== */
@media (min-width: 560px) {
    .app-shell { padding-top: 44px; }
    .user-bio { max-width: 44rem; }
}

@media (max-width: 380px) {
    .player-track-info { flex-basis: 26%; }
}

/* ==========================================================================
   13. ADMIN PANEL
   ========================================================================== */
.login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: 100%;
    max-width: 360px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-title { font-size: 1.4rem; font-weight: 800; margin: 0; text-align: center; }
.login-subtitle { color: var(--text-muted); font-size: 0.85rem; margin: 0 0 8px; text-align: center; }

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 700;
    font-size: 0.85rem;
}

.admin-topbar button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.admin-card-controls {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.admin-edit-btn, .admin-delete-btn {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: var(--bg-elevated);
    color: var(--text);
    cursor: pointer;
}

.admin-delete-btn { color: var(--danger); border-color: rgba(224, 133, 133, 0.3); }

.admin-add-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    background: transparent;
    width: 100%;
}

.admin-add-tile:hover { color: var(--text); border-color: var(--accent); }

.social-card-wrapper { display: flex; align-items: stretch; gap: 6px; }
.social-card-wrapper .social-card { flex: 1; }
.social-card-wrapper .admin-delete-btn { flex: 0 0 auto; }

.admin-card-relative { position: relative; }

.release-card-wrapper { display: flex; flex-direction: column; }

.photo-thumb-wrapper { position: relative; }
.photo-thumb-wrapper .photo-delete-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 2px 6px;
    font-size: 0.65rem;
}

.video-item-wrapper { display: flex; flex-direction: column; gap: 6px; }
