/* ── PREMIUM STORY VIEWER ── */
.story-viewer {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: #080808;
    color: #ffffff;
    font-family: 'Syne', sans-serif;
    height: 100dvh;
    overflow: hidden;
    display: none;
}

.story-viewer.active {
    display: block;
    animation: storyFadeIn 0.5s ease;
}

@keyframes storyFadeIn {
    from { opacity: 0; transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}

#story-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.slide.active {
    opacity: 1;
    pointer-events: all;
}

.slide video, .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, transparent 30%, transparent 55%, rgba(0, 0, 0, .85) 100%);
    pointer-events: none;
}

#progress-bars {
    position: absolute;
    top: 16px; left: 16px; right: 16px;
    display: flex; gap: 4px; z-index: 100;
}

.bar-track { flex: 1; height: 3px; background: rgba(255, 255, 255, 0.2); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; background: #ffffff; border-radius: 2px; width: 0%; }
.bar-fill.done { width: 100% !important; }

#story-header {
    position: absolute;
    top: 36px; left: 16px; right: 16px;
    display: flex; align-items: center; gap: 10px; z-index: 100;
}

#story-header .avatar {
    width: 36px; height: 36px; border-radius: 50%; border: 2px solid #ff2d78;
    background: linear-gradient(135deg, #ff2d78, #00f0ff);
    display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800;
}

#story-header .username { font-size: 14px; font-weight: 700; color: white; }
#story-header .platform-tag {
    font-family: 'Space Mono', monospace; font-size: 10px; padding: 3px 8px; border-radius: 20px;
    background: rgba(255, 255, 255, .12); backdrop-filter: blur(8px); margin-left: auto;
    color: rgba(255, 255, 255, 0.4); text-transform: uppercase;
}

.story-bottom-info { position: absolute; bottom: 40px; left: 20px; right: 20px; z-index: 100; }
.story-bottom-info .slide-label {
    font-family: 'Space Mono', monospace; font-size: 10px; color: #ff2d78; text-transform: uppercase;
    margin-bottom: 6px; opacity: 0; transform: translateY(8px); transition: opacity .4s .1s, transform .4s .1s;
}
.story-bottom-info .slide-title {
    font-size: clamp(22px, 5vw, 32px); font-weight: 800; line-height: 1.1; color: white;
    opacity: 0; transform: translateY(12px); transition: opacity .4s .2s, transform .4s .2s;
}
.slide.active .slide-label, .slide.active .slide-title { opacity: 1; transform: translateY(0); }

#story-sound-btn {
    position: absolute; bottom: 40px; right: 20px; z-index: 110; width: 44px; height: 44px;
    border-radius: 50%; background: rgba(255, 255, 255, .1); backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2); display: flex; align-items: center; justify-content: center; cursor: pointer;
}

#story-close {
    position: absolute; top: 36px; right: 16px; z-index: 150; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    background: rgba(255, 255, 255, 0.1); border-radius: 50%;
}

.nav-btn-story {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 100;
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .08);
    display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: 0.3s;
}
#story-container:hover .nav-btn-story { opacity: 1; }
#story-prev { left: 10px; }
#story-next { right: 10px; }

#story-tap-left, #story-tap-right { position: absolute; top: 0; bottom: 0; width: 35%; z-index: 50; }
#story-tap-left { left: 0; }
#story-tap-right { right: 0; }

#story-cursor {
    position: fixed; width: 12px; height: 12px; background: #ff2d78; border-radius: 50%;
    pointer-events: none; z-index: 9999; transform: translate(-50%, -50%);
    transition: width .15s, height .15s, background .2s; mix-blend-mode: difference; display: none;
}
body.story-active #story-cursor { display: block; }
body.story-active { cursor: none; }
#story-cursor.big { width: 40px; height: 40px; }

@media (max-width: 768px) {
    #story-cursor { display: none !important; }
    body.story-active { cursor: auto; }
    #story-container { max-width: 100%; border-radius: 0; }
}

/* ── ROOT & BASE ── */
:root {
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary: #818cf8;
    --bg-dark: #020617;
    --bg-gradient: radial-gradient(circle at top left, #0f172a 0%, #020617 100%);
    --glass: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(30, 41, 59, 0.8);
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --card-radius: 1.5rem;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

body {
    min-height: 100vh; background: var(--bg-dark); background-image: var(--bg-gradient);
    color: var(--text); display: flex; justify-content: center; padding: 3rem 1rem;
    overflow-x: hidden; position: relative;
}

body::before {
    content: ''; position: fixed; top: -10%; left: -10%; width: 40%; height: 40%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1; pointer-events: none; filter: blur(80px);
}

#app { width: 100%; max-width: 580px; animation: premiumFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1); }

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

/* ── HEADER ── */
.profile-header { text-align: center; margin-bottom: 3.5rem; position: relative; padding-top: 100px; }
.profile-banner {
    position: absolute; top: -3rem; left: 50%; transform: translateX(-50%); width: 100vw; height: 240px;
    background-size: cover; background-position: center; z-index: 0; opacity: 0; transition: opacity 1s ease;
}
.profile-banner.active {
    opacity: 0.6; mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.avatar-container {
    width: 140px; height: 140px; margin: 0 auto 1.5rem; border-radius: 50%; padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); position: relative; z-index: 1;
}
.avatar-container img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid var(--bg-dark); }
h1 {
    font-size: 2.25rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.04em;
    background: linear-gradient(to bottom, #fff, #94a3b8); -webkit-background-clip: text;
    background-clip: text; -webkit-text-fill-color: transparent;
}
#profile-bio { color: var(--text-muted); font-size: 1.1rem; max-width: 420px; margin: 0 auto; line-height: 1.6; font-weight: 300; }

/* ── COMPONENTS ── */
.category-title {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted);
    margin-bottom: 1.5rem; padding-left: 0.75rem; border-left: 2px solid var(--primary);
    font-weight: 600; display: flex; align-items: center; position: relative;
}
.priority-group .category-title { color: var(--text); text-shadow: 0 0 15px var(--primary-glow); }
.priority-group .category-title::after {
    content: ''; position: absolute; left: -10px; top: 50%; transform: translateY(-50%);
    width: 4px; height: 100%; background: var(--primary); box-shadow: 0 0 15px var(--primary); border-radius: 2px;
}

/* ── ANIMATIONS ── */
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shake { 
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}
.anim-shake { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both, shake 0.6s ease-in-out infinite !important; animation-delay: var(--delay), calc(var(--delay) + 1.2s) !important; }
.anim-pulse { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both, pulse 2s ease-in-out infinite !important; animation-delay: var(--delay), calc(var(--delay) + 1.2s) !important; }

/* ── LINKS ── */
.link-card {
    display: flex; align-items: center; gap: 1.25rem; background: var(--glass);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--card-radius);
    padding: 1.2rem 1.75rem; color: var(--text); text-decoration: none; font-size: 1.1rem;
    transition: var(--transition); position: relative; overflow: hidden; margin-bottom: 1rem;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.link-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(15, 23, 42, 0.8));
    border: 1px solid rgba(99, 102, 241, 0.3); padding: 1.75rem 2rem; box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
}
.link-card:hover { background: var(--glass-hover); transform: translateY(-4px) scale(1.02); border-color: rgba(99, 102, 241, 0.5); }
.custom-link-img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; }
.link-icon-container { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: var(--primary); flex-shrink: 0; }
.custom-icon { width: 100%; height: 100%; }
.badge-18plus { position: absolute; right: 1.5rem; background: #ef4444; color: white; font-size: 0.75rem; padding: 2px 8px; border-radius: 6px; font-weight: 700; }

/* ── EVENTS ── */
.events-container { display: flex; flex-direction: column; gap: 1.5rem; }
.event-card {
    display: flex; flex-direction: column; background: var(--glass); backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px); border: 1px solid var(--glass-border); border-radius: 2rem;
    overflow: hidden; transition: var(--transition); position: relative; padding: 1.5rem;
}
.event-card:hover { transform: translateY(-5px); border-color: rgba(99, 102, 241, 0.4); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.event-header { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 1rem; }
.event-date-container { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
.event-date-box {
    position: relative; z-index: 2; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 1.25rem; display: flex; flex-direction: column; justify-content: center;
    align-items: center; font-weight: 800; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden; color: white;
}
.event-date-bg { position: absolute; inset: 0; z-index: 1; opacity: 0.6; object-fit: cover; width: 100%; height: 100%; border-radius: 1.25rem; }
.event-date-box span:first-child { font-size: 1.4rem; line-height: 1; }
.event-date-box span:last-child { font-size: 0.7rem; text-transform: uppercase; margin-top: 2px; }
.event-title-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; font-family: 'Syne', sans-serif; }
.event-countdown { font-size: 0.75rem; font-family: 'Space Mono', monospace; color: var(--primary); background: rgba(99, 102, 241, 0.1); padding: 2px 8px; border-radius: 20px; display: inline-block; }
.event-description { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 1.25rem; position: relative; }
.event-description.collapsed { display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more-btn { background: none; border: none; color: var(--primary); font-weight: 700; font-size: 0.85rem; cursor: pointer; padding: 0; margin-top: -0.5rem; margin-bottom: 1rem; display: block; }
.event-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--glass-border); }
.event-location-link { display: flex; align-items: center; gap: 6px; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.2s; }
.event-location-link:hover { color: var(--primary); }
.event-link { padding: 0.6rem 1.2rem; background: var(--primary); color: white; text-decoration: none; border-radius: 12px; font-size: 0.9rem; font-weight: 700; transition: 0.2s; }
.event-link:hover { transform: scale(1.05); background: var(--secondary); }

/* ── GALLERY ── */
.gallery-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gallery-item { position: relative; aspect-ratio: 1; border-radius: 1.25rem; overflow: hidden; border: 1px solid var(--glass-border); cursor: pointer; }
.gallery-item video, .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item.tiktok-highlight, .gallery-item.instagram-highlight { aspect-ratio: 9/16 !important; }

/* ── FOOTER ── */
.footer { text-align: center; margin-top: 5rem; padding-bottom: 3rem; color: var(--text-muted); }
.social-icons { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.social-icon { font-size: 1.5rem; color: var(--text-muted); transition: var(--transition); }
.social-icon:hover { color: var(--primary); transform: translateY(-3px); }
.social-highlights-section .gallery-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding: 0 0.5rem; }

.instagram-profile-card,
.tiktok-profile-card,
.giphy-profile-card {
    display: block; margin: 0 1rem 1.5rem 1rem; padding: 1rem; text-align: center;
    text-decoration: none; color: white; font-weight: 700; border-radius: 12px;
    background: var(--glass); border: 1px solid var(--glass-border); transition: 0.3s;
}
.instagram-profile-card { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border: none; }
.tiktok-profile-card { background: #000; border: 1px solid #ff0050; box-shadow: 0 0 10px rgba(255, 0, 80, 0.3); }
.instagram-profile-card:hover, .tiktok-profile-card:hover { transform: translateY(-3px); filter: brightness(1.1); }

/* ── GIPHY CUSTOM SECTION ── */
.gp-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3rem;
}
.gp-label::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    background: #a855f7;
    border-radius: 2px;
}

.gp-hero {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.gp-hero:hover {
    transform: translateY(-2px);
    border-color: #a855f7;
    background: rgba(31, 16, 53, 0.4);
}
.gp-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2.5px solid #a855f7;
    overflow: hidden;
    flex-shrink: 0;
}
.gp-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-hero-info { flex: 1; min-width: 0; }
.gp-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 2px; font-family: 'Syne', sans-serif; }
.gp-handle { font-size: 12px; font-family: 'Space Mono', monospace; color: #a855f7; margin-bottom: 12px; }
.gp-stats { display: flex; gap: 20px; }
.gp-stat-num { display: block; font-size: 16px; font-weight: 700; color: #fff; }
.gp-stat-lbl { font-size: 10px; font-family: 'Space Mono', monospace; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.gp-ticker-wrap {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    padding: 10px 0;
    margin-bottom: 10px;
    position: relative;
    backdrop-filter: blur(10px);
}
.gp-ticker-wrap::before, .gp-ticker-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.gp-ticker-wrap::before { left: 0; background: linear-gradient(to right, rgba(15, 23, 42, 0.9), transparent); }
.gp-ticker-wrap::after  { right: 0; background: linear-gradient(to left, rgba(15, 23, 42, 0.9), transparent); }

.gp-ticker {
    display: flex;
    gap: 12px;
    animation: ticker-scroll 22s linear infinite;
    width: max-content;
    padding: 0 12px;
}
.gp-ticker:hover { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.gp-sticker {
    width: 84px; height: 84px; border-radius: 10px; overflow: hidden;
    flex-shrink: 0; background: rgba(0,0,0,0.2); cursor: pointer; transition: transform 0.2s;
}
.gp-sticker:hover { transform: scale(1.12) rotate(-3deg); }
.gp-sticker img { width: 100%; height: 100%; object-fit: contain; display: block; }

.gp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }
.gp-grid-item {
    aspect-ratio: 1; border-radius: 10px; overflow: hidden;
    border: 1px solid var(--glass-border); background: var(--glass);
    cursor: pointer; transition: transform 0.2s, border-color 0.2s;
}
.gp-grid-item:hover { transform: scale(1.04); border-color: #a855f7; }
.gp-grid-item img { width: 100%; height: 100%; object-fit: contain; display: block; }

.gp-cta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 14px; cursor: pointer; transition: 0.1s; text-decoration: none;
    backdrop-filter: blur(10px);
}
.gp-cta:hover { border-color: #a855f7; background: rgba(31, 16, 53, 0.6); }
.gp-cta-left { display: flex; align-items: center; gap: 10px; }
.gp-giphy-logo { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; }
.gp-giphy-logo span:nth-child(1) { color: #00ccff; }
.gp-giphy-logo span:nth-child(2) { color: #57ff8c; }
.gp-giphy-logo span:nth-child(3) { color: #ff6666; }
.gp-giphy-logo span:nth-child(4) { color: #ffcc00; }
.gp-giphy-logo span:nth-child(5) { color: #a855f7; }
.gp-cta-sub { font-size: 11px; color: var(--text-muted); font-family: 'Space Mono', monospace; }
.gp-cta-arrow { color: var(--text-muted); font-size: 16px; }

/* ── MODALS ── */
.modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(8px); }
.modal-content { position: relative; max-width: 500px; width: 100%; aspect-ratio: 9/16; background: #000; border-radius: 20px; overflow: hidden; box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); z-index: 2001; }
.modal-close { position: absolute; top: 15px; right: 15px; background: rgba(255, 255, 255, 0.2); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2100; }
.hidden { display: none !important; }

/* ── AGE GATE ── */
.age-gate { position: fixed; inset: 0; background: rgba(2, 6, 23, 0.95); backdrop-filter: blur(20px); z-index: 5000; display: none; align-items: center; justify-content: center; padding: 2rem; opacity: 0; transition: opacity 0.3s ease; }
.age-gate.active { opacity: 1; display: flex !important; }
.age-gate-content { background: var(--glass); border: 1px solid var(--glass-border); padding: 3rem 2rem; border-radius: 2.5rem; max-width: 420px; width: 100%; text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.age-gate-content h2 { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; color: #ff2d78; }
.btn-confirm { background: #ff2d78; color: white; border: none; padding: 1.25rem; border-radius: 12px; font-weight: 800; cursor: pointer; width: 100%; font-size: 1.1rem; }
.btn-cancel { background: transparent; color: var(--text-muted); border: none; padding: 1rem; cursor: pointer; width: 100%; margin-top: 5px; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 2rem; left: 1rem; right: 1rem; max-width: 500px; margin: 0 auto; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); padding: 1.5rem; border-radius: 1.5rem; z-index: 4000; display: none; justify-content: space-between; align-items: center; gap: 1.5rem; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }
.cookie-banner.active { display: flex; }
.cookie-btn { background: white; color: black; border: none; padding: 0.75rem 1.5rem; border-radius: 10px; font-weight: 800; cursor: pointer; }
.legal-links { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; }
.legal-link { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; }

/* ── PODCAST GRID ── */
.podcast-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
.podcast-grid .link-card { margin-bottom: 0; padding: 1rem; font-size: 0.95rem; gap: 0.75rem; border-radius: 1rem; }
.podcast-grid .link-icon-container { width: 20px; height: 20px; }
.spotify-embed-container { margin-bottom: 1.5rem; border-radius: 12px; overflow: hidden; background: #000; line-height: 0; }

/* ── MOBILE OVERRIDES ── */
@media (max-width: 480px) {
    .social-highlights-section .gallery-container { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; padding: 0; }
    .gallery-container { gap: 0.75rem; }
    .link-card { padding: 1rem 1.25rem; border-radius: 1.25rem; }
    .profile-banner { height: 180px; }
    .podcast-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .cookie-banner { flex-direction: column; text-align: center; bottom: 1rem; gap: 1rem; }
}
