/* ============================================================
   chika.stream — Frutiger Aero + Leather Vintage Stylesheet
   Palette:
     #FFF9F0  Cream Gloss (primary background)
     #E8366A  Candy Magenta (primary accent)
     #2BBFB3  Aqua Gloss (secondary accent)
     #FFCE47  Lemon Zest (tertiary accent)
     #A8E6CF  Mint Foam (gradient end)
     #B0E0FF  Sky Powder (gradient start)
     #3D1F0A  Deep Leather Brown (text anchoring)
     #F4A0B5  Bubblegum Pink (hover states)
     #FFF0E0  Parchment Warm (leather card bg)
     #2E1F14  Warm Charcoal (body text)
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #2E1F14;
    background-color: #FFF9F0;
    overflow-x: hidden;
    line-height: 1.7;
}

/* === Typography === */
.site-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 8vw, 96px);
    letter-spacing: -1px;
    color: #3D1F0A;
    display: block;
    line-height: 1;
}

.site-stream {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: -1px;
    color: #2BBFB3;
    display: block;
    line-height: 1;
}

.site-dot {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 6vw, 72px);
    color: #E8366A;
    display: block;
    line-height: 0.8;
}

.section-header {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 40px);
    color: #E8366A;
    margin-bottom: 24px;
}

.card-title {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 20px;
    color: #E8366A;
    margin-bottom: 6px;
    line-height: 1.3;
}

.card-meta {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2BBFB3;
    margin-bottom: 10px;
}

.card-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #2E1F14;
    margin-bottom: 14px;
}

/* === Tags === */
.tag {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 2px 3px 2px 0;
}

.tag-aqua {
    background-color: rgba(43, 191, 179, 0.15);
    border: 2px solid #2BBFB3;
    color: #2BBFB3;
}

.tag-pink {
    background-color: rgba(232, 54, 106, 0.10);
    border: 2px solid #E8366A;
    color: #E8366A;
}

.tag-yellow {
    background-color: rgba(255, 206, 71, 0.20);
    border: 2px solid #FFCE47;
    color: #3D1F0A;
}

/* === Bounce-Enter Animation === */
@keyframes bounceEnter {
    0% {
        opacity: 0;
        transform: rotate(var(--rotate, 0deg)) scale(0.6) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: rotate(var(--rotate, 0deg)) scale(1.05) translateY(-8px);
    }
    80% {
        transform: rotate(var(--rotate, 0deg)) scale(0.97) translateY(3px);
    }
    100% {
        opacity: 1;
        transform: rotate(var(--rotate, 0deg)) scale(1) translateY(0);
    }
}

@keyframes bounceEnterSimple {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-8px);
    }
    80% {
        transform: scale(0.97) translateY(3px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.bounce-ready {
    opacity: 0;
}

.bounce-animate {
    animation: bounceEnter 480ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--card-index, 0) * 80ms);
}

.bounce-animate-simple {
    animation: bounceEnterSimple 480ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--card-index, 0) * 80ms);
}

/* === Card Base: Leather + Vintage Sticker Border === */
.stream-card,
.mini-card,
.feature-card,
.archive-card,
.manifesto-card {
    background-color: #FFF0E0;
    border: 2px solid #3D1F0A;
    border-radius: 16px;
    padding: 4px;
    box-shadow: 4px 6px 18px rgba(61, 31, 10, 0.18), 0 1px 3px rgba(61, 31, 10, 0.10);
    transform: rotate(var(--rotate, 0deg));
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    will-change: transform;
}

.stream-card::before,
.mini-card::before,
.feature-card::before,
.archive-card::before,
.manifesto-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' seed='5'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23f)' opacity='0.12'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

.card-inner-border {
    border: 1px dashed #E8366A;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    z-index: 2;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.stream-card:hover .card-inner-border,
.mini-card:hover .card-inner-border,
.feature-card:hover .card-inner-border,
.archive-card:hover .card-inner-border {
    animation: glowPulse 1.2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 0px rgba(232, 54, 106, 0.15); }
    50% { box-shadow: 0 0 0 5px rgba(232, 54, 106, 0.20); }
}

/* === Glass Shimmer Band === */
.glass-shimmer {
    position: absolute;
    top: -30%;
    left: -60%;
    width: 3px;
    height: 200%;
    background: rgba(255, 255, 255, 0.55);
    transform: rotate(20deg);
    pointer-events: none;
    z-index: 10;
    animation: shimmerSweep 6s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0%   { left: -60%; opacity: 0; }
    10%  { opacity: 1; }
    50%  { left: 130%; opacity: 0.8; }
    51%  { opacity: 0; }
    100% { left: -60%; opacity: 0; }
}

.shimmer-active {
    animation: shimmerSweep 4s ease-in-out infinite;
    width: 8px;
}

/* === Aero Bubble Floaters === */
@keyframes drift {
    0%   { transform: translateY(0px) translateX(0px); }
    25%  { transform: translateY(-15px) translateX(8px); }
    50%  { transform: translateY(-20px) translateX(-5px); }
    75%  { transform: translateY(-8px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.aero-bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(0.5px);
    opacity: 0;
}

.aero-sm { width: 80px; height: 80px; }
.aero-md { width: 140px; height: 140px; }
.aero-lg { width: 240px; height: 240px; }

.aero-bubble.bubble-aqua {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8) 0%, rgba(43,191,179,0.6) 35%, rgba(43,191,179,0.3) 100%);
    box-shadow: inset 0 -10px 20px rgba(43,191,179,0.2);
}

/* Panel 1 bubbles */
.bubble-p1-a {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8) 0%, rgba(43,191,179,0.5) 35%, rgba(43,191,179,0.25) 100%);
    box-shadow: inset 0 -8px 16px rgba(43,191,179,0.2);
    top: 15%; right: 8%; animation: drift 28s ease-in-out infinite;
}
.bubble-p1-b {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.75) 0%, rgba(168,230,207,0.5) 35%, rgba(168,230,207,0.25) 100%);
    box-shadow: inset 0 -10px 20px rgba(168,230,207,0.2);
    bottom: 10%; left: 5%; animation: drift 35s ease-in-out infinite 3s;
}
.bubble-p1-c {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, rgba(176,224,255,0.4) 35%, rgba(176,224,255,0.2) 100%);
    box-shadow: inset 0 -12px 24px rgba(176,224,255,0.15);
    top: 55%; right: 25%; animation: drift 40s ease-in-out infinite 6s;
}

/* Panel 2 bubbles */
.bubble-p2-a {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8) 0%, rgba(244,160,181,0.5) 35%, rgba(244,160,181,0.25) 100%);
    bottom: 5%; right: 3%; animation: drift 30s ease-in-out infinite 1s;
}
.bubble-p2-b {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, rgba(255,206,71,0.4) 35%, rgba(255,206,71,0.2) 100%);
    top: 10%; left: 2%; animation: drift 38s ease-in-out infinite 4s;
}
.bubble-p2-c {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8) 0%, rgba(43,191,179,0.5) 35%, rgba(43,191,179,0.25) 100%);
    top: 40%; right: 40%; animation: drift 25s ease-in-out infinite 2s;
}

/* Panel 3 bubbles */
.bubble-p3-a {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.75) 0%, rgba(168,230,207,0.5) 35%, rgba(168,230,207,0.25) 100%);
    top: 5%; left: 15%; animation: drift 32s ease-in-out infinite 5s;
}
.bubble-p3-b {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8) 0%, rgba(232,54,106,0.3) 35%, rgba(232,54,106,0.15) 100%);
    bottom: 15%; right: 5%; animation: drift 26s ease-in-out infinite;
}
.bubble-p3-c {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, rgba(176,224,255,0.45) 35%, rgba(176,224,255,0.2) 100%);
    top: 50%; left: 45%; animation: drift 36s ease-in-out infinite 8s;
}

/* Panel 4 bubbles */
.bubble-p4-a {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8) 0%, rgba(43,191,179,0.5) 35%, rgba(43,191,179,0.25) 100%);
    top: 20%; right: 3%; animation: drift 29s ease-in-out infinite 3s;
}
.bubble-p4-b {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, rgba(244,160,181,0.45) 35%, rgba(244,160,181,0.2) 100%);
    bottom: 20%; left: 8%; animation: drift 37s ease-in-out infinite 6s;
}
.bubble-p4-c {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.75) 0%, rgba(255,206,71,0.4) 35%, rgba(255,206,71,0.18) 100%);
    top: 55%; right: 35%; animation: drift 33s ease-in-out infinite 1s;
}

/* Panel 5 bubbles */
.bubble-p5-a {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8) 0%, rgba(168,230,207,0.5) 35%, rgba(168,230,207,0.25) 100%);
    top: 10%; left: 5%; animation: drift 31s ease-in-out infinite 2s;
}
.bubble-p5-b {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.8) 0%, rgba(43,191,179,0.5) 35%, rgba(43,191,179,0.25) 100%);
    bottom: 20%; right: 10%; animation: drift 27s ease-in-out infinite;
}
.bubble-p5-c {
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, rgba(176,224,255,0.45) 35%, rgba(176,224,255,0.2) 100%);
    top: 45%; left: 35%; animation: drift 42s ease-in-out infinite 9s;
}

/* === Panel Base Styles === */
.panel {
    position: relative;
    overflow: hidden;
    padding: 60px 40px;
}

/* === Panel 1: The Dial-In === */
.panel-1 {
    min-height: 100vh;
    background: linear-gradient(135deg, #B0E0FF 0%, #A8E6CF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -40px;
    padding-bottom: 100px;
}

.bokeh-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.bokeh-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
    top: -80px; left: 60px;
}
.bokeh-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    bottom: 50px; right: 20%;
}
.bokeh-3 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.20) 0%, transparent 70%);
    top: 40%; left: 40%;
}

.panel-1-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.dial-in-left {
    flex: 0 0 55%;
    display: flex;
    justify-content: flex-start;
}

.hero-bubble {
    width: clamp(280px, 38vw, 420px);
    height: clamp(280px, 38vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle at 28% 22%, rgba(255,255,255,0.75) 0%, rgba(176,224,255,0.55) 30%, rgba(168,230,207,0.4) 65%, rgba(43,191,179,0.2) 100%);
    box-shadow:
        0 8px 40px rgba(43,191,179,0.25),
        inset 0 -15px 30px rgba(43,191,179,0.15),
        inset 0 3px 8px rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-bubble-inner {
    text-align: center;
    padding: 20px;
}

.dial-in-right {
    flex: 0 0 42%;
}

.manifesto-card {
    transform: rotate(2deg);
    background: #FFF0E0;
}

.manifesto-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.9;
    color: #2E1F14;
    margin-bottom: 18px;
}

.manifesto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

/* === Card Disc Decorations === */
.card-header-bar {
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2BBFB3, rgba(43,191,179,0.2));
    margin-bottom: 16px;
}
.bar-pink { background: linear-gradient(90deg, #E8366A, rgba(232,54,106,0.2)); }
.bar-yellow { background: linear-gradient(90deg, #FFCE47, rgba(255,206,71,0.2)); }

.card-disc {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 14px;
    position: relative;
}
.card-disc::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #FFF9F0;
    border: 2px solid rgba(61,31,10,0.2);
}
.disc-aqua  { background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, #2BBFB3 50%, rgba(43,191,179,0.6) 100%); }
.disc-pink  { background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, #F4A0B5 50%, rgba(244,160,181,0.6) 100%); }
.disc-yellow { background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, #FFCE47 50%, rgba(255,206,71,0.6) 100%); }
.disc-mint  { background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7) 0%, #A8E6CF 50%, rgba(168,230,207,0.6) 100%); }

/* === Panel 2: The Catalog === */
.panel-2 {
    background: #FFF9F0;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.panel-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.catalog-columns {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.catalog-col-1 { flex: 0 0 55%; }
.catalog-col-2 { flex: 0 0 25%; margin-top: 60px; }
.catalog-col-3 { flex: 0 0 20%; margin-top: 120px; }

.stream-card {
    margin-bottom: 0;
    cursor: pointer;
}

/* === Panel 3: The Spotlight === */
.panel-3 {
    background: linear-gradient(180deg, #FFF9F0 0%, #B0E0FF 50%, #A8E6CF 100%);
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.spotlight-inner {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.spotlight-left {
    flex: 0 0 28%;
    display: flex;
    flex-direction: column;
}

.spotlight-hdr {
    margin-bottom: 28px;
}

.mini-card {
    margin-bottom: 16px;
    cursor: pointer;
    transform: rotate(var(--rotate, -1deg));
}

.mini-card:nth-child(odd)  { --rotate: -1.5deg; }
.mini-card:nth-child(even) { --rotate: 1.5deg; }

.mini-card-title {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 16px;
    color: #E8366A;
    margin-bottom: 4px;
}

.mini-card-meta {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2BBFB3;
}

.spotlight-right {
    flex: 0 0 70%;
    display: flex;
    align-items: flex-start;
}

.feature-card {
    width: 100%;
    transform: rotate(-1deg);
    cursor: pointer;
    background: linear-gradient(135deg, #FFF0E0 0%, #FFF9F0 100%);
}

.feature-disc-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-disc {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.65) 0%, #2BBFB3 45%, rgba(43,191,179,0.7) 100%);
    position: relative;
    animation: spinSlow 120s linear infinite;
    box-shadow:
        0 0 0 8px rgba(232,54,106,0.2),
        0 0 0 16px rgba(43,191,179,0.15),
        0 0 0 24px rgba(232,54,106,0.1),
        0 0 0 32px rgba(43,191,179,0.08);
}

.feature-disc::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #FFF9F0;
    border: 2px solid rgba(61,31,10,0.2);
}

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

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-badge {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFF9F0;
    background: #E8366A;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
}

.feature-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -1px;
    color: #3D1F0A;
    line-height: 1.1;
    margin-bottom: 8px;
}

.feature-genre {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2BBFB3;
    margin-bottom: 18px;
}

.feature-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2E1F14;
    margin-bottom: 18px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* === Panel 4: The Archive === */
.panel-4 {
    background: #FFF9F0;
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    align-items: start;
}

.archive-card {
    margin-top: var(--height-mod, 0px);
    cursor: pointer;
}

.archive-disc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 12px;
    position: relative;
}
.archive-disc::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #FFF9F0;
    border: 1.5px solid rgba(61,31,10,0.2);
}

/* Torn-paper bottom edge */
.torn-edge-bottom {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #B0E0FF 0%, #A8E6CF 100%);
    clip-path: polygon(
        0% 100%,
        2% 30%, 5% 80%, 8% 15%, 11% 65%, 14% 20%,
        17% 70%, 20% 10%, 23% 60%, 26% 25%, 29% 75%,
        32% 15%, 35% 55%, 38% 20%, 41% 70%, 44% 10%,
        47% 60%, 50% 30%, 53% 70%, 56% 15%, 59% 65%,
        62% 20%, 65% 75%, 68% 10%, 71% 55%, 74% 25%,
        77% 65%, 80% 15%, 83% 60%, 86% 20%, 89% 70%,
        92% 15%, 95% 60%, 98% 25%, 100% 80%,
        100% 100%
    );
}

/* === Panel 5: The Moment === */
.panel-5 {
    background: linear-gradient(135deg, #B0E0FF 0%, #A8E6CF 100%);
    min-height: 60vh;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.moment-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 2;
}

.moment-left {
    flex: 0 0 28%;
}

.moment-hdr {
    color: #3D1F0A;
    margin-bottom: 28px;
}

.floating-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.float-tag {
    display: inline-block;
    font-size: 12px;
}

.moment-center {
    flex: 0 0 28%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-disc {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,0.15) 0%, transparent 40%),
        radial-gradient(ellipse at center, transparent 40%, rgba(61,31,10,0.25) 100%),
        #2E1F14;
    box-shadow:
        0 0 0 8px rgba(232,54,106,0.20),
        0 0 0 16px rgba(43,191,179,0.15),
        0 0 0 24px rgba(232,54,106,0.10),
        0 0 0 32px rgba(43,191,179,0.08),
        0 15px 40px rgba(61,31,10,0.35);
    animation: spinSlow 120s linear infinite;
    position: relative;
    filter: url(#leather-grain-light);
}

.vinyl-label-hole {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFF9F0;
    border: 2px solid rgba(61,31,10,0.3);
}

.moment-right {
    flex: 0 0 34%;
    padding-left: 20px;
}

.moment-caption {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    color: #3D1F0A;
    margin-bottom: 32px;
}

.moment-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(61,31,10,0.2);
}

.stat-num {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #E8366A;
    line-height: 1;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3D1F0A;
}

/* === Horizontal Marquee Ticker === */
.ticker-container {
    overflow: hidden;
    width: 100%;
    background: rgba(61,31,10,0.08);
    border-top: 1px solid rgba(61,31,10,0.12);
    border-bottom: 1px solid rgba(61,31,10,0.12);
    padding: 12px 0;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-content {
    display: inline-block;
    padding-right: 60px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3D1F0A;
}

.ticker-dot {
    color: #E8366A;
    margin: 0 8px;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* === Footer === */
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 20px;
    position: relative;
    z-index: 2;
}

.footer-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #3D1F0A;
    letter-spacing: -0.5px;
}

.footer-dot {
    color: #E8366A;
}

.footer-tagline {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: #3D1F0A;
    opacity: 0.7;
}

/* === Scroll-Based Parallax CSS Variables === */
.catalog-col-2 {
    --scroll-offset: 0px;
    transform: translateY(calc(var(--scroll-offset) * 0.08));
    transition: transform 0.05s linear;
}

.catalog-col-3 {
    --scroll-offset: 0px;
    transform: translateY(calc(120px + calc(var(--scroll-offset) * -0.05)));
    transition: transform 0.05s linear;
}

/* === Responsive === */
@media (max-width: 900px) {
    .panel-1-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .dial-in-left, .dial-in-right {
        flex: 0 0 100%;
        width: 100%;
    }
    .manifesto-card { transform: rotate(0deg); }

    .catalog-columns {
        flex-direction: column;
    }
    .catalog-col-1, .catalog-col-2, .catalog-col-3 {
        flex: 0 0 100%;
        width: 100%;
        margin-top: 0;
    }
    .catalog-col-2, .catalog-col-3 {
        transform: none;
    }

    .spotlight-inner {
        flex-direction: column;
    }
    .spotlight-left, .spotlight-right {
        flex: 0 0 100%;
        width: 100%;
    }

    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .moment-inner {
        flex-direction: column;
        align-items: center;
    }
    .moment-left, .moment-center, .moment-right {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
        padding-left: 0;
    }
    .floating-tags {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .vinyl-disc {
        width: 200px;
        height: 200px;
    }

    .site-footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 20px 20px;
    }
}

@media (max-width: 600px) {
    .panel { padding: 40px 20px; }
    .archive-grid { grid-template-columns: 1fr; }
    .hero-bubble {
        width: 260px;
        height: 260px;
    }
}
