/* ==========================================================================
   НИША — labelnisha.com
   Wiehr-style naming convention: ironic, memorable class names
   Single CSS file. No duplicates. No mercy.
   ========================================================================== */

/* --- TOKENS --- */
:root {
    --bg: #f4f4f4;
    --ink: #000;
    --ink-soft: rgba(0,0,0,.6);
    --ink-ghost: rgba(0,0,0,.35);
    --ink-hint: rgba(0,0,0,.15);
    --ink-vapor: rgba(0,0,0,.08);
    --ink-dust: rgba(0,0,0,.04);
    --glass: rgba(244,244,244,.96);

    --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fs-xs: 10px;
    --fs-sm: 12px;
    --fs-md: 14px;
    --fs-base: 16px;
    --fs-lg: 18px;
    --fs-xl: 24px;

    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-xxl: 64px;

    --ease: cubic-bezier(.25,.1,.25,1);
    --t-fast: 150ms;
    --t-base: 250ms;
    --t-slow: 400ms;

    --header-h: 52px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ff);
    font-size: var(--fs-md);
    line-height: 1.5;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: inherit; font-size: inherit; }

/* --- LAYOUT SHELL --- */
.pizzabox {
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}

.existentialcrisis {
    position: relative;
    z-index: 1;
}

.thoughtsandprayers {
    padding: var(--space-sm);
    min-height: 50vh;
}

/* --- STICKY HEADER --- */
.brainfreeze {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 var(--space-md);
    background: var(--bg);
    transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
    box-shadow: 0 1px 0 var(--ink-vapor);
}

.brainfreeze.angrybirds {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--ink-vapor);
}

/* Logo */
.lifeisgood {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lifeisgood img {
    height: 28px;
    width: auto;
    opacity: .8;
    transition: opacity var(--t-fast) var(--ease);
}

.lifeisgood img:hover { opacity: 1; }

/* Desktop nav */
.naptime {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.naptime-item {
    font-size: var(--fs-md);
    font-weight: 500;
    opacity: .7;
    transition: opacity var(--t-fast) var(--ease);
    padding: var(--space-xs) 0;
}

.naptime-item:hover { opacity: .4; }
.naptime-item.sundaymood { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

/* Search in nav */
.detectivetime {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: 3px;
}

.detectivetime img {
    width: 16px;
    height: 16px;
    opacity: .5;
}

.detectivetime input {
    font-size: var(--fs-sm);
    width: 0;
    padding: 4px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ink);
    transition: width var(--t-base) var(--ease), padding var(--t-base) var(--ease);
    outline: none;
}

.detectivetime:hover input,
.detectivetime input:focus {
    width: 120px;
    padding: 4px;
}

.detectivetime button {
    font-size: var(--fs-sm);
    font-weight: 500;
    opacity: 0;
    transition: opacity var(--t-fast) var(--ease);
    padding: 4px 8px;
}

.detectivetime:hover button,
.detectivetime input:focus ~ button {
    opacity: .6;
}

.detectivetime button:hover { opacity: 1; }

/* --- BURGER (mobile) --- */
.panicbutton {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    gap: 5px;
    z-index: 1001;
    cursor: pointer;
    padding: 0;
}

.panicbutton span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all var(--t-base) var(--ease);
    transform-origin: center;
}

.panicbutton.ketchup span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.panicbutton.ketchup span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.panicbutton.ketchup span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- MOBILE MENU OVERLAY --- */
.blackhole {
    position: fixed;
    inset: 0;
    z-index: 899;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-slow) var(--ease);
}

.blackhole.spaghettified {
    opacity: 1;
    pointer-events: all;
}

.blackhole a {
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 500;
    opacity: .75;
    padding: var(--space-sm) var(--space-md);
    transition: opacity var(--t-fast) var(--ease);
}

.blackhole a:hover { opacity: 1; }
.blackhole .sundaymood { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.blackhole-search {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.blackhole-search input {
    font-size: var(--fs-base);
    width: 200px;
    padding: 8px 4px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ink-ghost);
    text-align: center;
    outline: none;
}

.blackhole-search input:focus { border-color: var(--ink); }

.blackhole-search button {
    font-size: var(--fs-md);
    font-weight: 500;
    opacity: .6;
    padding: 8px var(--space-md);
}

/* --- GENRE FILTER --- */
.ilikepizza {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: var(--space-sm) var(--space-md);
    max-width: 1280px;
    margin: 0 auto;
    opacity: 0.66;
}

.ilikepizza a {
    font-size: var(--fs-sm);
    font-weight: 500;
    padding: 5px 12px;
    border: 1px solid var(--ink-hint);
    transition: all var(--t-fast) var(--ease);
}

.ilikepizza a:hover { background: var(--ink-vapor); }
.ilikepizza a.everythingisfine { background: var(--ink-hint); border-color: var(--ink-ghost); }

/* --- YEAR NAVIGATION --- */
.calendarconspiracy {
    display: flex;
    justify-content: center;
    gap: 6px;
    opacity: .8;
    padding: var(--space-sm) var(--space-md);
}

.calendarconspiracy-pill {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    background: var(--ink-dust);
    border: 1px solid var(--ink-vapor);
    cursor: pointer;
    opacity: .65;
    transition: all var(--t-fast) var(--ease);
}

.calendarconspiracy-pill:hover { opacity: .9; background: var(--ink-vapor); }
.calendarconspiracy-pill.timewarp { opacity: 1; font-weight: 600; background: var(--ink-vapor); border-color: var(--ink-hint); }

/* --- RELEASES GRID --- */
.societyisreallybad {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mondayblues {
    width: 75%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.yearsection {
    margin: var(--space-sm) 0;
}

.yearsection-label {
    width: 0; height: 0; opacity: 0; position: relative;
}

.yearsection-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
}

/* Release card */
.dopamineshot {
    display: block;
    width: calc(25% - 12px);
    max-width: 240px;
    min-width: 150px;
    margin: 4px;
    transition: opacity var(--t-fast) var(--ease);
}

.dopamineshot:hover { opacity: .7; }

.dopamineshot-cover { overflow: hidden; }
.dopamineshot-cover img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform var(--t-base) var(--ease);
}

.dopamineshot-info {
    padding: 4px 0;
}

.dopamineshot-title {
    font-size: var(--fs-md);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2px;
}

.dopamineshot-artist {
    font-size: var(--fs-sm);
    line-height: 1.2;
    opacity: .6;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.emptyinside {
    display: flex;
    justify-content: center;
    padding: var(--space-xl);
    opacity: .5;
}

/* --- RELEASE DETAIL PAGE --- */
.middleagecrisis {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
}

.overthinking {
    display: flex;
    flex-wrap: wrap;
    width: 75%;
    max-width: 900px;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
}

.overthinking-cover {
    flex-shrink: 0;
    width: 360px;
    height: 360px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.overthinking-cover img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
    transition: opacity var(--t-fast) var(--ease);
}

.overthinking-cover img:hover { opacity: .9; }

.overthinking-meta {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.overthinking-artists {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.2;
    opacity: .75;
}

.overthinking-artists a {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: opacity var(--t-fast) var(--ease);
}

.overthinking-artists a:hover { opacity: .5; }

.overthinking-name {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.02em;
    opacity: .85;
}

.overthinking-year {
    font-size: var(--fs-sm);
    opacity: .45;
    margin-top: var(--space-xs);
}

.overthinking-year a {
    transition: opacity var(--t-fast) var(--ease);
}

.overthinking-year a:hover { opacity: .7; }

.overthinking-desc {
    opacity: .6;
}

.overthinking-desc p {
    font-size: var(--fs-md);
    line-height: 1.5;
}

.sendhelp {
    display: inline-block;
    font-size: var(--fs-md);
    font-weight: 500;
    padding: 10px 24px;
    margin-top: var(--space-md);
    border: 1px solid var(--ink-ghost);
    background: var(--ink-dust);
    transition: all var(--t-fast) var(--ease);
    opacity: .8;
    width: fit-content;
}

.sendhelp:hover {
    background: var(--ink-hint);
    border-color: var(--ink-soft);
    transform: translateY(-1px);
}

.nolinknoparty {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-top: var(--space-md);
    gap: 1rem;
}

.nolinknoparty img {
    max-width: 32px;
}

/* Platforms */
.fridayvibes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    max-width: 700px;
    margin: 0 auto;
}

.fridayvibes-item {
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.fridayvibes-item:hover { opacity: .7; transform: translateY(-2px); }

.fridayvibes-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    width: 7rem;
    height: 6rem;
    background: var(--ink-dust);
    border: 1px solid var(--ink-vapor);
    transition: background var(--t-fast) var(--ease);
}

.fridayvibes-link:hover { background: var(--ink-vapor); }

.fridayvibes-link img {
    width: 36px;
    height: 36px;
}

.fridayvibes-label {
    font-size: 11px;
    font-weight: 500;
    opacity: .7;
    text-transform: lowercase;
}

/* Image modal */
.zoomcall {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.zoomcall-close {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 28px;
    font-weight: 300;
    opacity: .5;
    cursor: pointer;
    z-index: 100000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--t-fast) var(--ease);
}

.zoomcall-close:hover { opacity: 1; }

.zoomcall-img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 80px rgba(0,0,0,.3);
}

/* --- ARTISTS (tag cloud) --- */
.socialanxiety {
    padding: var(--space-xl) var(--space-md);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.socialanxiety-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    line-height: 1.5;
    overflow: hidden;
}

.socialanxiety-tag {
    display: inline-flex;
    margin: 0 12px;
}

.socialanxiety-link {
    padding: 4px 8px;
    font-weight: 450;
    letter-spacing: -0.1em;
    opacity: .7;
    transition: opacity var(--t-fast) var(--ease);
    white-space: nowrap;
}

.socialanxiety-link:hover { opacity: 1; }

/* --- ARTIST DETAIL --- */
.stalkerpage {
    padding: var(--space-xl) var(--space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.stalkerpage-name {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 600;
    letter-spacing: -.03em;
    text-align: center;
    line-height: 1.1;
    opacity: .8;
    margin-bottom: var(--space-sm);
}

.stalkerpage-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.stalkerpage-social {
    padding: 6px 14px;
    font-size: var(--fs-sm);
    font-weight: 500;
    opacity: .4;
    border: 1px solid var(--ink-hint);
    transition: all var(--t-fast) var(--ease);
}

.stalkerpage-social:hover { opacity: .9; border-color: var(--ink-ghost); }

.stalkerpage-section {
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .4;
    text-align: center;
    margin: var(--space-xl) 0 var(--space-lg);
}

.stalkerpage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.stalkerpage-release {
    transition: transform var(--t-base) var(--ease), opacity var(--t-fast) var(--ease);
}

.stalkerpage-release:hover { transform: translateY(-4px); opacity: .85; }

.stalkerpage-release a { display: block; }

.stalkerpage-release-cover {
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.stalkerpage-release-cover img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.stalkerpage-release-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.stalkerpage-release-artist {
    font-size: 11px;
    opacity: .6;
    margin-bottom: 2px;
}

.stalkerpage-release-year {
    font-size: 11px;
    opacity: .35;
}

.stalkerpage-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xxl) var(--space-md);
    opacity: .5;
    font-size: var(--fs-md);
}

/* --- INFO PAGE --- */
.deepthoughts {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
}

.deepthoughts-inner {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-xxl);
}

.philosophylesson {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.philosophylesson-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .45;
    margin-bottom: var(--space-xs);
}

/* Social grid */
.hugmenow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.hugmenow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm);
    background: var(--ink-dust);
    border: 1px solid var(--ink-vapor);
    transition: all var(--t-fast) var(--ease);
}

.hugmenow-item:hover {
    background: var(--ink-vapor);
    border-color: var(--ink-hint);
    transform: translateY(-2px);
}

.hugmenow-item img {
    width: 22px;
    height: 22px;
    opacity: .65;
    filter: invert(1);
    transition: opacity var(--t-fast) var(--ease);
}

.hugmenow-item:hover img { opacity: 1; }

/* Email link */
.cryforhelp {
    display: flex;
    justify-content: center;
}

.cryforhelp a {
    font-size: 15px;
    font-weight: 500;
    padding: 10px var(--space-md);
    background: var(--ink-dust);
    border: 1px solid var(--ink-vapor);
    transition: all var(--t-fast) var(--ease);
}

.cryforhelp a:hover { background: var(--ink-vapor); border-color: var(--ink-hint); }

/* Links list */
.runonsentence {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.runonsentence a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-md);
    font-weight: 500;
    padding: 8px var(--space-md);
    border: 1px solid var(--ink-hint);
    transition: all var(--t-fast) var(--ease);
}

.runonsentence a:hover { background: var(--ink-dust); border-color: var(--ink-ghost); }

.runonsentence svg {
    width: 14px;
    height: 14px;
    opacity: .45;
}

/* Creators */
.blametheseguys {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.blametheseguys a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: .5;
    padding: 3px 6px;
    transition: opacity var(--t-fast) var(--ease);
    justify-content: center;
}

.blametheseguys a:hover { opacity: .7; }

.blametheseguys .wiehrlogo {
    height: 36px;
    width: auto;
}

.blametheseguys .sidekick {
    font-weight: 400;
}

.blametheseguys .sidekick::before {
    content: '·';
    margin-right: 6px;
    opacity: .5;
}

/* --- CASINO PAGE --- */
.russianroulette {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-lg);
}

.russianroulette-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    max-width: 300px;
    width: 100%;
    transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.russianroulette-card.kaput { opacity: 0; transform: scale(.97); }
.russianroulette-card.reborn { animation: popIn .3s var(--ease); }

.russianroulette-cover {
    display: block;
    width: 100%;
    max-width: 300px;
}

.russianroulette-cover img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,.15);
}

.russianroulette-info { text-align: center; width: 100%; }
.russianroulette-title { font-size: var(--fs-lg); font-weight: 600; line-height: 1.2; margin-bottom: 2px; }
.russianroulette-artist { font-size: var(--fs-md); opacity: .65; margin-bottom: 2px; }
.russianroulette-year { font-size: var(--fs-sm); opacity: .4; }

.russianroulette-btn {
    font-size: var(--fs-md);
    font-weight: 500;
    padding: 10px 32px;
    border: 1px solid var(--ink-ghost);
    background: var(--ink-dust);
    transition: all var(--t-fast) var(--ease);
}

.russianroulette-btn:hover { background: var(--ink-vapor); border-color: var(--ink-soft); }
.russianroulette-btn:active { transform: scale(.97); }

/* --- SCROLL TO TOP --- */
.rocketship {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 800;
    opacity: .5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink-dust);
    border: 1px solid var(--ink-vapor);
    transition: all var(--t-fast) var(--ease);
}

.rocketship:hover { opacity: .9; transform: translateY(-2px); background: var(--ink-vapor); }
.rocketship img { width: 16px; height: 16px; }

/* --- ANIMATIONS --- */
@keyframes popIn {
    from { opacity: 0; transform: scale(.97); }
    to { opacity: 1; transform: scale(1); }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--ink-hint); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-ghost); }

/* --- FOCUS --- */
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 1px solid var(--ink);
    outline-offset: 0;
}

/* --- SELECTION --- */
::selection { background: rgba(0,0,0,.12); color: inherit; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet landscape */
@media (max-width: 1024px) {
    .mondayblues { width: 90%; }
    .dopamineshot { width: calc(25% - 12px); max-width: 200px; }
    .overthinking { width: 90%; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .naptime { display: none; }
    .panicbutton { display: flex; }

    .mondayblues { width: 100%; padding: 0 var(--space-sm); }
    .dopamineshot { width: 46%; max-width: 200px; min-width: unset; margin: 4px; }
    .dopamineshot-title { font-size: 13px; }
    .dopamineshot-artist { font-size: 11px; }

    .overthinking {
        flex-direction: column;
        align-items: center;
        width: 92%;
        padding: var(--space-md) 0;
        gap: var(--space-md);
    }
    .overthinking-cover { width: 100%; max-width: 320px; height: auto; }
    .overthinking-cover img { height: auto; }
    .overthinking-meta { width: 100%; align-items: flex-start; }
    .overthinking-name { font-size: 20px; }
    .overthinking-artists { font-size: var(--fs-md); }

    .fridayvibes-link { width: 5rem; height: 4.5rem; }
    .fridayvibes-link img { width: 30px; height: 30px; }
    .fridayvibes-label { font-size: 9px; }

    .stalkerpage { padding: var(--space-lg) var(--space-md); }
    .stalkerpage-name { font-size: clamp(28px, 10vw, 44px); }
    .stalkerpage-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

    .socialanxiety { padding: var(--space-lg) var(--space-sm); overflow: hidden; }
    .socialanxiety-cloud { padding: var(--space-md) var(--space-sm); }

    .lifeisgood img { height: 24px; }

    .rocketship { bottom: var(--space-md); right: var(--space-md); }
}

/* Mobile */
@media (max-width: 480px) {
    .dopamineshot { width: 47%; max-width: 160px; }
    .dopamineshot-title { font-size: 12px; }
    .dopamineshot-artist { font-size: 10px; }

    .overthinking-cover { max-width: 320px; }
    .overthinking-name { font-size: 18px; }

    .fridayvibes-link { width: 4.5rem; height: 4rem; }
    .fridayvibes-link img { width: 28px; height: 28px; }

    .stalkerpage-grid { gap: 12px; }

    .russianroulette-card { max-width: 260px; }
    .russianroulette-title { font-size: var(--fs-base); }

    .calendarconspiracy { display: none; }

    .zoomcall { padding: var(--space-md); }
    .zoomcall-img { max-width: 95%; }
}

/* Very small */
@media (max-width: 360px) {
    .dopamineshot { width: 48%; max-width: 140px; }
    .dopamineshot-title { font-size: 11px; }
    .overthinking-cover { max-width: 280px; }
}

/* Mobile scrollbar hidden */
@media (max-width: 768px) {
    ::-webkit-scrollbar { width: 0; height: 0; }
}
