* { margin: 0; padding: 0; box-sizing: border-box; }
html, body, #root { width: 100%; height: 100%; }
html { scroll-behavior: smooth; }

:root {
    --bg-deep:    #020408;
    --bg-base:    #050a14;
    --bg-elevated:#0a1525;
    --surface:    rgba(255, 255, 255, 0.04);
    --surface-hover: rgba(255, 255, 255, 0.07);
    --border:     rgba(0, 217, 255, 0.12);
    --border-hover: rgba(0, 217, 255, 0.5);
    --accent:     #00d9ff;
    --accent-dim: rgba(0, 217, 255, 0.15);
    --accent-glow:rgba(0, 217, 255, 0.35);
    --purple:     #b300ff;
    --foreground: #dde5f5;
    --muted:      #6b7a9e;
    --easing:     cubic-bezier(0.16, 1, 0.3, 1);
    --easing-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius-card:18px;
    --radius-btn: 10px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-base);
    color: var(--foreground);
    overflow-x: hidden;
}

/* ===== Ambient underwater blobs ===== */
.ambient-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.06;
    animation: blobDrift 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #00d9ff, transparent 70%);
    top: -150px; left: -100px;
    animation-duration: 22s;
}

.blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #b300ff, transparent 70%);
    bottom: 10%; right: -120px;
    animation-duration: 28s;
    animation-delay: -10s;
}

.blob-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #0066ff, transparent 70%);
    top: 40%; left: 30%;
    animation-duration: 35s;
    animation-delay: -5s;
}

@keyframes blobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(40px, -60px) scale(1.08); }
    66%       { transform: translate(-30px, 40px) scale(0.95); }
}

/* ===== Video Background ===== */
.bg-video-wrap {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.32) saturate(1.3);
    transition: opacity 2s ease;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: -10%; left: 0;
    width: 100%; height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    filter: brightness(0.45) saturate(1.3);
}

.hero-depth {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 217, 255, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(179, 0, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(2, 4, 8, 0.2) 0%, rgba(5, 10, 20, 0.75) 65%, var(--bg-base) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    will-change: transform;
}

.hero-eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0.85;
}

.hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3.5rem, 13vw, 9rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #a8d8ff 40%, #00d9ff 70%, #b300ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 8s linear infinite;
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.25));
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}

.hero-sub {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 300;
    color: #8a99c8;
    letter-spacing: 1.5px;
    max-width: 520px;
    margin: 0 auto 50px;
    line-height: 1.9;
}

.enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.4);
    color: var(--accent);
    cursor: pointer;
    border-radius: var(--radius-btn);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.35s var(--easing);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.enter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.18), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--easing);
}

.enter-btn:hover::before { transform: translateX(100%); }

.enter-btn:hover {
    background: rgba(0, 217, 255, 0.12);
    border-color: var(--accent);
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(0, 217, 255, 0.1), inset 0 0 20px rgba(0, 217, 255, 0.07);
    color: #00ffff;
    transform: translateY(-2px);
}

.enter-btn svg {
    width: 14px; height: 14px;
    transition: transform 0.3s var(--easing);
}

.enter-btn:hover svg { transform: translateX(4px); }

.insta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    margin: 22px auto 0;
    color: var(--muted);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: color 0.25s var(--easing-out);
}

.insta-link svg { width: 20px; height: 20px; }

.insta-link:hover { color: var(--accent); }

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(0, 217, 255, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 217, 255, 0.5));
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50%       { transform: scaleY(1); transform-origin: top; }
}

/* ===== Intro section ===== */
.intro-section {
    position: relative;
    z-index: 2;
    padding: 120px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.intro-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #fff;
}

.intro-section h2 em {
    font-style: italic;
    color: var(--accent);
}

.intro-section p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    color: #7a8ab0;
    margin-bottom: 40px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    background: rgba(5, 10, 20, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s var(--easing);
}

.navbar.hidden { transform: translateY(-100%); }

.nav-brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 6px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.nav-back {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--accent);
    cursor: pointer;
    border-radius: var(--radius-btn);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.25s var(--easing-out);
    backdrop-filter: blur(10px);
}

.nav-back:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

@media (max-width: 768px) {
    .nav-back { left: 16px; padding: 8px 12px; font-size: 0.7rem; }
    .navbar { padding: 12px 16px; }
    .nav-brand { font-size: 1rem; }
}

/* ===== PAGES ===== */
.page {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: 80px;
    animation: pageIn 0.5s var(--easing);
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.page-header {
    text-align: center;
    padding: 50px 20px 60px;
}

.page-header h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--accent), #a0e8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 2px;
    font-weight: 300;
}

/* ===== ALBUM GRID ===== */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    padding: 0 40px 100px;
    max-width: 1500px;
    margin: 0 auto;
}

.album-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.5s var(--easing);
    animation: cardFloat 0.6s var(--easing) backwards;
}

@keyframes cardFloat {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.album-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--border-hover);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 60px var(--album-glow, rgba(0,217,255,0.2)),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.album-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: all 0.6s var(--easing);
}

.album-card:hover img { opacity: 0.9; transform: scale(1.07); }

.album-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(2, 4, 8, 0.7) 70%, rgba(2, 4, 8, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.album-card-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
    transition: color 0.3s ease;
}

.album-card-count {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--album-color, var(--accent));
    text-transform: uppercase;
}

/* ===== CATEGORY SECTIONS ===== */
.cat-section {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.cat-section:last-child .masonry-grid.expanded {
    padding-bottom: 100px;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 22px 40px;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
    border-radius: 4px;
}

.cat-header:hover { opacity: 0.75; }

.cat-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border: 1px solid var(--cat-color);
    border-radius: 5px;
    color: var(--cat-color);
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.3s var(--easing);
    flex-shrink: 0;
}

.cat-toggle.closed { transform: rotate(0deg); }
.cat-toggle.open   { transform: rotate(90deg); }

.cat-header h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 0 20px var(--cat-color);
}

.cat-header .cat-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--cat-color), transparent);
    opacity: 0.2;
}

.cat-header .cat-count {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--cat-color);
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 3px 12px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cat-header { padding: 15px 20px; gap: 12px; }
}

/* ===== MASONRY GRID ===== */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
    padding: 0 40px 20px;
    max-width: 1600px;
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--easing), opacity 0.35s ease, padding 0.35s ease;
}

.masonry-grid.collapsed {
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.masonry-grid.expanded { opacity: 1; }

.masonry-item {
    position: relative;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: all 0.45s var(--easing);
    animation: cardFloat 0.5s var(--easing) backwards;
}

.masonry-item:nth-child(4n+1) { height: 400px; }
.masonry-item:nth-child(4n+3) { height: 270px; }

.masonry-item:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: var(--album-color, var(--accent));
    box-shadow:
        0 20px 50px rgba(0,0,0,0.6),
        0 0 40px var(--album-glow, rgba(0,217,255,0.2)),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.masonry-item img,
.masonry-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.5s var(--easing);
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

.masonry-item:hover img,
.masonry-item:hover video { opacity: 1; transform: scale(1.08); }

.video-badge {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 34px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    backdrop-filter: blur(8px);
    z-index: 2;
    pointer-events: none;
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,4,8,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--album-color, var(--accent));
}

@media (max-width: 768px) {
    .masonry-item:nth-child(4n+1),
    .masonry-item:nth-child(4n+3) { height: 260px; }
    .masonry-grid, .albums-grid { padding: 0 16px 60px; gap: 14px; }
    .albums-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .masonry-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 4, 8, 0.97);
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    animation: lbIn 0.3s var(--easing);
}

@keyframes lbIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lb-main-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 70px 80px 20px;
    min-height: 0;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    box-shadow: 0 0 80px rgba(0, 217, 255, 0.12), 0 40px 80px rgba(0,0,0,0.7);
    animation: imgReveal 0.3s var(--easing);
}

.lightbox-video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.15);
    box-shadow: 0 0 80px rgba(0, 217, 255, 0.12);
    outline: none;
    animation: imgReveal 0.3s var(--easing);
}

@keyframes imgReveal {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

.lb-btn {
    background: rgba(0, 217, 255, 0.07);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--accent);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s var(--easing-out);
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.lb-close {
    position: absolute;
    top: 18px; right: 24px;
    width: 44px; height: 44px;
    font-size: 1.3rem;
    z-index: 10;
}

.lb-close:hover {
    background: rgba(255,80,80,0.15);
    border-color: rgba(255,80,80,0.5);
    color: #ff8080;
    transform: rotate(90deg);
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    font-size: 1.4rem;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-nav:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
    box-shadow: 0 0 24px var(--accent-glow);
}

.lb-counter {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    letter-spacing: 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
}

/* ===== Thumbnail Strip ===== */
.lb-thumbs {
    width: 100%;
    padding: 14px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(2,4,8,0.6);
}

.lb-thumbs::-webkit-scrollbar { display: none; }

.lb-thumb {
    flex-shrink: 0;
    width: 54px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.45;
    transition: all 0.2s var(--easing-out);
    background: var(--bg-elevated);
}

.lb-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.lb-thumb-video {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    background: var(--bg-elevated);
}

.lb-thumb:hover {
    opacity: 0.75;
    transform: translateY(-2px);
}

.lb-thumb.active {
    border-color: var(--accent);
    opacity: 1;
    box-shadow: 0 0 12px var(--accent-glow);
}

@media (max-width: 768px) {
    .lb-nav { width: 40px; height: 40px; font-size: 1.1rem; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-main-area { padding: 60px 60px 16px; }
    .lb-thumb { width: 44px; height: 32px; }
}

/* ===== Status Screen ===== */
.status-screen {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
    text-align: center;
    padding: 20px;
}

.status-screen .spinner {
    width: 44px; height: 44px;
    border: 2px solid rgba(0,217,255,0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin-bottom: 24px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.status-screen p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: var(--muted);
    letter-spacing: 1.5px;
    line-height: 1.8;
    font-size: 0.9rem;
}

.status-screen code {
    background: var(--accent-dim);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--accent);
    font-family: monospace;
}

/* ===== prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .blob { animation: none; }
}
