/* Creator Profile Standards & Themes Styling with Reference Match Upgrades */

:root {
    /* Dynamic Theme Parameters */
    --neon-color-gaming: #8b5cf6; /* Matches stay spooky theme */
    --gaming-border-glow: 0 0 10px rgba(139, 92, 246, 0.2);
    --gaming-shadow-glow: 0 0 20px rgba(139, 92, 246, 0.1);
    --lilac-primary: 258, 90%, 66%;
    --lilac-dark: 258, 90%, 40%;
    --muted-grey: 215, 16%, 47%;
    --ink-dark: 224, 71%, 4%;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset / Container */
.creator-profile-container {
    max-width: 900px;
    margin: 2rem auto;
    background-color: #ffffff;
    border-radius: 32px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: background-color 0.5s ease, border-radius 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

/* 1. Centered Header & Avatar */
.creator-header {
    position: relative;
    width: 100%;
}

.banner-container {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.avatar-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.5s ease;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.flanking-social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 170px;
    height: 44px;
    margin-top: 8px;
    position: relative;
    z-index: 5;
}

.social-side-group {
    display: flex;
    gap: 0.75rem;
}

.profile-info-row {
    margin-top: 10px;
    padding: 0 2rem;
    text-align: center;
}

.profile-name-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.profile-name-flex h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.verified-badge {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-tagline {
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 1rem;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-link img {
    width: 22px;
    height: 22px;
    display: block;
    transition: transform 0.3s ease;
}

.social-icon-link.twitch { background-color: #6441a5; box-shadow: 0 4px 12px rgba(100, 65, 165, 0.35); }
.social-icon-link.youtube { background-color: #ff0000; box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35); }
.social-icon-link.discord { background-color: #5865f2; box-shadow: 0 4px 12px rgba(88, 101, 242, 0.35); }
.social-icon-link.tiktok { background-color: #0f111a; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35); border: 1px solid rgba(255,255,255,0.1); }
.social-icon-link.instagram { background-color: #e1306c; box-shadow: 0 4px 12px rgba(225, 48, 108, 0.35); }
.social-icon-link.whatsapp { background-color: #25d366; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35); }

.social-icon-link.twitch:hover { background-color: #7d5bbe; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(100, 65, 165, 0.55); }
.social-icon-link.youtube:hover { background-color: #ff3333; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 0, 0, 0.55); }
.social-icon-link.discord:hover { background-color: #727ef4; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(88, 101, 242, 0.55); }
.social-icon-link.tiktok:hover { background-color: #222222; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55); }
.social-icon-link.instagram:hover { background-color: #e95988; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(225, 48, 108, 0.55); }
.social-icon-link.whatsapp:hover { background-color: #3ee77e; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.55); }

.social-icon-link:hover img {
    transform: scale(1.1);
}

/* 3. Bento Grid Column Layout */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 2rem 2.5rem 2rem;
    counter-reset: card-counter;
}

@media (min-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.profile-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.profile-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.02);
}

#card-about, #card-gallery {
    position: relative;
    border: 1px solid rgba(245, 158, 11, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #fffbf7 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

#card-about::before, #card-gallery::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, #f59e0b, #e11d48, #8b5cf6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

#card-about:hover, #card-gallery:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.06);
}

#card-about:hover::before, #card-gallery:hover::before {
    opacity: 0.6;
}

/* Gaming Theme overrides for about and gallery cards */
.theme-gaming #card-about, .theme-gaming #card-gallery {
    background: linear-gradient(180deg, #151824 0%, #1c1528 100%);
    border-color: rgba(139, 92, 246, 0.15);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
}
.theme-gaming #card-about::before, .theme-gaming #card-gallery::before {
    background: linear-gradient(135deg, var(--neon-color-gaming), #e11d48);
}

.profile-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-card h3::before {
    counter-increment: card-counter;
    content: counter(card-counter, decimal-leading-zero) " //";
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    color: #94a3b8;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    opacity: 0.85;
}
.theme-gaming .profile-card h3::before {
    color: rgba(255, 255, 255, 0.35);
}

.profile-card h3 span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f5f3ff;
    color: #8b5cf6;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Quick Links Card */
.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    text-decoration: none;
    color: #334155;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04); /* Prominent default shadow */
    transition: var(--transition-smooth);
    min-height: 44px;
}

.quick-link-item:hover {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.06); /* Rich lifting hover shadow */
}

.theme-gaming .quick-link-item:hover {
    background: #1c2030;
}

/* Custom platform theme hover styles */
.quick-link-item.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}
.quick-link-item.youtube:hover .left-sec img {
    background: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
    animation: youtube-pulse 1.2s infinite ease-in-out;
}
.quick-link-item.youtube:hover .arrow-chevron {
    color: #ff0000;
}

.quick-link-item.discord:hover {
    border-color: #5865f2;
    color: #5865f2;
}
.quick-link-item.discord:hover .left-sec img {
    background: #5865f2;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.35);
    animation: discord-wiggle 0.6s infinite ease-in-out;
}
.quick-link-item.discord:hover .arrow-chevron {
    color: #5865f2;
}

.quick-link-item.support:hover {
    border-color: #d97706;
    color: #d97706;
}
.quick-link-item.support:hover .left-sec img {
    background: #d97706;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
    animation: support-float 1.8s infinite ease-in-out;
}
.quick-link-item.support:hover .arrow-chevron {
    color: #d97706;
}

.quick-link-item .left-sec {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quick-link-item .left-sec img {
    width: 28px;
    height: 28px;
    background: #0f172a;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
}

.quick-link-item .arrow-chevron {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: var(--transition-smooth);
}

.quick-link-item:hover .arrow-chevron {
    transform: translateX(5px);
}

/* Animations for Quick Links */
@keyframes youtube-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes discord-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

@keyframes support-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Galerie Polaroid Grid & Stack Effect */
.gallery-polaroids {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
    padding: 0.5rem;
    position: relative;
}

.gallery-polaroid {
    cursor: pointer;
    perspective: 1000px;
    z-index: 1;
    transition: z-index 0s step-end;
}

.gp-inner {
    background: #ffffff;
    padding: 8px 8px 16px 8px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    text-align: center;
}

.gp-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 6px;
}

.gp-caption {
    font-family: 'Caveat', cursive;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 700;
}

/* Overlapping & Rotations (Bulletin Board Collage Style) - cycle indefinitely */
.gallery-polaroid:nth-child(4n+1) .gp-inner { transform: rotate(-3deg) translateY(4px); }
.gallery-polaroid:nth-child(4n+2) .gp-inner { transform: rotate(4deg) translateY(-3px) translateX(-2px); }
.gallery-polaroid:nth-child(4n+3) .gp-inner { transform: rotate(2deg) translateY(-5px) translateX(3px); }
.gallery-polaroid:nth-child(4n+4) .gp-inner { transform: rotate(-4deg) translateY(2px); }

/* Fully modular layout: if odd total children, center the last item across both columns */
.gallery-polaroids:has(.gallery-polaroid:last-child:nth-child(2n+1)) .gallery-polaroid:last-child {
    grid-column: span 2;
    max-width: 135px;
    justify-self: center;
}

/* Interactive Hover Lift & Straighten */
.gallery-polaroid:hover {
    z-index: 10;
    transition: z-index 0s step-start;
}

.gallery-polaroid:hover .gp-inner {
    transform: rotate(0deg) scale(1.1) translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), 0 6px 12px rgba(0, 0, 0, 0.08);
}

.theme-gaming .gallery-polaroid:hover .gp-inner {
    box-shadow: 0 16px 36px rgba(139, 92, 246, 0.35), 0 0 12px rgba(139, 92, 246, 0.2);
}

/* Lightbox Overlay Styling */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 26, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 4px solid #fff;
}

.lightbox-caption {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #fff;
    margin-top: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: -10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Highlights Card */
.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    font-size: 0.85rem;
}

.highlight-row .left-side {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.highlight-row .value {
    font-weight: 800;
    color: #0f172a;
    font-size: 0.95rem;
}

/* Theme Adaptations */
body.theme-clean {
    background: #f7f7fb;
    color: #111025;
}

.theme-clean.creator-profile-container {
    background: #ffffff;
    border: 1px solid #ebe7f4;
    box-shadow: 0 24px 60px rgba(17, 16, 37, 0.14);
}

.theme-clean .profile-card {
    background: #ffffff;
    border: 1px solid #ebe7f4;
    color: #111025;
    box-shadow: 0 14px 34px rgba(17, 16, 37, 0.08);
}

body.theme-modern {
    background:
        radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.28), transparent 28rem),
        radial-gradient(circle at 85% 20%, rgba(96, 165, 250, 0.18), transparent 24rem),
        linear-gradient(135deg, #070719 0%, #120a2c 45%, #080817 100%);
    color: #f7f4ff;
}

.theme-modern.creator-profile-container {
    background: linear-gradient(180deg, rgba(18, 14, 48, 0.88), rgba(10, 9, 28, 0.94));
    border: 1px solid rgba(196, 181, 253, 0.28);
    color: #f7f4ff;
    box-shadow:
        0 32px 90px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(124, 58, 237, 0.18);
    backdrop-filter: blur(18px);
}

.theme-modern .profile-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(196,181,253,0.24);
    color: #f7f4ff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.theme-modern #card-about,
.theme-modern #card-gallery {
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border-color: rgba(196,181,253,0.24);
}

.theme-modern #card-about::before,
.theme-modern #card-gallery::before {
    background: linear-gradient(135deg, rgba(196,181,253,0.55), rgba(96,165,250,0.28));
    opacity: 0.48;
}

.theme-modern .profile-card h3,
.theme-modern .profile-info-row h1,
.theme-modern .profile-name-flex h1 {
    color: #ffffff !important;
}

.theme-modern .profile-tagline,
.theme-modern .about-text-content,
.theme-modern .timeline-text,
.theme-modern .vibe-desc,
.theme-modern .rec-reason {
    color: rgba(247, 244, 255, 0.72);
}

.theme-modern .quick-link-item,
.theme-modern .highlight-row,
.theme-modern .legend-row,
.theme-modern .feed-item,
.theme-modern .day-cell {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 181, 253, 0.18);
    color: #f7f4ff;
}

.theme-modern .avatar-image {
    border-color: rgba(255, 255, 255, 0.86);
}

.theme-modern #profile-footer {
    border-top-color: rgba(196, 181, 253, 0.16) !important;
    color: rgba(247, 244, 255, 0.68) !important;
}

body.theme-gaming {
    background:
        radial-gradient(circle at 18% 8%, rgba(168,85,247,0.22), transparent 26rem),
        radial-gradient(circle at 88% 16%, rgba(34,211,238,0.16), transparent 22rem),
        linear-gradient(135deg, #03040c 0%, #08051a 48%, #03040c 100%);
    color: #f8f4ff;
}

.theme-gaming.creator-profile-container {
    background: linear-gradient(180deg, rgba(8,10,28,0.96), rgba(3,4,12,0.98));
    border: 1px solid rgba(168,85,247,0.42);
    color: #f8fafc;
    box-shadow:
        0 34px 90px rgba(0,0,0,0.62),
        0 0 42px rgba(168,85,247,0.2);
}

.theme-gaming .profile-card {
    background: linear-gradient(180deg, rgba(10,12,32,0.9), rgba(5,6,18,0.92));
    border: 1px solid rgba(168,85,247,0.38);
    color: #f8fafc;
}

.theme-gaming #card-about,
.theme-gaming #card-gallery {
    background: linear-gradient(180deg, rgba(10,12,32,0.92), rgba(5,6,18,0.96));
    border-color: rgba(168,85,247,0.42);
}
.theme-gaming .profile-card h3 {
    color: #fff;
}
.theme-gaming .profile-card h3 span.icon {
    background: rgba(139, 92, 246, 0.15);
    color: var(--neon-color-gaming);
}
.theme-gaming .profile-name-flex h1 {
    color: #fff;
}
.theme-gaming .quick-link-item, .theme-gaming .highlight-row {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45); /* High-contrast shadow for dark theme definition */
}
.theme-gaming .quick-link-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--neon-color-gaming);
    color: var(--neon-color-gaming);
}
.theme-gaming .quick-link-item:hover .icon, .theme-gaming .quick-link-item:hover .arrow-chevron {
    color: var(--neon-color-gaming);
}
.theme-gaming .highlight-row .value {
    color: #fff;
}
.theme-gaming .avatar-image {
    border-color: #151824;
}

/* Mobile Stacking & Reordering Overrides */
@media (max-width: 768px) {
    .action-buttons-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 0.65rem;
    }
    
    .profile-grid {
        padding: 0 1rem 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #card-about {
        order: 1;
    }
    #card-gallery {
        order: 2;
    }
    #card-journey {
        order: 3;
    }
    #card-quicklinks {
        order: 4;
    }
    #card-highlights {
        order: 5;
    }

    /* 1x4 horizontal row side-by-side polaroids on mobile */
    .gallery-polaroids {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        padding: 0.5rem 0.25rem;
    }

    .gallery-polaroid .gp-inner {
        padding: 4px 4px 10px 4px;
        /* Keep the cozy rotations and overlapping card physics on mobile! */
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .gallery-polaroid .gp-caption {
        font-size: 0.65rem;
    }

    .flanking-social-row {
        padding: 0 1.5rem;
        height: auto;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 55px;
    }
}


/* Polaroid Photo Overlay styling */
.polaroid-photo {
    position: absolute;
    top: -18px;
    right: -12px;
    z-index: 10;
    transform: rotate(5deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.polaroid-photo:hover {
    transform: rotate(-2deg) scale(1.08);
}

.polaroid-inner {
    background: #ffffff;
    padding: 8px 8px 16px 8px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    width: 115px;
    text-align: center;
}

.polaroid-inner img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    margin-bottom: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.polaroid-caption {
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 700;
}

.theme-gaming .polaroid-photo:hover .polaroid-inner {
    box-shadow: 0 14px 35px rgba(139, 92, 246, 0.4), 0 0 12px rgba(139, 92, 246, 0.25);
}

/* About Me Lead-in & Bios */
.about-lead-in {
    font-family: 'Caveat', cursive;
    font-size: 1.65rem;
    color: #d97706; /* Cozy warm amber to match orange border context */
    margin-bottom: 0.75rem;
    text-align: left;
    display: inline-block;
    transform: rotate(-2deg);
    transform-origin: left center;
}

.about-text-content {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #475569;
    text-align: left;
}

.theme-gaming .about-lead-in {
    color: var(--neon-color-gaming);
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.theme-gaming .about-text-content {
    color: #cbd5e1;
}

/* Vibe Progress Scales */
.about-vibes {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.vibe-scale {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.vibe-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    transition: var(--transition-smooth);
}

.theme-gaming .vibe-info {
    color: #94a3b8;
}

.vibe-track {
    width: 100%;
    height: 8px;
    background: rgba(217, 119, 6, 0.08); /* warm tint matching the card backdrop */
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.theme-gaming .vibe-track {
    background: #1c2030;
}

.vibe-bar {
    height: 100%;
    border-radius: 99px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease, box-shadow 0.3s ease;
}

.vibe-scale[data-vibe="cozy"] .vibe-bar {
    background: linear-gradient(90deg, #d97706, #fbbf24);
}

.vibe-scale[data-vibe="horror"] .vibe-bar {
    background: linear-gradient(90deg, #be123c, #f43f5e);
}

.vibe-scale[data-vibe="coding"] .vibe-bar {
    background: linear-gradient(90deg, #6d28d9, #a78bfa);
}

/* Interactive hover animations for Vibe Scales */
.vibe-scale:hover .vibe-info {
    transform: translateX(4px);
    color: #0f172a;
}

.theme-gaming .vibe-scale:hover .vibe-info {
    color: #ffffff;
}

.vibe-scale:hover .vibe-track {
    transform: scaleY(1.2);
}

.vibe-scale[data-vibe="cozy"]:hover .vibe-bar {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.vibe-scale[data-vibe="horror"]:hover .vibe-bar {
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.vibe-scale[data-vibe="coding"]:hover .vibe-bar {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

/* Responsive tweaks for Polaroid */
@media (max-width: 480px) {
    .polaroid-photo {
        top: -12px;
        right: -6px;
    }
    .polaroid-inner {
        width: 85px;
        padding: 6px 6px 12px 6px;
    }
    .polaroid-caption {
        font-size: 0.75rem;
    }
}

/* About Me Timeline & Quote Styles */
.about-quote {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 500;
    color: #475569;
    padding-left: 1rem;
    border-left: 4px solid #8b5cf6;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-timeline {
    position: relative;
    padding-left: 1.75rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* Timeline vertical line: Treasure Map Wavy Dashed look */
.about-timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    border-left: 2px dashed rgba(225, 29, 72, 0.45); /* Pink/red tone from the background border gradient */
    background: transparent;
}

.theme-gaming .about-timeline::before {
    border-left-color: rgba(139, 92, 246, 0.55);
}


.timeline-item {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05); /* Extremely visible default shadow */
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-item:hover {
    transform: translateY(-3px); /* Lift card up on hover to feel highly interactive/clickable */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.08); /* Massive hover shadow */
    border-color: rgba(168, 85, 247, 0.3);
}

.timeline-item.active {
    background: #fdfcff;
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.22), 0 8px 16px rgba(168, 85, 247, 0.1); /* Glow shadow for active expanded state */
}

/* Clicking / Interactive indicators for Timeline items */
.timeline-action {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    color: #8b5cf6;
    font-weight: 700;
    transition: all 0.3s ease;
    background: rgba(139, 92, 246, 0.06);
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.timeline-hint {
    opacity: 0.8;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.58rem;
}

.timeline-hint::before {
    content: "Details";
}

.timeline-item.active .timeline-hint::before {
    content: "Zuklappen";
}

.timeline-chevron {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.timeline-item.active .timeline-chevron {
    transform: rotate(180deg);
}

.theme-gaming .timeline-action {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--neon-color-gaming);
}

.theme-gaming .timeline-item {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.02);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75); /* High contrast shadow for dark mode */
}

.theme-gaming .timeline-item:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 20px 48px rgba(139, 92, 246, 0.25), 0 0 15px rgba(139, 92, 246, 0.15);
}

.theme-gaming .timeline-item.active {
    background: #151824;
    border-color: var(--neon-color-gaming);
    box-shadow: 0 20px 48px rgba(139, 92, 246, 0.55), 0 8px 24px rgba(139, 92, 246, 0.3);
}

.timeline-dot {
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #e11d48);
    border: 2px solid #ffffff;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(139, 92, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Adjust dot location for active layout */
.timeline-item.active .timeline-dot {
    top: 18px;
    transform: scale(1.3);
    background: linear-gradient(135deg, #e11d48, #f59e0b); /* shifts gradient colors when active */
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.55);
}

.timeline-item:hover .timeline-dot {
    transform: translateY(-50%) scale(1.25);
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.timeline-item.active:hover .timeline-dot {
    transform: scale(1.4);
}

.theme-gaming .timeline-dot {
    background: linear-gradient(135deg, var(--neon-color-gaming), #e11d48);
    border-color: #151824;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.theme-gaming .timeline-item.active .timeline-dot {
    border-color: #151824;
    box-shadow: 0 0 10px var(--neon-color-gaming);
}

.timeline-content {
    text-align: left;
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #e11d48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    display: inline-block;
}

.timeline-item.active .timeline-year {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    transform: rotate(-3deg);
    display: inline-block;
}

.theme-gaming .timeline-year {
    background: linear-gradient(135deg, var(--neon-color-gaming), #e11d48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Special Featured Milestone card */
.timeline-item.special {
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
    position: relative;
    border: 1px solid transparent;
}

.timeline-item.special::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(135deg, #f59e0b, #e11d48, #8b5cf6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.timeline-item.special:hover::before {
    opacity: 0.75;
}

.timeline-item.special.active::before {
    opacity: 0.9;
}

.special-badge {
    font-size: 0.58rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b, #e11d48);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 0.35rem;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.25);
    display: inline-flex;
    align-items: center;
}

/* Gaming overrides for special item */
.theme-gaming .timeline-item.special {
    background: linear-gradient(135deg, #151824 0%, #20152b 100%);
}

.theme-gaming .timeline-item.special::before {
    background: linear-gradient(135deg, var(--neon-color-gaming), #e11d48, #f59e0b);
}

.theme-gaming .special-badge {
    background: linear-gradient(135deg, var(--neon-color-gaming), #e11d48);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0.4rem 0 0 0;
}

.theme-gaming .timeline-title {
    color: #ffffff;
}

/* Accordion slide animation */
.timeline-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.4s ease;
    margin-top: 0;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.timeline-item.active .timeline-body {
    max-height: 180px; /* Increased to allow text and visual media to render fully */
    opacity: 1;
    margin-top: 0.5rem;
}

.timeline-text {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    flex: 1;
}

.timeline-media {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-media {
    transform: scale(1.04);
}

.theme-gaming .timeline-media {
    border-color: rgba(255, 255, 255, 0.05);
}

.theme-gaming .timeline-text {
    color: #94a3b8;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.tag-pill {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d97706; /* Cozy warm amber */
    background: #fffbeb;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    border: 1px solid #fde68a;
    transition: all 0.2s ease;
}

.tag-pill:hover {
    background: #d97706;
    color: #ffffff;
    border-color: #d97706;
}

/* Theme compatibility overrides for timeline */
.theme-gaming .about-quote {
    border-left-color: var(--neon-color-gaming);
    color: #94a3b8;
}
.theme-gaming .about-timeline::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, var(--neon-color-gaming) 100%);
}
.theme-gaming .timeline-title {
    color: #fff;
}
.theme-gaming .timeline-text {
    color: #94a3b8;
}
.theme-gaming .tag-pill {
    color: var(--neon-color-gaming);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}
.theme-gaming .tag-pill:hover {
    background: var(--neon-color-gaming);
    color: #0f111a;
    border-color: var(--neon-color-gaming);
}

/* Quick Links Layout Upgrades */
.quick-link-wrapper {
    position: relative;
    margin-bottom: 0.75rem;
}

.quick-link-item .right-sec {
    display: flex;
    align-items: center;
}

/* 1. Copy Link Icon Buttons */
.copy-link-btn {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-right: 0.75rem;
    opacity: 0.55; /* Always slightly visible for discovery */
    transform: scale(0.9);
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s, opacity 0.25s, background-color 0.25s, color 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    white-space: nowrap;
}

.quick-link-item:hover .copy-link-btn {
    opacity: 1;
    transform: scale(1);
}

.copy-link-btn:hover {
    color: #0f172a;
    background: #e2e8f0;
}

.theme-gaming .copy-link-btn {
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
}

.theme-gaming .copy-link-btn:hover {
    color: #ffffff;
    background: #1c2030;
}

.copy-link-btn.copied {
    color: #22c55e !important;
    background: rgba(34, 197, 94, 0.1) !important;
}

/* 2. Cursive Handwritten Tooltips */
.quick-link-tooltip {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.9);
    background: #0f172a;
    color: #ffffff;
    font-family: 'Caveat', cursive;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20;
}

.quick-link-tooltip::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #0f172a;
}

.quick-link-wrapper:hover .quick-link-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* 3. YouTube Video Preview Card */
.youtube-preview {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    gap: 0.85rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    margin-top: 0.5rem;
    padding: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16), 0 4px 10px rgba(0, 0, 0, 0.08); /* Stronger shadow for depth and separation */
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.theme-gaming .youtube-preview {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45); /* Deeper shadow for dark mode */
}

.quick-link-wrapper:hover .youtube-preview {
    max-height: 120px;
    opacity: 1;
    padding: 0.75rem;
}

.youtube-preview img {
    width: 110px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.yt-preview-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    text-align: left;
}

.yt-preview-badge {
    background: #ff0000;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    align-self: flex-start;
}

.yt-preview-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.35;
}

.theme-gaming .yt-preview-title {
    color: #cbd5e1;
}

/* Redesigned Highlights Module with SVG Donut Chart */
#card-highlights {
    border: 1px solid rgba(139, 92, 246, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative;
}

#card-highlights:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14), 0 8px 24px rgba(0, 0, 0, 0.04);
}

.theme-gaming #card-highlights {
    background: linear-gradient(180deg, #151824 0%, #171528 100%);
    border-color: rgba(139, 92, 246, 0.15);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
}

.highlights-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .highlights-layout {
        flex-direction: row;
        justify-content: space-around;
        gap: 2rem;
    }
}

.chart-container {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.donut-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Starts segments at the top */
}

.chart-track {
    stroke: #f1f5f9;
}

.theme-gaming .chart-track {
    stroke: #252a3d;
}

.chart-segment {
    transition: stroke-dasharray 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
                stroke-dashoffset 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), 
                stroke 0.4s ease, 
                stroke-width 0.3s ease, 
                filter 0.3s ease;
    stroke-width: 8;
}

.chart-segment:hover {
    stroke-width: 11;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.45));
}

.chart-center-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    line-height: 1.1;
}

.chart-center-title {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    font-weight: 800;
}

.theme-gaming .chart-center-title {
    color: #94a3b8;
}

.chart-center-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0;
}

.theme-gaming .chart-center-val {
    color: #fff;
}

.highlights-legend {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
    width: 100%;
}

.legend-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.theme-gaming .legend-row {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.legend-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.12);
}

.theme-gaming .legend-row:hover {
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.25);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.legend-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.6rem;
    object-fit: contain;
}

.legend-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
}

.theme-gaming .legend-label {
    color: #cbd5e1;
}

.legend-value {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
}

.theme-gaming .legend-value {
    color: #ffffff;
}

/* Category Tabs for Community Card */
.community-tabs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    background: #fafafa;
    padding: 0.25rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.theme-gaming .community-tabs {
    background: #151824;
    border-color: rgba(255, 255, 255, 0.03);
}

.comm-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.35rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.comm-tab.active {
    background: #ffffff;
    color: #8b5cf6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.theme-gaming .comm-tab.active {
    background: #1c2030;
    color: var(--neon-color-gaming);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.comm-tab:hover:not(.active) {
    color: #0f172a;
}

.theme-gaming .comm-tab:hover:not(.active) {
    color: #fff;
}

/* 1. Urgent Announcement Module Styles */
.urgent-announcement {
    background: linear-gradient(90deg, #8b5cf6, #e11d48);
    color: #fff;
    padding: 0.65rem 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    margin: 1.5rem 2rem 1.5rem 2rem;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25), 0 4px 10px rgba(0, 0, 0, 0.05);
}
.ticker-wrap {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    padding-right: 2rem;
}
.ticker-content {
    display: inline-block;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
}
.ticker-marquee {
    animation: marquee 15s linear infinite;
}
@keyframes marquee {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}
.announcement-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.announcement-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* 2. Schedule & Countdown Module Styles */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.btn-ics {
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}
.btn-ics:hover {
    background: #8b5cf6;
    color: #fff;
}
.theme-gaming .btn-ics {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--neon-color-gaming);
}
.theme-gaming .btn-ics:hover {
    background: var(--neon-color-gaming);
    color: #0f111a;
}
.countdown-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
    font-weight: 700;
    border: 1px dashed rgba(139, 92, 246, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.theme-gaming .countdown-badge {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--neon-color-gaming);
}
.schedule-nav-group {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}
.schedule-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    background: #e2e8f0;
    color: #475569;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.schedule-nav-btn:hover {
    background: #cbd5e1;
    color: #1e293b;
    transform: scale(1.05);
}
.theme-gaming .schedule-nav-btn {
    background: #2b3044;
    color: #94a3b8;
}
.theme-gaming .schedule-nav-btn:hover {
    background: var(--neon-color-gaming);
    color: #0f111a;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.45);
}
.week-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.6rem 0.25rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.week-grid::-webkit-scrollbar {
    display: none;
}
.day-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 0.7rem;
    color: #64748b;
    transition: all 0.3s ease;
    flex: 0 0 115px;
    cursor: pointer;
    position: relative;
    user-select: none;
}
.day-cell:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.day-cell.active-selected {
    border-color: #8b5cf6 !important;
    background: #fdfcff;
}
.theme-gaming .day-cell.active-selected {
    border-color: var(--neon-color-gaming) !important;
    background: #25233c;
}
.day-cell.has-events {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.05);
}
.day-cell.has-events::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(135deg, #f59e0b, #e11d48, #8b5cf6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}
.day-cell.has-events:hover::before {
    opacity: 0.75;
}
.theme-gaming .day-cell.has-events {
    background: linear-gradient(180deg, #1c2030 0%, #201a35 100%);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 6px 15px rgba(139, 92, 246, 0.15);
}
.theme-gaming .day-cell.has-events::before {
    background: linear-gradient(135deg, var(--neon-color-gaming), #e11d48);
}
.theme-gaming .day-cell {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
}
@media (min-width: 1024px) {
    #card-schedule {
        grid-column: span 2;
    }
    .week-grid {
        display: grid;
        grid-template-columns: repeat(7, minmax(110px, 1fr));
        overflow-x: auto;
        gap: 0.45rem;
        padding: 0.6rem 0.25rem;
    }
    .day-cell {
        flex: initial;
    }
}
.day-pill {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 78px;
    height: 18px;
    border-radius: 99px;
    font-size: 0.55rem;
    font-weight: 800;
    background: #e2e8f0;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
    flex-shrink: 0;
}
.theme-gaming .day-pill {
    background: #2b3044;
    color: #94a3b8;
}
.day-cell.active-day .day-pill {
    background: linear-gradient(135deg, #8b5cf6, #e11d48);
    color: #ffffff;
}
.event-mini-box {
    width: 100%;
    padding: 3px 5px;
    background: rgba(139, 92, 246, 0.05);
    border-left: 2.5px solid #8b5cf6;
    border-radius: 4px;
    margin-bottom: 3px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: #4c1d95;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.theme-gaming .event-mini-box {
    background: rgba(139, 92, 246, 0.15);
    border-left-color: var(--neon-color-gaming);
    color: #e9d5ff;
}
.event-mini-box:nth-child(2n) {
    border-left-color: #ec4899;
    background: rgba(236, 72, 153, 0.05);
    color: #9d174d;
}
.theme-gaming .event-mini-box:nth-child(2n) {
    background: rgba(236, 72, 153, 0.15);
    border-left-color: #ec4899;
    color: #fbcfe8;
}
.schedule-details-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0;
}
.theme-gaming .schedule-details-panel {
    border-top-color: rgba(255, 255, 255, 0.05);
}
.schedule-details-panel.active {
    max-height: 800px;
    opacity: 1;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
}
.event-detail-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1rem;
}
@media (min-width: 640px) {
    .event-detail-card {
        flex-direction: row;
        align-items: center;
    }
}
.theme-gaming .event-detail-card {
    background: #151824;
    border-color: rgba(255, 255, 255, 0.03);
}
.event-detail-img {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .event-detail-img {
        width: 100px;
        height: 100px;
    }
}
.event-detail-info {
    flex-grow: 1;
}
.event-detail-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}
.theme-gaming .event-detail-title {
    color: #ffffff;
}
.event-detail-meta {
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.event-meta-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    background: #f3e8ff;
    color: #6b21a8;
}
.theme-gaming .event-meta-badge {
    background: rgba(139, 92, 246, 0.25);
    color: #e9d5ff;
}
.event-detail-desc {
    font-size: 0.78rem;
    color: #475569;
    line-height: 1.4;
}
.theme-gaming .event-detail-desc {
    color: #94a3b8;
}

/* 3. Multi-Feed Hub & Floating Player Styles */
.feed-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.feed-item {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.theme-gaming .feed-item {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.feed-item-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
}
.feed-item.audio {
    border-left: 3px solid #8b5cf6;
}
.theme-gaming .feed-item.audio {
    border-left-color: var(--neon-color-gaming);
}
.feed-audio-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.feed-play-btn {
    background: #8b5cf6;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}
.theme-gaming .feed-play-btn {
    background: var(--neon-color-gaming);
    color: #0f111a;
}
.feed-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.45);
}

/* Mini Audio Player Floating */
.mini-audio-player {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    width: calc(100% - 40px);
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mini-audio-player.active {
    transform: translateX(-50%) translateY(0);
}
.theme-gaming .mini-audio-player {
    background: rgba(21, 24, 36, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.player-close {
    position: absolute;
    top: 4px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 1.15rem;
    cursor: pointer;
    color: #94a3b8;
}
.player-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.player-text {
    font-size: 0.8rem;
    line-height: 1.25;
}
.player-title {
    font-weight: 700;
}
.player-time {
    font-size: 0.65rem;
    color: #94a3b8;
}
.player-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.player-btn-play {
    background: #8b5cf6;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
}
.theme-gaming .player-btn-play {
    background: var(--neon-color-gaming);
    color: #0f111a;
}
.player-progress-container {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 99px;
    cursor: pointer;
    position: relative;
}
.theme-gaming .player-progress-container {
    background: rgba(255, 255, 255, 0.1);
}
.player-progress-bar {
    height: 100%;
    background: #8b5cf6;
    border-radius: 99px;
    width: 0%;
}
.theme-gaming .player-progress-bar {
    background: var(--neon-color-gaming);
}

/* 4. Partner & Brand Showcase Styles */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}
.sponsor-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.theme-gaming .sponsor-item {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.sponsor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(139, 92, 246, 0.1);
}
.theme-gaming .sponsor-item:hover {
    box-shadow: 0 10px 22px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.2);
}
.sponsor-logo {
    height: 38px;
    object-fit: contain;
    filter: grayscale(100%) opacity(60%);
    transition: all 0.3s ease;
}
.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%) opacity(100%);
}
.sponsor-code-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
    width: 100%;
    text-align: center;
    margin-top: 0;
}
.sponsor-item.expanded .sponsor-code-panel {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.75rem;
}
.promo-code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
}
.theme-gaming .promo-code-box {
    background: #151824;
    border-color: rgba(139, 92, 246, 0.4);
}
.promo-code-text {
    font-family: monospace;
    font-weight: 700;
    color: #8b5cf6;
}
.theme-gaming .promo-code-text {
    color: var(--neon-color-gaming);
}
.btn-copy-code {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 0.75rem;
    transition: color 0.2s;
}
.btn-copy-code:hover {
    color: #0f172a;
}
.theme-gaming .btn-copy-code:hover {
    color: #fff;
}
.btn-copy-code.copied {
    color: #22c55e !important;
}

/* 5. Niche Recommendation Box (Vibes) Styles */
.vibes-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.vibe-card-tilt {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 0.85rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}
.theme-gaming .vibe-card-tilt {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.vibe-card-tilt:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(139, 92, 246, 0.12);
}
.theme-gaming .vibe-card-tilt:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(139, 92, 246, 0.25);
}
.vibe-cover-wrap {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.vibe-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vibe-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vibe-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.15rem 0;
}
.theme-gaming .vibe-title {
    color: #fff;
}
.vibe-desc {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}
.theme-gaming .vibe-desc {
    color: #cbd5e1;
}
.vibe-score {
    font-size: 0.7rem;
    margin-top: 0.35rem;
    color: #f59e0b;
}

/* 6. Community Wall of Fame Styles */
.wall-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}
.supporter-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 14px;
    padding: 0.85rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.theme-gaming .supporter-card {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.supporter-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(139, 92, 246, 0.1);
}
.supporter-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #8b5cf6;
    margin-bottom: 0.5rem;
    object-fit: cover;
}
.theme-gaming .supporter-avatar {
    border-color: var(--neon-color-gaming);
}
.supporter-name {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0f172a;
}
.theme-gaming .supporter-name {
    color: #fff;
}
.supporter-accordion {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
    width: 100%;
    text-align: center;
}
.supporter-card.expanded .supporter-accordion {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.75rem;
}
.supporter-message {
    font-size: 0.75rem;
    font-style: italic;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.theme-gaming .supporter-message {
    color: #cbd5e1;
}
.supporter-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.btn-supporter-social {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.theme-gaming .btn-supporter-social {
    background: #151824;
    color: #cbd5e1;
}
.btn-supporter-social:hover {
    background: #8b5cf6;
    color: #fff;
}
.theme-gaming .btn-supporter-social:hover {
    background: var(--neon-color-gaming);
    color: #0f111a;
}

/* 7. Creator Recommendations Module Styles */
.recs-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.rec-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.theme-gaming .rec-card {
    background: #1c2030;
    border-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.rec-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.rec-info {
    flex: 1;
}
.rec-name {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.theme-gaming .rec-name {
    color: #fff;
}
.rec-reason {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0.15rem 0 0 0;
}
.theme-gaming .rec-reason {
    color: #cbd5e1;
}
.btn-visit-channel {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    background: #e2e8f0;
    color: #1e293b;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}
.theme-gaming .btn-visit-channel {
    background: #151824;
    color: #cbd5e1;
}

/* --- Multi-Feed Filters & Equalizer Styles --- */
.feed-filters {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}
.feed-filter-btn {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 99px;
    background: #e2e8f0;
    color: #475569;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}
.feed-filter-btn.active {
    background: #8b5cf6;
    color: #fff;
}
.theme-gaming .feed-filter-btn {
    background: #2b3044;
    color: #94a3b8;
}
.theme-gaming .feed-filter-btn.active {
    background: var(--neon-color-gaming);
    color: #0f111a;
}
.feed-audio-row-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.feed-equalizer {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    width: 16px;
    height: 12px;
}
.eq-bar {
    width: 2px;
    height: 100%;
    background-color: #8b5cf6;
    animation: bounce-eq 0.8s ease infinite alternate;
    transform-origin: bottom;
    transform: scaleY(0.1);
}
.theme-gaming .eq-bar {
    background-color: var(--neon-color-gaming);
}
.eq-bar:nth-child(2) { animation-delay: 0.2s; animation-duration: 0.6s; }
.eq-bar:nth-child(3) { animation-delay: 0.4s; animation-duration: 0.9s; }
@keyframes bounce-eq {
    0% { transform: scaleY(0.1); }
    100% { transform: scaleY(1); }
}

/* --- Brand Showcase Glow, Ribbon & Confetti --- */
.sponsor-item {
    position: relative;
    overflow: hidden;
}
.sponsor-ribbon {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.52rem;
    font-weight: 800;
    background: #e11d48;
    color: #fff;
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.theme-gaming .sponsor-ribbon {
    background: #e11d48;
    box-shadow: 0 0 6px #e11d48;
}
/* Confetti effect */
.confetti-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    animation: fly-particle 0.6s ease-out forwards;
    z-index: 10;
}
@keyframes fly-particle {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--x), var(--y)) scale(0); opacity: 0; }
}

/* --- Vibes Holographic Shimmer & Review Panel --- */
.vibe-cover-wrap {
    position: relative;
}
.vibe-cover-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}
.vibe-card-tilt:hover .vibe-cover-wrap::after {
    transform: translateX(100%);
}
.vibe-score span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vibe-card-tilt:hover .vibe-score span {
    transform: scale(1.15) rotate(15deg);
}
.vibe-card-tilt:hover .vibe-score span:nth-child(even) {
    transform: scale(1.15) rotate(-15deg);
}
.vibe-review-btn {
    font-size: 0.65rem;
    font-weight: 700;
    color: #8b5cf6;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    margin-top: 0.35rem;
    display: inline-block;
    transition: opacity 0.2s;
}
.theme-gaming .vibe-review-btn {
    color: var(--neon-color-gaming);
}
.vibe-review-btn:hover {
    opacity: 0.8;
}
.vibe-review-box {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.72rem;
    color: #475569;
    line-height: 1.4;
    border-left: 2px solid #e2e8f0;
    padding-left: 0.5rem;
    margin-top: 0;
}
.theme-gaming .vibe-review-box {
    color: #cbd5e1;
    border-left-color: rgba(255, 255, 255, 0.08);
}
.vibe-review-box.active {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.4rem;
}

/* --- Wall of Fame Role Badges & Avatar Bounce --- */
.supporter-role-badge {
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 4px;
    margin-top: 0.25rem;
    text-transform: uppercase;
}
.supporter-role-badge.moderator {
    background: #f3e8ff;
    color: #7c3aed;
}
.supporter-role-badge.vip {
    background: #fef3c7;
    color: #d97706;
}
.theme-gaming .supporter-role-badge.moderator {
    background: rgba(124, 58, 237, 0.25);
    color: #a78bfa;
}
.theme-gaming .supporter-role-badge.vip {
    background: rgba(217, 119, 6, 0.25);
    color: #fbbf24;
}
.supporter-avatar {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.supporter-card:hover .supporter-avatar {
    transform: scale(1.1) rotate(5deg);
}

/* --- Creator Recommendations Live Dot, Co-op Badge & Video Pop-up Modal --- */
.rec-avatar-wrap {
    position: relative;
    cursor: pointer;
}
.live-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse-live 1.5s infinite;
}
.theme-gaming .live-dot {
    border-color: #1c2030;
}
@keyframes pulse-live {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
.rec-coop-badge {
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
    margin-left: 0.35rem;
    display: inline-block;
    vertical-align: middle;
}
.theme-gaming .rec-coop-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--neon-color-gaming);
    box-shadow: 0 0 4px rgba(139, 92, 246, 0.25);
}
.rec-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #fff;
    font-size: 0.75rem;
}
.rec-avatar-wrap:hover .rec-play-overlay {
    opacity: 1;
}

/* Pop-up Video Modal Styles */
.clip-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.clip-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.clip-modal-content {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.clip-modal-overlay.active .clip-modal-content {
    transform: translateY(0);
}
.theme-gaming .clip-modal-content {
    background: #151824;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.clip-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* --- Quick Links & Story Card Shadow Removal --- */
#card-quicklinks, #card-journey {
    box-shadow: none !important;
}
#card-quicklinks:hover, #card-journey:hover {
    box-shadow: none !important;
}
.theme-gaming #card-quicklinks, .theme-gaming #card-journey {
    box-shadow: none !important;
}
.theme-gaming #card-quicklinks:hover, .theme-gaming #card-journey:hover {
    box-shadow: none !important;
}

/* --- Sponsors Colored Border Gradient Context & Glow --- */
#card-sponsors {
    position: relative;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%) !important;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}
#card-sponsors::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, #10b981, #06b6d4, #8b5cf6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}
#card-sponsors:hover {
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.15), 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}
#card-sponsors:hover::before {
    opacity: 0.65;
}
.theme-gaming #card-sponsors {
    background: linear-gradient(180deg, #151824 0%, #162420 100%) !important;
    border-color: rgba(16, 185, 129, 0.25) !important;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2) !important;
}
.theme-gaming #card-sponsors::before {
    background: linear-gradient(135deg, #10b981, #8b5cf6) !important;
}

/* --- Brand Logo Glow & Prominence Upgrade --- */
.sponsor-logo {
    height: 42px !important;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.06)) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.theme-gaming .sponsor-logo {
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.05)) !important;
}
.sponsor-item:hover .sponsor-logo {
    transform: scale(1.1) rotate(2deg);
}

/* --- Supporter Cards Role-based Colored Borders --- */
.supporter-card.role-moderator {
    border: 2.5px solid #8b5cf6 !important;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.15) !important;
}
.supporter-card.role-moderator:hover {
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.25) !important;
}
.supporter-card.role-vip {
    border: 2.5px solid #f59e0b !important;
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.15) !important;
}
.supporter-card.role-vip:hover {
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25) !important;
}

/* Gaming Theme role overrides */
.theme-gaming .supporter-card.role-moderator {
    border-color: var(--neon-color-gaming) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35) !important;
}
.theme-gaming .supporter-card.role-moderator:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5) !important;
}
.theme-gaming .supporter-card.role-vip {
    border-color: #fbbf24 !important;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35) !important;
}
.theme-gaming .supporter-card.role-vip:hover {
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5) !important;
}
