:root {
    --page-bg: #05050a;
    --card-bg: rgba(12, 12, 20, 0.75);
    --btn-bg: rgba(255, 255, 255, 0.04);
    --btn-border: rgba(255, 255, 255, 0.08);
    --btn-hover-bg: rgba(255, 255, 255, 0.08);
    --btn-hover-border: rgba(255, 235, 0, 0.3);
    --brand-bg: rgba(255, 255, 255, 0.03);
    --brand-border: rgba(255, 255, 255, 0.07);
    --text-main: #f0f0f8;
    --text-muted: #6868a0;
    --accent-yellow: #ffeb00;
    --accent-purple: #a78bfa;
    --accent-blue: #60a5fa;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --font-primary: 'JetBrains Mono', monospace;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--page-bg);
    color: var(--text-main);
    font-family: var(--font-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0.5rem;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255, 235, 0, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 70%),
        #05050a;
    z-index: -2;
}

/* Subtle dot grid */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: -1;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

/* Liquid ambient blobs */
.animated-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 40% 40%, rgba(255, 235, 0, 0.18), rgba(255, 160, 0, 0.08) 50%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: blobFloat 14s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 60% 60%, rgba(124, 58, 237, 0.2), rgba(37, 99, 235, 0.1) 50%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: blobFloat 18s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25%  { transform: translate(40px, -30px) scale(1.06) rotate(5deg); }
    50%  { transform: translate(-20px, 20px) scale(0.95) rotate(-3deg); }
    75%  { transform: translate(20px, 40px) scale(1.03) rotate(2deg); }
}

.main-card {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur) saturate(180%);
    -webkit-backdrop-filter: var(--glass-blur) saturate(180%);
    max-width: 550px;
    width: 100%;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 40px 100px rgba(0, 0, 0, 0.9),
        0 0 80px rgba(255, 235, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Liquid glass top shine */
.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

/* Liquid glass bottom reflection */
.main-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(0deg, rgba(255,235,0,0.02), transparent);
    border-radius: 0 0 24px 24px;
    pointer-events: none;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* --- Header Section --- */
.profile-header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-container {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 2px solid rgba(255, 235, 0, 0.4);
    box-shadow:
        0 0 0 5px rgba(255, 235, 0, 0.06),
        0 0 30px rgba(255, 235, 0, 0.2),
        0 0 60px rgba(255, 180, 0, 0.08);
    position: relative;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg,
        #ffffff 0%,
        #fff8a0 30%,
        #ffeb00 55%,
        #c4b5fd 80%,
        #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    filter: drop-shadow(0 0 20px rgba(255, 235, 0, 0.2));
}

.typewriter-wrapper {
    display: flex;
    align-items: center;
    height: 1.5rem;
}

.brand-subtitle {
    font-size: 0.95rem;
    color: #8b8baa;
    line-height: 1.4;
    font-family: var(--font-primary);
    font-weight: 400;
}

.cursor {
    font-size: 1rem;
    color: #a78bfa;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.contact-email {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: rgba(255, 235, 0, 0.5);
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 235, 0, 0.15);
    border-radius: 20px;
    background: rgba(255, 235, 0, 0.04);
}

.contact-email:hover {
    color: #ffeb00;
    border-color: rgba(255, 235, 0, 0.4);
    background: rgba(255, 235, 0, 0.08);
    box-shadow: 0 0 16px rgba(255, 235, 0, 0.1);
}

/* --- Socials Grid --- */
.socials-section {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.socials-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 400px) {
    .socials-grid {
        grid-template-columns: 1fr;
    }
}

.block-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Glass inner highlight */
.block-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
}

.block-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.brand-instagram:hover { border-color: rgba(225,48,108,0.5) !important; box-shadow: 0 8px 24px rgba(225,48,108,0.2) !important; background: rgba(225,48,108,0.08) !important; }
.brand-tiktok:hover    { border-color: rgba(255,255,255,0.2) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important; }
.brand-kick:hover      { border-color: rgba(83,252,27,0.45) !important; box-shadow: 0 8px 24px rgba(83,252,27,0.12) !important; background: rgba(83,252,27,0.06) !important; }
.brand-x:hover         { border-color: rgba(255,255,255,0.2) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important; }

.block-btn:hover .btn-icon,
.block-btn:hover .btn-text {
    color: #ffffff;
}

.btn-icon {
    font-size: 1.4rem;
    width: 32px;
    display: flex;
    justify-content: center;
    margin-right: 0.8rem;
}

.btn-text {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --- Section Title --- */
.section-title {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9090bb;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section-title::before,
.section-title::after {
    content: '';
    display: block;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.2), transparent);
    margin: 0 12px;
}

/* --- Projects List --- */
.projects-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* Glass shine on cards */
.brand-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.brand-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.15),
        0 0 0 1px rgba(255,255,255,0.05);
    background: rgba(255, 255, 255, 0.06);
}

.brand-card:hover::before {
    opacity: 1.5;
}

/* Project expandable cards */
.projects-list.has-active {
    display: none;
}

.project-detail {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    animation: fadeSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.project-detail.visible {
    display: flex;
}

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

.project-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-detail-identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-detail-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.project-detail-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.project-detail-close {
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

.project-detail-close:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.project-detail-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}

.project-detail-btn {
    align-self: flex-start;
    padding: 0.5rem 1.1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(37, 99, 235, 0.2));
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: 8px;
    color: #c4b5fd;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}

.project-detail-btn:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(37, 99, 235, 0.35));
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    color: #fff;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    box-sizing: border-box;
}

.rounded-logo {
    border-radius: 50%;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-secondary);
    letter-spacing: -0.01em;
}

.brand-subtext {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-primary);
    margin-top: 0.15rem;
}

.brand-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.01));
    pointer-events: none;
}

/* Project card specific hovers — colored glass */
.project-irlcontrol:hover {
    border-color: rgba(220, 38, 38, 0.4) !important;
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.15), inset 0 1px 0 rgba(255,100,100,0.15) !important;
    background: rgba(220, 38, 38, 0.06) !important;
}

.project-irlcloud:hover {
    border-color: rgba(0, 188, 212, 0.4) !important;
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15), inset 0 1px 0 rgba(0,220,255,0.12) !important;
    background: rgba(0, 188, 212, 0.05) !important;
}

.project-irloverlays:hover {
    border-color: rgba(167, 139, 250, 0.4) !important;
    box-shadow: 0 12px 40px rgba(124,58,237,0.15), inset 0 1px 0 rgba(167,139,250,0.15) !important;
    background: rgba(124, 58, 237, 0.06) !important;
}

.project-pointslat:hover {
    border-color: rgba(212, 175, 55, 0.45) !important;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255,220,80,0.15) !important;
    background: rgba(212, 175, 55, 0.05) !important;
}

.project-brunenger-world:hover {
    border-color: rgba(255, 235, 0, 0.35) !important;
    box-shadow: 0 12px 40px rgba(255, 235, 0, 0.1), inset 0 1px 0 rgba(255,235,0,0.12) !important;
    background: rgba(255, 235, 0, 0.04) !important;
}

/* Soon badge */
.badge-silver-soon {
    position: absolute;
    top: 10px;
    right: -28px;
    background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(124,58,237,0.15));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(167,139,250,0.35);
    color: #c4b5fd;
    font-size: 0.58rem;
    font-weight: 700;
    font-family: var(--font-primary);
    padding: 3px 28px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

/* Points.lat icon - neutral */
.points-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.08);
}

/* Support Mail icon */
.support-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.project-support {
    border-color: rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08), inset 0 1px 0 rgba(255,220,80,0.1);
    background: rgba(212, 175, 55, 0.04) !important;
}

.project-support:hover {
    border-color: rgba(212, 175, 55, 0.6) !important;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255,220,80,0.2) !important;
    background: rgba(212, 175, 55, 0.08) !important;
}

/* ===========================================
   TAB NAVIGATION
   =========================================== */
.tab-nav {
    position: relative;
    z-index: 1;
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 1.2rem;
    gap: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 16px rgba(0,0,0,0.3);
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    z-index: 2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tab-btn i {
    font-size: 0.8rem;
}

.tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg,
        rgba(255, 235, 0, 0.15) 0%,
        rgba(124, 58, 237, 0.2) 100%);
    border: 1px solid rgba(255, 235, 0, 0.2);
    box-shadow:
        0 2px 12px rgba(255, 235, 0, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.tab-btn.active i {
    color: #ffeb00;
}

.tab-indicator {
    display: none;
}

/* ===========================================
   TAB CONTENT PANELS
   =========================================== */
.tab-content {
    display: none;
    position: relative;
    z-index: 1;
    animation: tabFadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

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

/* ===========================================
   PRODUCTION CARD STYLES
   =========================================== */
.prod-card {
    cursor: pointer;
    justify-content: space-between;
}

.irl-arrow,
.next-arrow,
.brg-arrow,
.respondete-arrow {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: all 0.25s ease;
    margin-right: 0.25rem;
}

.prod-card:hover .irl-arrow,
.prod-card:hover .next-arrow,
.prod-card:hover .brg-arrow,
.prod-card:hover .respondete-arrow {
    color: #ffffff;
    transform: translateX(3px);
}

.prod-card.prod-irl:hover,
.prod-card.prod-next:hover,
.prod-card.prod-brg:hover,
.prod-card.prod-respondete:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, #161616 0%, #0e0e0e 100%);
}

/* ===========================================
   OVERLAY BASE STYLES (shared)
   =========================================== */
.next-overlay,
.respondete-overlay,
.brg-overlay,
.irl-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.next-overlay.active,
.respondete-overlay.active,
.brg-overlay.active,
.irl-overlay.active {
    opacity: 1;
    visibility: visible;
}

.next-overlay-card,
.respondete-overlay-card,
.brg-overlay-card,
.irl-overlay-card {
    background-color: #0e0e0e;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    padding: 0;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.07),
        0 30px 80px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.next-overlay.active .next-overlay-card,
.respondete-overlay.active .respondete-overlay-card,
.brg-overlay.active .brg-overlay-card,
.irl-overlay.active .irl-overlay-card {
    transform: translateY(0) scale(1);
}

.next-overlay-card::-webkit-scrollbar,
.respondete-overlay-card::-webkit-scrollbar,
.brg-overlay-card::-webkit-scrollbar,
.irl-overlay-card::-webkit-scrollbar {
    width: 4px;
}
.next-overlay-card::-webkit-scrollbar-track,
.respondete-overlay-card::-webkit-scrollbar-track,
.brg-overlay-card::-webkit-scrollbar-track,
.irl-overlay-card::-webkit-scrollbar-track {
    background: transparent;
}
.next-overlay-card::-webkit-scrollbar-thumb,
.respondete-overlay-card::-webkit-scrollbar-thumb,
.brg-overlay-card::-webkit-scrollbar-thumb,
.irl-overlay-card::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Particles canvas in overlays */
#next-particles-canvas,
#respondete-particles-canvas,
#brg-particles-canvas,
#irl-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

/* ===========================================
   OVERLAY HERO SECTIONS
   =========================================== */
.next-hero,
.respondete-hero,
.brg-hero,
.irl-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.next-hero-img,
.respondete-hero-img,
.brg-hero-img,
.irl-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(30%);
}

.next-hero-gradient,
.respondete-hero-gradient,
.brg-hero-gradient,
.irl-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, #0e0e0e 0%, transparent 100%);
}

/* ===========================================
   OVERLAY HEADERS (NEXT)
   =========================================== */
.next-header,
.respondete-header,
.brg-header,
.irl-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    margin-top: -1.5rem;
}

.next-back-btn,
.respondete-back-btn,
.brg-back-btn,
.irl-back-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.next-back-btn:hover,
.respondete-back-btn:hover,
.brg-back-btn:hover,
.irl-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.next-title-group,
.respondete-title-group,
.brg-title-group,
.irl-title-group {
    display: flex;
    flex-direction: column;
}

.next-title,
.respondete-title,
.brg-title,
.irl-title {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.next-subtitle,
.respondete-subtitle,
.brg-subtitle,
.irl-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-primary);
    margin-top: 0.1rem;
    letter-spacing: 0.04em;
}

/* ===========================================
   OVERLAY DESCRIPTIONS
   =========================================== */
.next-description,
.respondete-description,
.brg-description,
.irl-description {
    padding: 0 1.5rem 1.2rem;
    position: relative;
    z-index: 2;
}

.next-description p,
.respondete-description p,
.brg-description p,
.irl-description p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: var(--font-primary);
    line-height: 1.7;
}

.next-description strong,
.respondete-description strong,
.brg-description strong,
.irl-description strong {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

/* ===========================================
   VIDEO GRIDS (shared)
   =========================================== */
.next-video-grid,
.respondete-video-grid,
.brg-video-grid,
.irl-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1.25rem 1.5rem;
    position: relative;
    z-index: 2;
}

.next-video-item,
.respondete-video-item,
.brg-video-item,
.irl-video-item {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.next-video-item:hover,
.respondete-video-item:hover,
.brg-video-item:hover,
.irl-video-item:hover {
    transform: scale(1.02);
}

.next-thumb-wrap,
.respondete-thumb-wrap,
.brg-thumb-wrap,
.irl-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.06);
}

.next-thumb-wrap img,
.respondete-thumb-wrap img,
.brg-thumb-wrap img,
.irl-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) grayscale(20%);
    transition: filter 0.25s ease;
}

.next-video-item:hover .next-thumb-wrap img,
.respondete-video-item:hover .respondete-thumb-wrap img,
.brg-video-item:hover .brg-thumb-wrap img,
.irl-video-item:hover .irl-thumb-wrap img {
    filter: brightness(0.9) grayscale(0%);
}

.next-play-icon,
.respondete-play-icon,
.brg-play-icon,
.irl-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #ffffff;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.next-video-item:hover .next-play-icon,
.respondete-video-item:hover .respondete-play-icon,
.brg-video-item:hover .brg-play-icon,
.irl-video-item:hover .irl-play-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===========================================
   BRG IMAGE GALLERY
   =========================================== */
.brg-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1.25rem 1.5rem;
    position: relative;
    z-index: 2;
}

.brg-image-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.2s ease;
}

.brg-image-item:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.15);
}

.brg-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
    filter: grayscale(20%) brightness(0.85);
    transition: filter 0.25s ease;
}

.brg-image-item:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ===========================================
   PRODUCTION ICON STYLES
   =========================================== */
.prod-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 8px;
    box-sizing: border-box;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.08);
}
