        :root {
            --primary-yellow: #FFD700;
            --primary-purple: #9146FF;
            --primary-cyan: #42dcff;
            --pride-red: #ff5c78;
            --pride-orange: #ff9a3d;
            --pride-green: #38d17c;
            --pride-blue: #42dcff;
            --pride-violet: #b67bff;
            --dark-bg: #0F0F0F;
            --dark-surface: #1A1A1A;
            --darker-surface: #0f0f1a;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --gradient-primary: linear-gradient(135deg, #6d28d9 0%, #a855f7 50%, #7c3aed 100%);
            --gradient-secondary: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-purple) 100%);
            --pride-spectrum: linear-gradient(90deg, var(--pride-red) 0%, var(--pride-orange) 19%, #ffd85a 34%, var(--pride-green) 51%, var(--pride-blue) 72%, var(--pride-violet) 100%);
            --pride-spectrum-flow: repeating-linear-gradient(90deg,
                #e40303 0%,
                #ff8c00 1.75%,
                #ffed00 3.5%,
                #008026 5.25%,
                #24408e 7%,
                #732982 8.75%,
                #5bcefa 10.5%,
                #f5a9b8 12.25%,
                #ffffff 14%,
                #f5a9b8 15.75%,
                #5bcefa 17.5%,
                #613915 19.25%,
                #111111 21%,
                #ffd800 22.75%,
                #7902aa 24%,
                #e40303 25%);
            --pride-spectrum-soft: linear-gradient(110deg, rgba(255, 92, 120, 0.14) 0%, rgba(255, 154, 61, 0.12) 22%, rgba(255, 216, 90, 0.12) 38%, rgba(56, 209, 124, 0.12) 56%, rgba(66, 220, 255, 0.14) 76%, rgba(182, 123, 255, 0.16) 100%);
            --glow-purple: 0 0 20px rgba(145, 70, 255, 0.3);
            --glow-cyan: 0 0 20px rgba(66, 220, 255, 0.3);
            --glow-yellow: 0 0 20px rgba(255, 215, 0, 0.3);

            /* Holiday Theme Colors - Dark Mode Friendly */
            --thanksgiving-orange: #D97706;
            --thanksgiving-brown: #92400E;
            --thanksgiving-gold: #FBBF24;
            --christmas-red: #DC2626;
            --christmas-green: #16A34A;
            --christmas-gold: #FBBF24;
            --newyear-silver: #E5E7EB;
            --newyear-gold: #FBBF24;
            --newyear-blue: #3B82F6;
        }

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

        body {
            font-family: 'Tektur', sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0f2e 50%, #0f1a2e 100%);
            color: var(--text-primary);
            position: relative;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary-cyan);
            border-radius: 50%;
            animation: float-particle 15s infinite linear;
            opacity: 0.4;
        }

        @keyframes float-particle {
            0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.4; }
            90% { opacity: 0.4; }
            100% { transform: translateY(-100px) translateX(50px) rotate(360deg); opacity: 0; }
        }

        /* Holiday Decorations - Auto-hide after each holiday */        .halloween-decorations {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .floating-ghost {
            position: absolute;
            font-size: 2rem;
            opacity: 0.7;
            animation: float 6s ease-in-out infinite;
        }

        .floating-ghost:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-ghost:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-ghost:nth-child(3) {
            top: 60%;
            left: 15%;
            animation-delay: 4s;
        }

        .floating-pumpkin {
            position: absolute;
            font-size: 1.5rem;
            opacity: 0.6;
            animation: bounce 4s ease-in-out infinite;
        }

        .floating-pumpkin:nth-child(4) {
            bottom: 20%;
            right: 5%;
            animation-delay: 1s;
        }

        .floating-pumpkin:nth-child(5) {
            bottom: 40%;
            left: 8%;
            animation-delay: 3s;
        }

        .floating-bat {
            position: absolute;
            font-size: 1.2rem;
            opacity: 0.5;
            animation: fly 8s linear infinite;
        }

        .floating-bat:nth-child(6) {
            top: 15%;
            animation-delay: 0s;
        }

        .floating-bat:nth-child(7) {
            top: 35%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-15px) scale(1.1); }
        }

        @keyframes fly {
            0% { transform: translateX(-100px); }
            100% { transform: translateX(calc(100vw + 100px)); }
        }

        .halloween-glow {
            box-shadow: 0 0 20px rgba(255, 165, 0, 0.3) !important;
        }

        /* Halloween theme for hero section */
        .hero-section.halloween-theme::before {
            background: radial-gradient(circle at center, rgba(255, 165, 0, 0.1) 0%, rgba(139, 69, 19, 0.05) 70%) !important;
        }



        /* Christmas/Winter Theme - Dark Mode Friendly */
        .hero-section.christmas-theme {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.25) 0%, rgba(22, 163, 74, 0.2) 50%, rgba(251, 191, 36, 0.15) 100%) !important;
        }

        .hero-section.christmas-theme::before {
            background: radial-gradient(circle at center, rgba(220, 38, 38, 0.12) 0%, rgba(22, 163, 74, 0.08) 70%) !important;
        }

        .christmas-glow {
            box-shadow: 0 0 20px rgba(220, 38, 38, 0.35), 0 0 10px rgba(22, 163, 74, 0.25) !important;
        }

        /* New Year Theme - Dark Mode Friendly */
        .hero-section.newyear-theme {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(251, 191, 36, 0.2) 50%, rgba(229, 231, 235, 0.15) 100%) !important;
        }

        .hero-section.newyear-theme::before {
            background: radial-gradient(circle at center, rgba(59, 130, 246, 0.12) 0%, rgba(251, 191, 36, 0.08) 70%) !important;
        }

        .newyear-glow {
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.35), 0 0 10px rgba(251, 191, 36, 0.25) !important;
        }

        /* Cool Animations */
        @keyframes glow-text {
            0% { text-shadow: var(--glow-cyan); }
            100% { text-shadow: 0 0 30px rgba(66, 220, 255, 0.8), 0 0 40px rgba(66, 220, 255, 0.4); }
        }

        @keyframes fade-in-up {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes slide-in-left {
            0% { opacity: 0; transform: translateX(-50px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes slide-in-right {
            0% { opacity: 0; transform: translateX(50px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        /* Cool Logo Animations */
        @keyframes glow-yellow {
            0% { text-shadow: 0 0 10px rgba(255, 230, 0, 0.5), 0 0 20px rgba(255, 230, 0, 0.3), 0 0 30px rgba(255, 230, 0, 0.2); }
            100% { text-shadow: 0 0 15px rgba(255, 230, 0, 0.8), 0 0 25px rgba(255, 230, 0, 0.5), 0 0 35px rgba(255, 230, 0, 0.3); }
        }

        @keyframes glow-purple {
            0% { text-shadow: 0 0 10px rgba(145, 70, 255, 0.5), 0 0 20px rgba(145, 70, 255, 0.3), 0 0 30px rgba(145, 70, 255, 0.2); }
            100% { text-shadow: 0 0 15px rgba(145, 70, 255, 0.8), 0 0 25px rgba(145, 70, 255, 0.5), 0 0 35px rgba(145, 70, 255, 0.3); }
        }

        @keyframes pulse-line {
            0% { transform: scaleX(1); opacity: 1; }
            50% { transform: scaleX(1.05); opacity: 0.8; }
            100% { transform: scaleX(1); opacity: 1; }
        }

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

        .cool-logo:hover .team-text {
            animation: glow-yellow 0.5s ease-in-out infinite alternate;
        }

        .cool-logo:hover .midnite-text {
            animation: glow-purple 0.5s ease-in-out infinite alternate;
        }

        .cool-logo:hover {
            transform: scale(1.05);
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced card hover effects */
        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-cyan);
            box-shadow: var(--glow-cyan);
        }

        .charity-event:hover {
            transform: translateY(-5px);
            border-color: var(--primary-cyan);
            box-shadow: 0 0 30px rgba(66, 220, 255, 0.4);
        }
        hr {
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
            margin: 3rem auto;
            width: 100%;
            opacity: 0.5;
            box-shadow: 0 0 10px rgba(145, 70, 255, 0.3);
        }
        .streamer-carousel {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(66, 220, 255, 0.12) 0%, rgba(17, 17, 34, 0.92) 50%, rgba(145, 70, 255, 0.12) 100%);
            margin: 3rem 0;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            width: 100%;
            border: 1px solid rgba(66, 220, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .streamer-carousel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 20px 20px 0 0;
        }
        .streamer-carousel .glide__track {
            overflow: visible;
            padding: 20px 0;
            will-change: transform;
        }
        .streamer-carousel .glide__slide {
            transition: transform 0.3s ease;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            will-change: transform;
            backface-visibility: hidden;
        }
        .streamer-carousel .glide__slides {
            backface-visibility: hidden;
            transform: translateZ(0);
        }
        .streamer-carousel .glide__slide img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 4px solid var(--primary-cyan);
            transition: all 0.3s ease;
            object-fit: cover;
            box-shadow: var(--glow-cyan);
            margin-bottom: 1.5rem;
        }
        .streamer-carousel .streamer-name {
            color: var(--text-primary);
            font-family: 'Tektur', sans-serif;
            font-size: 1.2rem;
            margin-top: 0.5rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(66, 220, 255, 0.3);
        }
            .streamer-carousel .role-badge {
                display: inline-block;
                margin-top: 0.35rem;
                padding: 2px 8px;
                font-size: 0.85rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                color: #08120A;
                background: #00c853;
                border-radius: 6px;
                box-shadow: 0 0 10px rgba(0, 200, 83, 0.25), inset 0 0 0 1px rgba(0,0,0,0.25);
            }
            .streamer-carousel .founder-badge {
                display: inline-block;
                margin-top: 0.35rem;
                padding: 2px 8px;
                font-size: 0.85rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                color: #ffffffff;
                background: #4f0578ff;
                border-radius: 6px;
                box-shadow: 0 0 10px rgba(0, 200, 83, 0.25), inset 0 0 0 1px rgba(0,0,0,0.25);
            }

        .streamer-carousel .twitch-badge {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%239146FF"><path d="M11.571 4.714h1.715v5.143H11.57zm4.715 0H18v5.143h-1.714zM6 0L1.714 4.286v15.428h5.143V24l4.286-4.286h3.428L22.286 12V0zm14.571 11.143l-3.428 3.428h-3.429l-3 3v-3H6.857V1.714h13.714z"/></svg>') no-repeat center/contain;
            transition: all 0.3s ease;
            filter: drop-shadow(0 0 5px rgba(145, 70, 255, 0.5));
            margin-top: 0.5rem;
        }
        .streamer-carousel .twitch-badge:hover {
            transform: scale(1.2);
            filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
        }
            /* When a role badge is present, stack the Twitch badge below it */
            .streamer-carousel .role-badge + .twitch-badge {
                display: block;
                margin: 0.4rem auto 0;
            }

            /* When a role badge is present, stack the Twitch badge below it */
            .streamer-carousel .founder-badge + .twitch-badge {
                display: block;
                margin: 0.4rem auto 0;
            }

        .streamer-carousel .glide__slide:hover img {
            transform: scale(1.08);
            border-color: var(--primary-yellow);
            box-shadow: var(--glow-yellow);
        }
        .glide__arrow {
            background: linear-gradient(135deg, rgba(17, 17, 34, 0.92) 40%, rgba(66, 220, 255, 0.12) 100%);
            border: 2px solid var(--primary-cyan);
            color: var(--text-primary);
            padding: 1rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: var(--glow-cyan);
        }
        .glide__arrow:hover {
            background: var(--primary-cyan);
            border-color: var(--primary-yellow);
            box-shadow: var(--glow-yellow);
            transform: scale(1.1);
        }

        /* Glide performance improvements */
        .glide {
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }
        .glide * {
            box-sizing: inherit;
        }
        .glide__track {
            overflow: hidden;
        }
        .glide__slides {
            position: relative;
            width: 100%;
            list-style: none;
            backface-visibility: hidden;
            transform-style: preserve-3d;
            touch-action: pan-Y;
            overflow: hidden;
            margin: 0;
            padding: 0;
            white-space: nowrap;
        }
        .glide__slides--dragging {
            user-select: none;
        }
        .glide__slide {
            position: relative;
            white-space: normal;
            user-select: none;
            -webkit-touch-callout: none;
            -webkit-tap-highlight-color: transparent;
        }
        .streamer-carousel-title {
            color: var(--primary-cyan);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 900;
            text-shadow: var(--glow-cyan);
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            animation: glow-text 3s ease-in-out infinite alternate;
        }
        .streamer-of-week {
            background: var(--darker-surface);
            border-radius: 20px;
            padding: 0;
            margin: 3rem 0;
            border: 1px solid rgba(66, 220, 255, 0.2);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: var(--glow-cyan);
        }
        .streamer-of-week::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 20px 20px 0 0;
            z-index: 2;
        }
        .streamer-of-month-section {
            margin-top: 5rem !important;
            margin-bottom: 1.5rem !important;
        }
        .streamer-of-week-section {
            margin-top: 1.5rem !important;
        }
        .streamer-of-month::before {
            background: linear-gradient(90deg, var(--primary-yellow), var(--primary-cyan), var(--primary-purple));
        }
        .streamer-of-month .streamer-header {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(66, 220, 255, 0.08) 50%, rgba(145, 70, 255, 0.1) 100%);
        }
        .streamer-of-month {
            border-color: rgba(255, 230, 0, 0.28);
            box-shadow: 0 0 35px rgba(255, 230, 0, 0.12);
        }
        .streamer-of-week:not(.streamer-of-month) .streamer-header {
            background: radial-gradient(circle at top right, rgba(66, 220, 255, 0.13), transparent 45%),
                        linear-gradient(135deg, rgba(145, 70, 255, 0.12), rgba(12, 12, 24, 0.3));
        }
        .streamer-of-month .streamer-avatar {
            width: 140px;
            height: 140px;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 28px rgba(255, 215, 0, 0.28);
        }
        .streamer-header {
            padding: 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(145, 70, 255, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
        }
        .streamer-feature-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            padding: 0.45rem 0.9rem;
            border: 1px solid rgba(66, 220, 255, 0.3);
            border-radius: 999px;
            color: var(--primary-cyan);
            background: rgba(66, 220, 255, 0.08);
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .streamer-of-month .streamer-feature-label {
            color: var(--primary-yellow);
            border-color: rgba(255, 230, 0, 0.35);
            background: rgba(255, 230, 0, 0.08);
        }
        .streamer-feature-label + .streamer-of-week-title {
            margin-top: 0;
        }
        .streamer-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            border: 4px solid var(--primary-purple);
            box-shadow: 0 0 20px rgba(145, 70, 255, 0.3);
            transition: all 0.3s ease;
        }
        .streamer-avatar:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
            border-color: var(--primary-yellow);
        }
        .clips-section {
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(66, 220, 255, 0.12);
        }
        .streamer-of-month .clips-section {
            background: linear-gradient(180deg, rgba(255, 230, 0, 0.045), rgba(0, 0, 0, 0.22));
            border-top-color: rgba(255, 230, 0, 0.14);
        }
        .clips-carousel {
            position: relative;
            margin-top: 1rem;
        }
        .clips-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        /* Special styling for single clip - make it centered and larger */
        .clips-grid.single-clip {
            grid-template-columns: 1fr;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .clips-grid.single-clip .clip-card {
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(145, 70, 255, 0.3);
        }
        .clips-grid.single-clip .clip-thumbnail {
            height: 320px;
        }
        .clips-grid.single-clip .clip-info {
            padding: 1.5rem;
        }
        .clips-grid.single-clip .clip-title {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }
        .clips-grid.single-clip .clip-stats {
            font-size: 0.9rem;
        }
        .clip-card {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            color: inherit;
            text-decoration: none;
        }
        .clip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(145, 70, 255, 0.2);
            border-color: var(--primary-purple);
            color: inherit;
        }
        .clip-thumbnail {
            width: 100%;
            aspect-ratio: 16 / 9;
            height: auto;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        .clip-card:hover .clip-thumbnail {
            transform: scale(1.05);
        }
        .clip-info {
            padding: 1rem;
        }
        .clip-title {
            color: var(--text-primary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .clip-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        .clip-views {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .clip-duration {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
        }
        @media (max-width: 991.98px) {
            .clips-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 575.98px) {
            .streamer-header,
            .clips-section {
                padding: 1.35rem;
            }
            .clips-grid {
                grid-template-columns: 1fr;
            }
            .streamer-actions .btn {
                width: 100%;
            }
        }
        .streamer-live-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ff0000;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }
        .streamer-live-indicator::before {
            content: '🔴';
            animation: blink 1s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }
        .streamer-title {
            color: var(--primary-yellow);
            font-size: 2rem;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        body {
            font-family: 'Tektur', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            background: var(--dark-bg);
            position: relative;
            min-height: 100vh;
        }
        .navbar {
            background: var(--dark-surface);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1040;
            padding: 1rem 0;
        }

        /* Ensure modal appears above navbar on mobile */
        .modal-backdrop {
            z-index: 1045;
        }
        .modal {
            z-index: 1046;
        }

        /* Handle mobile menu collapse */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                transition: all 0.3s ease;
            }
            .navbar-collapse.collapsing {
                height: auto;
            }
            .modal.show {
                background: rgba(0,0,0,0.5);
            }
        }
        .navbar-brand, .nav-link {
            color: var(--text-primary) !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-purple) !important;
            text-shadow: 0 0 10px rgba(145, 70, 255, 0.5);
        }
        .navbar-toggler {
            border-color: #7289da;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(114, 137, 218, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .hero-section {
            padding: 120px 0 140px;
            text-align: center;
            background:
                radial-gradient(circle at 15% 15%, rgba(66, 220, 255, 0.18), transparent 45%),
                radial-gradient(circle at 85% 20%, rgba(255, 230, 0, 0.12), transparent 45%),
                radial-gradient(circle at 70% 85%, rgba(139, 92, 246, 0.2), transparent 45%),
                linear-gradient(160deg, #0a0b12 0%, #121527 45%, #0b0d1c 100%);
            position: relative;
            overflow: hidden;
            border-radius: 0;
            margin: -2.6cm 0;
            z-index: 10;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(124, 249, 255, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(124, 249, 255, 0.06) 1px, transparent 1px);
            background-size: 32px 32px;
            mask-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.9), transparent 65%);
            pointer-events: none;
            opacity: 0.5;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            right: -120px;
            top: 40px;
            width: 320px;
            height: 8px;
            background: linear-gradient(90deg, rgba(255, 230, 0, 0.05), #ffe600, rgba(124, 249, 255, 0.25));
            box-shadow: 0 0 24px rgba(255, 230, 0, 0.4);
            transform: rotate(12deg);
            opacity: 0.7;
        }
        .hero-section.pride-flair {
            background:
                radial-gradient(circle at 10% 12%, rgba(255, 92, 120, 0.16), transparent 34%),
                radial-gradient(circle at 28% 18%, rgba(255, 154, 61, 0.14), transparent 32%),
                radial-gradient(circle at 46% 14%, rgba(255, 216, 90, 0.12), transparent 30%),
                radial-gradient(circle at 65% 18%, rgba(56, 209, 124, 0.14), transparent 34%),
                radial-gradient(circle at 82% 16%, rgba(66, 220, 255, 0.16), transparent 34%),
                radial-gradient(circle at 93% 10%, rgba(182, 123, 255, 0.18), transparent 28%),
                linear-gradient(160deg, #090b14 0%, #121527 45%, #0b0d1c 100%);
        }
        .hero-section.pride-flair::after {
            content: none;
            display: none;
        }
        .hero-content {
            max-width: 960px;
            margin: 3rem auto 0;
            padding: 2.5rem 2.5rem 2.2rem;
            background: rgba(15, 18, 30, 0.6);
            border: 1px solid rgba(66, 220, 255, 0.22);
            border-radius: 24px;
            backdrop-filter: blur(18px);
            position: relative;
            overflow: hidden;
            box-shadow:
                0 18px 40px rgba(0, 0, 0, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
        }
        .hero-section.pride-flair .hero-content {
            border-color: rgba(255, 255, 255, 0.14);
            box-shadow:
                0 18px 46px rgba(0, 0, 0, 0.38),
                0 0 0 1px rgba(255, 255, 255, 0.04),
                0 0 36px rgba(182, 123, 255, 0.12);
        }
        .hero-section.pride-flair .hero-content::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 10% 12%, rgba(255, 92, 120, 0.11), transparent 24%),
                radial-gradient(circle at 90% 18%, rgba(66, 220, 255, 0.12), transparent 26%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%);
            opacity: 0.95;
        }
        .hero-section.pride-flair .hero-content::after {
            content: '';
            display: none;
        }
        .hero-pride-rail {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            overflow: hidden;
            pointer-events: none;
            z-index: 3;
        }
        .hero-pride-rail-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 400%;
            height: 100%;
            background: var(--pride-spectrum-flow);
            background-size: 100% 100%;
            z-index: 1;
            filter: saturate(1.15);
            transform: translate3d(0, 0, 0);
            will-change: transform;
            animation: prideSpectrumRailFlat 14s linear infinite;
        }
        @keyframes prideSpectrumRailFlat {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(-25%, 0, 0);
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-pride-rail-track {
                animation: none;
                transform: none;
                width: 100%;
            }
        }
        html.pride-force-motion .hero-pride-rail-track {
            width: 400% !important;
            animation: prideSpectrumRailFlat 14s linear infinite !important;
        }
        .hero-kicker,
        .hero-title,
        .hero-subtitle,
        .hero-pride-panel,
        .hero-stats {
            position: relative;
            z-index: 2;
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.72rem 1.15rem;
            border-radius: 999px;
            background: rgba(8, 10, 18, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
            margin: 0 auto 1.2rem;
            font-size: 0.92rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.95);
        }
        .hero-kicker-dot {
            width: 0.8rem;
            height: 0.8rem;
            border-radius: 50%;
            background: var(--pride-spectrum);
            box-shadow: 0 0 18px rgba(255, 154, 61, 0.45);
            flex-shrink: 0;
        }
        .hero-kicker-note {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.82rem;
            letter-spacing: 0.03em;
            text-transform: none;
            font-weight: 600;
        }
        .hero-pride-panel {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.2rem;
            max-width: 760px;
            margin: 0 auto 1.9rem;
            padding: 1rem 1.25rem;
            border-radius: 20px;
            background: rgba(7, 9, 17, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
            text-align: left;
        }
        .hero-pride-logo {
            width: clamp(190px, 24vw, 280px);
            height: auto;
            display: block;
            filter: drop-shadow(0 0 18px rgba(255, 154, 61, 0.2));
            flex-shrink: 0;
        }
        .hero-pride-copy {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .hero-pride-label {
            display: inline-block;
            width: fit-content;
            max-width: 100%;
            padding: 0.28rem 0.75rem;
            border-radius: 999px;
            background: var(--pride-spectrum-soft);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: rgba(255, 255, 255, 0.96);
            font-size: 0.84rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .hero-pride-text {
            margin: 0;
            color: rgba(255, 255, 255, 0.88);
            font-size: 1rem;
            line-height: 1.55;
        }
        .hero-title {
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-weight: 900;
            font-size: 3.2rem;
            margin-bottom: 1.2rem;
            color: #f7f7ff;
            text-shadow: 0 0 18px rgba(66, 220, 255, 0.45);
        }
        .hero-title .hero-accent {
            background: linear-gradient(90deg, #7cf9ff 0%, #ffe600 50%, #9f7bff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-subtitle {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.35rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.6;
        }
        .hero-subtitle-note {
            display: block;
            margin-top: 0.45rem;
            font-size: 1.02rem;
            color: rgba(255, 255, 255, 0.72);
        }
        .hero-stats {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 2rem 0 0;
            flex-wrap: wrap;
        }
        .hero-stat {
            background: rgba(8, 10, 18, 0.75);
            border: 1px solid rgba(66, 220, 255, 0.2);
            border-radius: 16px;
            padding: 1.2rem 1.6rem;
            min-width: 200px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        .hero-stat:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(66, 220, 255, 0.2);
        }
        .hero-stat-value {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--primary-yellow);
            margin-bottom: 0.4rem;
        }
        .hero-stat-label {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-stat-value.cyan {
            color: #00d4ff;
        }
        .hero-activity {
            position: relative;
            z-index: 2;
            margin-top: 1.35rem;
        }
        .hero-activity-heading {
            margin-bottom: 0.7rem;
            color: rgba(255, 255, 255, 0.56);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .hero-activity-stats {
            display: flex;
            justify-content: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }
        .hero-activity-stat {
            min-width: 150px;
            padding: 0.78rem 1.15rem;
            border: 1px solid rgba(145, 70, 255, 0.2);
            border-radius: 12px;
            background: rgba(8, 10, 18, 0.48);
        }
        .hero-activity-value {
            color: #bf94ff;
            font-size: 1.35rem;
            font-weight: 900;
        }
        .hero-activity-label {
            margin-top: 0.15rem;
            color: rgba(255, 255, 255, 0.64);
            font-size: 0.76rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        /* Team Access Cards */
        .tm-access-section {
            width: min(1320px, calc(100% - 48px));
            margin: 72px auto 88px;
            padding: 0;
        }
        .tm-access-heading {
            text-align: center;
            margin-bottom: 48px;
        }
        .tm-access-main-title {
            margin: 0 0 12px;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            background: linear-gradient(110deg, #ffe600 10%, #d58ed8 50%, #8a42f5 90%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 18px rgba(145, 70, 255, 0.35));
        }
        .tm-access-subtitle {
            margin: 0;
            color: rgba(255, 255, 255, 0.55);
            font-size: 1.1rem;
            letter-spacing: 0.02em;
        }
        .tm-access-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }
        .tm-access-card {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 255px;
            padding: 34px 34px 30px;
            overflow: hidden;
            background:
                linear-gradient(#0c0d17, #0c0d17) padding-box,
                linear-gradient(90deg, #ffe600, #b640ff) border-box;
            border: 1px solid transparent;
            border-radius: 18px;
            box-shadow:
                0 16px 36px rgba(0, 0, 0, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.025);
        }
        .tm-access-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #ffe600, #d58ed8, #8c35ff);
        }
        .tm-access-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 0 0 20px;
            color: #ffe600;
            font-size: clamp(1.35rem, 1.7vw, 1.75rem);
            line-height: 1.12;
            text-transform: none;
        }
        .tm-access-icon {
            flex: 0 0 auto;
            width: 28px;
            text-align: center;
            font-size: 1.35rem;
        }
        .tm-icon-cyan  { color: #42dcff; }
        .tm-icon-yellow { color: #ffe600; }
        .tm-access-intro {
            margin: 0 0 4px;
            color: #f1f1f5;
            font-size: 1.05rem;
            line-height: 1.5;
        }
        .tm-access-list {
            display: grid;
            gap: 5px;
            margin: 0 0 22px;
            padding: 0;
            color: #f1f1f5;
            font-size: 1.04rem;
            line-height: 1.35;
            list-style: none;
        }
        .tm-access-list li {
            display: flex;
            align-items: center;
            gap: 9px;
        }
        .tm-access-list li i {
            width: 15px;
            color: #42dcff;
            font-size: 0.8rem;
            text-align: center;
        }
        .tm-list-yellow li i { color: #ffe600; }
        .tm-access-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            min-width: 164px;
            min-height: 54px;
            margin-top: auto;
            padding: 13px 26px;
            color: #fff;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            background: linear-gradient(110deg, #ffd400, #c27bd2, #8a42f5);
            border: 0;
            border-radius: 11px;
            box-shadow: 0 10px 24px rgba(145, 70, 255, 0.2);
            transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
        }
        .tm-access-button:hover,
        .tm-access-button:focus-visible {
            color: #fff;
            transform: translateY(-2px);
            filter: brightness(1.08);
            box-shadow: 0 14px 30px rgba(145, 70, 255, 0.3), 0 0 18px rgba(66, 220, 255, 0.12);
        }
        @media (max-width: 980px) {
            .tm-access-grid {
                grid-template-columns: 1fr;
            }
            .tm-access-card {
                min-height: auto;
            }
        }
        @media (max-width: 600px) {
            .tm-access-section {
                width: min(100% - 28px, 1320px);
                margin: 52px auto 68px;
            }
            .tm-access-card {
                padding: 28px 24px 24px;
            }
            .tm-access-button {
                width: 100%;
            }
        }
        .mobile-app-prompt {
            display: none;
        }
        @media (max-width: 767px) {
            .mobile-app-prompt {
                position: fixed;
                left: 14px;
                right: 14px;
                bottom: calc(96px + env(safe-area-inset-bottom, 0px));
                z-index: 9998;
                display: none;
                align-items: center;
                gap: 12px;
                padding: 12px;
                background:
                    radial-gradient(circle at 20% 15%, rgba(66, 220, 255, 0.20), transparent 45%),
                    linear-gradient(135deg, rgba(17, 17, 34, 0.98), rgba(10, 12, 24, 0.98));
                border: 1px solid rgba(66, 220, 255, 0.32);
                border-radius: 14px;
                box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
                backdrop-filter: blur(16px);
            }
            .mobile-app-prompt.is-visible {
                display: flex;
            }
            .mobile-app-prompt__logo {
                width: 42px;
                height: 42px;
                border-radius: 10px;
                object-fit: cover;
                flex: 0 0 auto;
            }
            .mobile-app-prompt__content {
                min-width: 0;
                flex: 1 1 auto;
            }
            .mobile-app-prompt__title {
                margin: 0 0 2px;
                color: #fff;
                font-size: 0.98rem;
                font-weight: 900;
                line-height: 1.2;
            }
            .mobile-app-prompt__text {
                margin: 0;
                color: rgba(255, 255, 255, 0.72);
                font-size: 0.78rem;
                line-height: 1.25;
            }
            .mobile-app-prompt__actions {
                display: flex;
                align-items: center;
                gap: 8px;
                flex: 0 0 auto;
            }
            .mobile-app-prompt__download {
                min-height: 36px;
                padding: 0 12px;
                border-radius: 9px;
                background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
                color: #181426;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                font-size: 0.82rem;
                font-weight: 900;
                text-decoration: none;
                white-space: nowrap;
            }
            .mobile-app-prompt__close {
                width: 34px;
                height: 34px;
                border: 1px solid rgba(255, 255, 255, 0.14);
                border-radius: 9px;
                background: rgba(255, 255, 255, 0.08);
                color: #fff;
                font-size: 1.25rem;
                line-height: 1;
            }
        }
        .section-title {
            color: var(--primary-cyan);
            font-size: 2.5rem;
            text-align: center;
	            text-transform: uppercase;
	            letter-spacing: 3px;
	            margin-bottom: 3rem;
	            font-weight: 900;
	            text-shadow: var(--glow-cyan);
	            animation: glow-text 3s ease-in-out infinite alternate;
	        }
	        .section-title--tight {
	            margin-bottom: 1.5rem;
	        }
	        .section-title--danger {
	            color: #ff6b6b;
	            text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
	        }
	        .section-lede {
	            color: var(--text-secondary);
	            font-size: 1.2rem;
	            margin: 0 auto 2rem;
	            max-width: 720px;
	            text-align: center;
	            line-height: 1.6;
	        }
	        .card-title {
	            color: var(--primary-cyan);
	            font-size: 2rem;
	            margin: 0 0 1.5rem;
	            text-transform: uppercase;
	            letter-spacing: 3px;
	            font-weight: 900;
	            text-shadow: var(--glow-cyan);
	            animation: glow-text 3s ease-in-out infinite alternate;
	        }
	        .card-text {
	            color: var(--text-primary);
	            font-size: 1.1rem;
	            line-height: 1.65;
	            margin: 0;
	        }

	        /* Shared surface card (brings older blocks in line with newer sections) */
	        .surface-card {
	            background: var(--darker-surface);
	            border-radius: 20px;
	            padding: 3rem;
	            text-align: center;
	            position: relative;
	            overflow: hidden;
	            border: 1px solid rgba(66, 220, 255, 0.2);
	            backdrop-filter: blur(10px);
	            transition: all 0.3s ease;
	            box-shadow: var(--glow-cyan);
	        }
	        .surface-card::before {
	            content: '';
	            position: absolute;
	            top: 0;
	            left: 0;
	            right: 0;
	            height: 4px;
	            background: var(--gradient-secondary);
	            border-radius: 20px 20px 0 0;
	            z-index: 2;
	        }
	        .surface-card:hover {
	            transform: translateY(-8px);
	            border-color: var(--primary-cyan);
	            box-shadow: 0 0 30px rgba(66, 220, 255, 0.4);
	        }
	        .surface-card--padded-lg {
	            padding: 4rem 2rem;
	        }
	        .surface-card--padded-md {
	            padding: 2.5rem;
	        }

	        .surface-card .form-control {
	            background: rgba(255, 255, 255, 0.05);
	            border: 2px solid rgba(66, 220, 255, 0.25);
	            color: var(--text-primary);
	            padding: 1rem 1.25rem;
	            border-radius: 10px;
	            transition: all 0.25s ease;
	        }
	        .surface-card .form-control::placeholder {
	            color: rgba(255, 255, 255, 0.55);
	        }
	        .surface-card .form-control:focus {
	            border-color: var(--primary-cyan);
	            box-shadow: 0 0 20px rgba(66, 220, 255, 0.3);
	            background: rgba(255, 255, 255, 0.06);
	            color: var(--text-primary);
	        }

	        .btn-midnite {
	            background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple));
	            border: none;
	            color: #fff;
	            font-weight: 700;
	            text-transform: uppercase;
	            letter-spacing: 1px;
	            border-radius: 10px;
	            padding: 1rem 2rem;
	            transition: all 0.25s ease;
	        }
	        .btn-midnite:hover {
	            transform: translateY(-2px);
	            box-shadow: 0 8px 25px rgba(66, 220, 255, 0.4);
	            color: #fff;
	        }
	        .btn-midnite-gold {
	            background: linear-gradient(45deg, var(--primary-yellow), var(--primary-purple));
	            border: none;
	            color: #fff;
	            font-weight: 700;
	            text-transform: uppercase;
	            letter-spacing: 1px;
	            border-radius: 10px;
	            padding: 1rem 2rem;
	            transition: all 0.25s ease;
	        }
	        .btn-midnite-gold:hover {
	            transform: translateY(-2px);
	            box-shadow: 0 8px 25px rgba(255, 230, 0, 0.22);
	            color: #fff;
	        }
	        .btn-midnite-outline {
	            background: rgba(145, 70, 255, 0.10);
	            border: 2px solid var(--primary-purple);
	            color: var(--primary-purple);
	            font-weight: 700;
	            text-transform: uppercase;
	            letter-spacing: 1px;
	            border-radius: 10px;
	            padding: 1rem 2rem;
	            transition: all 0.25s ease;
	        }
	        .btn-midnite-outline:hover {
	            transform: translateY(-2px);
	            background: rgba(145, 70, 255, 0.18);
	            border-color: var(--primary-cyan);
	            color: var(--primary-yellow);
	            box-shadow: 0 8px 25px rgba(145, 70, 255, 0.22);
	        }
	        .btn-midnite-danger {
	            background: linear-gradient(45deg, #ff6b6b, #ff4757);
	            border: none;
	            color: #fff;
	            font-weight: 800;
	            text-transform: uppercase;
	            letter-spacing: 1px;
	            border-radius: 10px;
	            padding: 1rem 2rem;
	            transition: all 0.25s ease;
	        }
	        .btn-midnite-danger:hover {
	            transform: translateY(-2px);
	            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.45);
	            color: #fff;
	        }

	        .surface-card--stretch { height: 100%; }
	        .surface-card--left { text-align: left; }

	        /* Streamer of the Week: align with section titles + button system */
	        .streamer-of-week-title { margin-bottom: 2rem; }
	        .streamer-name {
	            color: var(--text-primary);
	            font-size: 1.8rem;
	            margin: 0 0 0.5rem;
	            font-weight: 700;
	        }
	        .streamer-team {
	            color: var(--primary-purple);
	            font-size: 1rem;
	            margin: 0 0 1rem;
	            font-weight: 700;
	            text-transform: uppercase;
	            letter-spacing: 1px;
	        }
	        .streamer-bio {
	            color: var(--text-secondary);
	            margin: 0 auto 1.5rem;
	            max-width: 540px;
	            line-height: 1.6;
	        }
	        .streamer-actions {
	            display: flex;
	            gap: 1rem;
	            justify-content: center;
	            flex-wrap: wrap;
	        }
	        .clips-title {
	            color: var(--primary-yellow);
	            margin: 0 0 1rem;
	            text-align: center;
	            font-size: 1.3rem;
	            font-weight: 800;
	            letter-spacing: 0.5px;
	        }
	        .creator-benefits {
	            position: relative;
	            padding: 1rem 0 2rem;
	        }
	        .creator-benefits-heading {
	            max-width: 720px;
	            margin: 0 auto 2rem;
	            text-align: center;
	        }
	        .creator-benefits-eyebrow {
	            color: var(--primary-yellow);
	            font-size: 0.8rem;
	            font-weight: 800;
	            letter-spacing: 0.16em;
	            text-transform: uppercase;
	        }
	        .creator-benefits-title {
	            color: var(--text-primary);
	            font-size: clamp(2rem, 4vw, 3rem);
	            margin: 0.5rem 0 0.75rem;
	            font-weight: 900;
	        }
	        .creator-benefits-intro {
	            color: var(--text-secondary);
	            margin: 0;
	            line-height: 1.7;
	        }
	        .benefit-card {
	            display: grid;
	            grid-template-columns: auto 1fr;
	            gap: 1.25rem;
	            align-items: start;
	            height: 100%;
	            padding: 1.75rem;
	            border: 1px solid rgba(255, 255, 255, 0.1);
	            border-radius: 18px;
	            background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
	            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	        }
	        .benefit-card:hover {
	            transform: translateY(-5px);
	            border-color: rgba(66, 220, 255, 0.38);
	            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
	        }
	        .benefit-card-icon {
	            display: grid;
	            place-items: center;
	            width: 52px;
	            height: 52px;
	            border-radius: 14px;
	            color: var(--primary-cyan);
	            background: rgba(66, 220, 255, 0.1);
	            border: 1px solid rgba(66, 220, 255, 0.2);
	            font-size: 1.3rem;
	        }
	        .creator-benefits .row > article:nth-child(2) .benefit-card-icon,
	        .creator-benefits .row > article:nth-child(3) .benefit-card-icon {
	            color: var(--primary-purple);
	            background: rgba(145, 70, 255, 0.12);
	            border-color: rgba(145, 70, 255, 0.25);
	        }
	        .creator-benefits .row > article:nth-child(4) .benefit-card-icon {
	            color: var(--primary-yellow);
	            background: rgba(255, 230, 0, 0.09);
	            border-color: rgba(255, 230, 0, 0.2);
	        }
	        .benefit-card-kicker {
	            display: block;
	            color: var(--text-secondary);
	            font-size: 0.72rem;
	            font-weight: 700;
	            letter-spacing: 0.12em;
	            margin-bottom: 0.35rem;
	            text-transform: uppercase;
	        }
	        .benefit-card-title {
	            color: var(--text-primary);
	            font-size: 1.35rem;
	            margin: 0 0 0.55rem;
	            font-weight: 800;
	        }
	        .benefit-card-text {
	            color: var(--text-secondary);
	            margin: 0;
	            line-height: 1.65;
	        }
	        @media (max-width: 575.98px) {
	            .benefit-card {
	                grid-template-columns: 1fr;
	            }
	        }

	        .newsletter-form {
	            max-width: 680px;
	            margin: 0 auto;
	        }
	        .newsletter-fields {
	            display: flex;
	            gap: 1rem;
	            flex-wrap: wrap;
	            justify-content: center;
	            align-items: stretch;
	        }
	        .newsletter-fields .form-control {
	            flex: 1;
	            min-width: 260px;
	        }
	        .newsletter-turnstile {
	            margin-top: 1.25rem;
	            display: flex;
	            justify-content: center;
	        }
	        .muted-note {
	            color: var(--text-secondary);
	            font-size: 0.95rem;
	            margin-top: 1.5rem;
	            opacity: 0.85;
	        }

	        .feature-card {
	            background: var(--dark-surface);
	            border-radius: 18px;
	            padding: 2.25rem;
	            height: 100%;
	            border: 1px solid rgba(66, 220, 255, 0.16);
	            position: relative;
	            overflow: hidden;
	            backdrop-filter: blur(8px);
	            transition: all 0.3s ease;
	        }
	        .feature-card::before {
	            content: '';
	            position: absolute;
	            top: 0;
	            left: 0;
	            right: 0;
	            height: 3px;
	            background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
	        }
	        .feature-card:hover {
	            transform: translateY(-10px);
	            border-color: rgba(66, 220, 255, 0.5);
	            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
	        }
	        .feature-title {
	            color: var(--primary-yellow);
	            font-size: 1.5rem;
	            margin: 0 0 1rem;
	            font-weight: 800;
	            letter-spacing: 0.5px;
	        }
	        .feature-text {
	            color: var(--text-primary);
	            margin: 0;
	            line-height: 1.6;
	        }
	        .feature-note {
	            font-size: 0.96em;
	            color: rgba(255, 230, 0, 0.9);
	        }

	        /* === Rich Club-Style Partner Team Cards === */
	        .partner-club-card {
	            background: linear-gradient(180deg, #10142b 0%, #0a0c1a 100%);
	            border: 1px solid rgba(66, 220, 255, 0.3);
	            border-radius: 20px;
	            overflow: hidden;
	            height: 100%;
	            display: flex;
	            flex-direction: column;
	            justify-content: space-between;
	            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	            position: relative;
	        }

	        .partner-club-card:hover {
	            transform: translateY(-8px);
	            border-color: rgba(66, 220, 255, 0.7);
	            box-shadow: 0 20px 45px rgba(66, 220, 255, 0.25);
	        }

	        .partner-club-banner {
	            height: 110px;
	            width: 100%;
	            position: relative;
	            background-size: cover;
	            background-position: center;
	            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	        }

	        .partner-club-banner-kluma {
	            background: linear-gradient(135deg, rgba(76, 29, 149, 0.4) 0%, rgba(37, 99, 235, 0.4) 100%), url('/assets/img/banners/klumaarmy_banner.png');
	            background-size: cover;
	            background-position: center;
	        }

	        .partner-club-banner-beanary {
	            background: linear-gradient(135deg, rgba(131, 24, 67, 0.4) 0%, rgba(147, 51, 234, 0.4) 100%), url('/assets/img/banners/thebeanary_banner.png');
	            background-size: cover;
	            background-position: center;
	        }

	        .partner-club-banner-frequency {
	            background: linear-gradient(135deg, rgba(255, 42, 133, 0.5) 0%, rgba(66, 220, 255, 0.4) 50%, rgba(245, 184, 0, 0.35) 100%), radial-gradient(circle at 50% 50%, rgba(145, 70, 255, 0.6), transparent);
	            background-size: cover;
	            background-position: center;
	        }

	        .partner-badge-velora {
	            background: rgba(245, 184, 0, 0.22);
	            color: #ffd84d;
	            border: 1px solid rgba(245, 184, 0, 0.45);
	        }

	        .partner-club-header-content {
	            position: relative;
	            padding: 0 1.5rem;
	            margin-top: -45px;
	            display: flex;
	            align-items: flex-end;
	            justify-content: space-between;
	            margin-bottom: 1rem;
	        }

	        .partner-club-logo {
	            width: 84px;
	            height: 84px;
	            border-radius: 20px;
	            border: 3.5px solid #10142b;
	            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(66, 220, 255, 0.3);
	            object-fit: cover;
	            background: #0f1225;
	        }

	        .partner-club-badges {
	            display: flex;
	            gap: 0.4rem;
	            flex-wrap: wrap;
	            margin-bottom: 0.3rem;
	        }

	        .partner-badge {
	            padding: 0.25rem 0.65rem;
	            border-radius: 999px;
	            font-size: 0.7rem;
	            font-weight: 800;
	            text-transform: uppercase;
	            letter-spacing: 0.05em;
	        }

	        .partner-badge-twitch {
	            background: rgba(145, 70, 255, 0.25);
	            color: #bf94ff;
	            border: 1px solid rgba(145, 70, 255, 0.4);
	        }

	        .partner-badge-verified {
	            background: rgba(56, 189, 248, 0.2);
	            color: #38bdf8;
	            border: 1px solid rgba(56, 189, 248, 0.4);
	        }

	        .partner-club-body {
	            padding: 0 1.5rem 1.5rem;
	            flex-grow: 1;
	            display: flex;
	            flex-direction: column;
	            justify-content: space-between;
	        }

	        .partner-club-title-area {
	            margin-bottom: 0.8rem;
	        }

	        .partner-club-name {
	            font-size: 1.5rem;
	            font-weight: 900;
	            color: #ffe600;
	            margin: 0 0 0.25rem 0;
	            letter-spacing: 0.02em;
	        }

	        .partner-club-owner {
	            font-size: 0.85rem;
	            color: #94a3b8;
	            display: flex;
	            align-items: center;
	            gap: 0.4rem;
	        }

	        .partner-club-owner strong {
	            color: #38bdf8;
	        }

	        .partner-club-desc {
	            color: #cbd5e1;
	            font-size: 0.92rem;
	            line-height: 1.6;
	            margin-bottom: 1.4rem;
	        }

	        .partner-club-footer {
	            padding-top: 1rem;
	            border-top: 1px solid rgba(255, 255, 255, 0.07);
	        }

	        .partner-club-action-btn {
	            display: flex;
	            align-items: center;
	            justify-content: center;
	            gap: 0.55rem;
	            width: 100%;
	            padding: 0.8rem 1.2rem;
	            background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
	            color: #ffffff !important;
	            border-radius: 12px;
	            font-weight: 800;
	            font-size: 0.92rem;
	            text-transform: uppercase;
	            letter-spacing: 0.05em;
	            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
	            transition: all 0.25s ease;
	            border: none;
	            text-decoration: none;
	        }

	        .partner-club-card:hover .partner-club-action-btn {
	            background: linear-gradient(135deg, #ffe600 0%, #7c3aed 100%);
	            color: #000000 !important;
	            box-shadow: 0 6px 20px rgba(255, 230, 0, 0.4);
	            transform: translateY(-2px);
	        }

	        .partner-section-heading {
	            font-size: 2.2rem;
	            font-weight: 900;
	            color: #38bdf8;
	            text-transform: uppercase;
	            letter-spacing: 0.08em;
	            text-align: center;
	            text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
	            margin-bottom: 2.5rem;
	        }

	        /* === Mission & Vision Gaming Cards === */
	        .mv-card-v3 {
	            background: #0b0d1e;
	            border: 1px solid rgba(56, 189, 248, 0.35);
	            border-radius: 20px;
	            padding: 2.2rem 2rem;
	            height: 100%;
	            position: relative;
	            overflow: hidden;
	            transition: transform 0.3s ease, border-color 0.3s ease;
	        }

	        .mv-card-v3.mission-accent::before {
	            content: '';
	            position: absolute;
	            top: 0;
	            left: 0;
	            right: 0;
	            height: 4px;
	            background: linear-gradient(90deg, #ffe600 0%, #7c3aed 100%);
	        }

	        .mv-card-v3.vision-accent::before {
	            content: '';
	            position: absolute;
	            top: 0;
	            left: 0;
	            right: 0;
	            height: 4px;
	            background: linear-gradient(90deg, #38bdf8 0%, #7c3aed 100%);
	        }

	        .mv-card-v3:hover {
	            transform: translateY(-6px);
	            border-color: rgba(56, 189, 248, 0.7);
	            box-shadow: 0 12px 35px rgba(56, 189, 248, 0.25);
	        }

	        .mv-badge-box {
	            width: 44px;
	            height: 44px;
	            border-radius: 12px;
	            display: flex;
	            align-items: center;
	            justify-content: center;
	            font-size: 1.15rem;
	            margin-bottom: 1.2rem;
	        }

	        .mv-card-v3.mission-accent .mv-badge-box {
	            background: rgba(255, 230, 0, 0.15);
	            border: 1px solid rgba(255, 230, 0, 0.4);
	            color: #ffe600;
	        }

	        .mv-card-v3.vision-accent .mv-badge-box {
	            background: rgba(56, 189, 248, 0.15);
	            border: 1px solid rgba(56, 189, 248, 0.4);
	            color: #38bdf8;
	        }

	        .mv-title-yellow {
	            color: #ffe600;
	            font-size: 1.7rem;
	            font-weight: 900;
	            margin-bottom: 0.8rem;
	            letter-spacing: 0.02em;
	        }

	        .mv-title-cyan {
	            color: #38bdf8;
	            font-size: 1.7rem;
	            font-weight: 900;
	            margin-bottom: 0.8rem;
	            letter-spacing: 0.02em;
	        }

	        .mv-body-text {
	            color: #cbd5e1;
	            font-size: 0.95rem;
	            line-height: 1.6;
	            margin: 0;
	        }

	        /* === Scannable Mission & Vision Highlights === */
	        .mv-highlights-list {
	            margin-top: 1.2rem;
	            display: flex;
	            flex-direction: column;
	            gap: 0.65rem;
	        }

	        .mv-highlight-item {
	            display: flex;
	            align-items: center;
	            gap: 0.75rem;
	            padding: 0.6rem 0.9rem;
	            border-radius: 10px;
	            background: rgba(255, 255, 255, 0.04);
	            font-size: 0.92rem;
	            font-weight: 700;
	            border: 1px solid rgba(255, 255, 255, 0.06);
	            transition: background 0.2s ease, transform 0.2s ease;
	        }

	        .mission-accent .mv-highlight-item {
	            color: #fff6b3;
	            border-left: 3px solid #ffe600;
	        }

	        .vision-accent .mv-highlight-item {
	            color: #e0f2fe;
	            border-left: 3px solid #38bdf8;
	        }

	        .mv-highlight-item:hover {
	            background: rgba(255, 255, 255, 0.08);
	            transform: translateX(4px);
	        }

	        .mv-highlight-icon {
	            font-size: 1rem;
	            flex-shrink: 0;
	        }

	        .mission-accent .mv-highlight-icon {
	            color: #ffe600;
	        }

	        .vision-accent .mv-highlight-icon {
	            color: #38bdf8;
	        }
        .btn-primary {
            background-color: #7289da;
            border-color: #7289da;
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #5b6eae;
            border-color: #5b6eae;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
        }
        .btn-outline-primary {
            color: #7289da;
            border-color: #7289da;
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-outline-primary:hover {
            background-color: #7289da;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(114, 137, 218, 0.4);
        }
        .alerts-gap-banner { z-index: 1050; }
        .service-status-alert {
            background: linear-gradient(90deg, #ff6b35, #f7931e);
            color: #fff;
            font-weight: bold;
            padding: 0.65rem 0;
            overflow: hidden;
            white-space: nowrap;
        }
        .service-status-alert-track {
            display: inline-flex;
            min-width: max-content;
            animation: service-status-scroll 32s linear infinite;
        }
        .service-status-alert-message {
            display: inline-block;
            padding-right: 4rem;
        }
        @keyframes service-status-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }
        .navbar, .navbar * { z-index: 1105 !important; }
        .dropdown-menu { z-index: 1200 !important; }
        .main-content {
            margin-bottom: 48px;
        }
        @media (max-width: 768px) {
            .main-content {
                margin-bottom: 32px;
            }
            .hero-section {
                padding: 108px 0 110px;
            }
            .hero-content {
                margin-top: 2rem;
                padding: 2rem 1.15rem 1.9rem;
            }
            .hero-title {
                font-size: 2.3rem;
                letter-spacing: 0.08em;
            }
            .hero-subtitle {
                font-size: 1.08rem;
            }
            .hero-kicker {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                padding: 0.8rem 1rem;
            }
            .hero-pride-panel {
                flex-direction: column;
                text-align: center;
                gap: 0.9rem;
                padding: 1rem;
            }
            .hero-pride-copy {
                align-items: center;
            }
            .hero-pride-logo {
                width: min(280px, 100%);
            }
        }
/* Cool Logo Animations */
        @keyframes glow-yellow {
            0% { text-shadow: 0 0 10px rgba(255, 230, 0, 0.5), 0 0 20px rgba(255, 230, 0, 0.3), 0 0 30px rgba(255, 230, 0, 0.2); }
            100% { text-shadow: 0 0 15px rgba(255, 230, 0, 0.8), 0 0 25px rgba(255, 230, 0, 0.5), 0 0 35px rgba(255, 230, 0, 0.3); }
        }

        @keyframes glow-purple {
            0% { text-shadow: 0 0 10px rgba(145, 70, 255, 0.5), 0 0 20px rgba(145, 70, 255, 0.3), 0 0 30px rgba(145, 70, 255, 0.2); }
            100% { text-shadow: 0 0 15px rgba(145, 70, 255, 0.8), 0 0 25px rgba(145, 70, 255, 0.5), 0 0 35px rgba(145, 70, 255, 0.3); }
        }

        @keyframes pulse-line {
            0% { transform: scaleX(1); opacity: 1; }
            50% { transform: scaleX(1.05); opacity: 0.8; }
            100% { transform: scaleX(1); opacity: 1; }
        }

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

        .cool-logo:hover .team-text {
            animation: glow-yellow 0.5s ease-in-out infinite alternate;
        }

        .cool-logo:hover .midnite-text {
            animation: glow-purple 0.5s ease-in-out infinite alternate;
        }

        .cool-logo:hover {
            transform: scale(1.05);
        }
                    /* Team Midnite — single-row live ticker (smooth auto-scroll, one lane) */
                    .live-members-wrapper {
                        position: relative;
                        overflow: hidden;
                        touch-action: pan-y; /* page scrolls vertically; we own horizontal gestures */
                    }
                    .live-members-wrapper.ticker-active {
                        mask-image: linear-gradient(to right, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
                        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 26px, #000 calc(100% - 26px), transparent 100%);
                    }
                    /* Reduced-motion / manual mode: plain horizontally scrollable snap row */
                    .live-members-wrapper.members-manual {
                        overflow-x: auto;
                        scrollbar-width: none;
                        touch-action: auto;
                    }
                    .live-members-wrapper.members-manual::-webkit-scrollbar { display: none; }
                    .live-members-wrapper.members-manual { scroll-snap-type: x proximity; } /* snap lives on the scroll container, not the track */
                    .live-members-wrapper.members-manual .member-item { scroll-snap-align: start; }

                    .members-container {
                        display: flex;
                        align-items: stretch;
                        gap: 1rem;
                        padding: 0.5rem 0.1rem;
                        width: 100%;
                        will-change: transform;
                    }
                    .members-container > span {
                        padding: 0.5rem 0.25rem;
                    }

                    .member-item {
                        flex: 0 0 auto;
                        width: clamp(200px, 24vw, 260px);
                        display: flex;
                        min-width: 0;
                        position: relative;
                    }

                    /* Subtle ticker nav buttons — hover-revealed, never dominate */
                    .ticker-nav {
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 3;
                        width: 34px;
                        height: 34px;
                        border-radius: 50%;
                        border: 1px solid rgba(66, 220, 255, 0.35);
                        background: rgba(17, 17, 34, 0.72);
                        color: var(--primary-cyan, #42dcff);
                        font-size: 1.15rem;
                        line-height: 1;
                        cursor: pointer;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        opacity: 0;
                        transition: opacity 0.25s ease, background 0.25s ease;
                        backdrop-filter: blur(4px);
                    }
                    .ticker-nav-prev { left: 6px; }
                    .ticker-nav-next { right: 6px; }
                    .live-members-wrapper:hover .ticker-nav,
                    .ticker-nav:focus-visible { opacity: 1; }
                    .ticker-nav:hover { background: rgba(66, 220, 255, 0.25); }
                    .ticker-nav:focus-visible { outline: 2px solid rgba(66, 220, 255, 0.7); }
                    .live-members-wrapper:not(.ticker-active) .ticker-nav { display: none; }
                    .member-item a {
                        display: flex;
                        align-items: center;
                        gap: 0.65rem;
                        width: 100%;
                        padding: 0.65rem 0.8rem;
                        padding-right: 2.2rem; /* keep name clear of the corner LIVE badge */
                        background: rgba(17, 17, 34, 0.55);
                        border: 1px solid rgba(66, 220, 255, 0.16);
                        border-radius: 14px;
                        text-decoration: none;
                        color: inherit;
                        transition: all 0.25s ease;
                        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
                        cursor: pointer;
                    }
                    .member-item a:hover {
                        border-color: rgba(66, 220, 255, 0.55);
                        box-shadow: 0 0 18px rgba(66, 220, 255, 0.28);
                        transform: translateY(-2px);
                    }
                    .member-item a:focus-visible {
                        outline: 2px solid var(--primary-cyan, #42dcff);
                        outline-offset: 3px;
                    }
                    .member-avatar,
                    .member-avatar-initials {
                        width: 44px;
                        height: 44px;
                        border-radius: 50%;
                        flex: 0 0 44px;
                        border: 2px solid rgba(66, 220, 255, 0.4);
                    }
                    .member-avatar {
                        object-fit: cover;
                        background: rgba(255, 255, 255, 0.08);
                    }
                    .member-avatar-initials {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-weight: 800;
                        font-size: 1.1rem;
                        color: #fff;
                        background: linear-gradient(135deg, rgba(66, 220, 255, 0.85), rgba(145, 70, 255, 0.85));
                    }
                    .member-meta {
                        display: flex;
                        flex-direction: column;
                        gap: 0.2rem;
                        min-width: 0;
                    }
                    .member-name-row {
                        display: flex;
                        align-items: center;
                        gap: 0.4rem;
                        min-width: 0;
                    }
                    .member-name {
                        color: #ffe600;
                        font-weight: 700;
                        font-size: 0.97rem;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
                    .member-live-badge {
                        position: absolute;
                        top: 0.45rem;
                        right: 0.5rem;
                        z-index: 2;
                        display: inline-flex;
                        align-items: center;
                        gap: 0.28rem;
                        background: rgba(255, 56, 96, 0.16);
                        color: #ff3860;
                        border: 1px solid rgba(255, 56, 96, 0.4);
                        border-radius: 999px;
                        padding: 0.06rem 0.4rem;
                        font-size: 0.55rem;
                        font-weight: 800;
                        letter-spacing: 0.5px;
                        text-transform: uppercase;
                        line-height: 1;
                        pointer-events: none;
                    }
                    .member-live-badge::before {
                        content: '';
                        width: 6px;
                        height: 6px;
                        border-radius: 50%;
                        background: #ff3860;
                        box-shadow: 0 0 6px #ff3860;
                        animation: tm-live-pulse 1.6s ease-in-out infinite;
                    }
                    @keyframes tm-live-pulse {
                        0%, 100% { opacity: 1; transform: scale(1); }
                        50% { opacity: 0.55; transform: scale(0.82); }
                    }
                    .member-game {
                        color: rgba(220, 220, 235, 0.72);
                        font-size: 0.78rem;
                        font-weight: 500;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
                    .members-container > span {
                        grid-column: 1 / -1;
                        padding: 0.5rem 0.25rem;
                    }
        .floating-discord-btn {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 9999;
            background: linear-gradient(135deg, #5865F2 60%, #23272A 100%);
            color: #fff;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
            font-size: 2rem;
            text-decoration: none;
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
        }
        .floating-discord-btn:hover {
            background: linear-gradient(135deg, #23272A 60%, #5865F2 100%);
            color: #ffe600;
            box-shadow: 0 8px 32px rgba(88,101,242,0.25);
            transform: translateY(-4px) scale(1.07);
        }
        @media (max-width: 767px) {
            .floating-discord-btn {
                right: 18px;
                bottom: calc(22px + env(safe-area-inset-bottom, 0px));
            }
        }
/* Homepage inline-style migration batch */
.hero-section { margin-top: -2.6cm; margin-bottom: 2.5rem; }
.homepage-live-bar { background: linear-gradient(135deg, rgba(66, 220, 255, 0.10) 0%, rgba(17, 17, 34, 0.92) 50%, rgba(145, 70, 255, 0.10) 100%); margin: 0 0 2rem; border-radius: 20px; padding: 1.5rem; position: relative; overflow: hidden; border: 1px solid rgba(66, 220, 255, 0.2); backdrop-filter: blur(10px); transition: all 0.3s ease; }
.live-bar-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-secondary); border-radius: 20px 20px 0 0; }
.live-bar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.live-bar-title { color: var(--primary-cyan); margin: 0; font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; text-shadow: var(--glow-cyan); }
.live-bar-button { background: var(--gradient-primary) !important; color: #fff !important; padding: 0.7rem 1.5rem; border-radius: 15px; text-decoration: none; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; border: none; box-shadow: var(--glow-cyan); }
.live-bar-button:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(66, 220, 255, 0.6); }
.policy-update-banner { max-width: 760px; margin: 1.5rem auto 0; padding: 0.9rem 1.15rem; border: 1px solid rgba(66, 220, 255, 0.35); border-radius: 14px; background: rgba(7, 12, 28, 0.72); color: rgba(255,255,255,0.88); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.policy-update-icon { color: var(--primary-cyan); margin-right: 0.4rem; }
.policy-update-link { color: var(--primary-yellow); font-weight: 700; }
.featured-streamer-link { text-decoration: none; }
.featured-streamer-image { cursor: pointer; }
.featured-streamer-name { transition: all 0.3s ease; }
.is-hidden { display: none; }
.loading-spinner.is-hidden { display: none !important; }
.homepage-cta { display: inline-flex; align-items: center; justify-content: center; color: #fff !important; background-color: transparent; padding: 1rem 2rem; font-weight: 600; border-radius: 8px; transition: all 0.3s ease; }
.homepage-cta-primary { background: linear-gradient(45deg, var(--primary-yellow), var(--primary-purple)) !important; color: #230046 !important; }
.homepage-cta-live { background: linear-gradient(45deg, #42dcff, var(--primary-purple)) !important; color: #fff !important; }
.partner-club-link { text-decoration: none; }
.partner-club-logo-velora { padding: 10px; background: #080c1a; }
.feature-row-spacer { margin-bottom: -1rem; }
.creator-support-link { color: #42dcff; }
.feature-icon-cyan { color: #42dcff; }
.feature-icon-purple { color: #9146ff; }
.feature-icon-yellow { color: #ffe600; }
.feature-icon-pink { color: #ff5e99; }
.homepage-modal-content { background: var(--primary-dark, #18132a); color: var(--primary-yellow, #ffe600); border-radius: 18px; border: 2px solid var(--primary-purple, #9146ff); }
.homepage-modal-header { border-bottom: 1px solid var(--primary-purple, #9146ff); }
.homepage-modal-title { color: var(--primary-purple, #9146ff); font-weight: bold; }
.homepage-modal-close { filter: invert(1); }
.homepage-modal-body { font-size: 1.05em; }
.homepage-modal-body-community { color: var(--primary-yellow, #ffe600); }
.homepage-modal-body-tfg { color: var(--text-primary, #ffffff); }
.homepage-modal-footer { border-top: 1px solid var(--primary-purple, #9146ff); display: flex; gap: .5rem; }
.homepage-modal-primary { background: linear-gradient(45deg, #42dcff 0%, #9146ff 100%); border: none; color: #fff; }
.homepage-modal-outline { border-color: #9146ff; color: #ffe600; }
.homepage-tfg-copy { margin: 0 0 .5rem; }
.homepage-premier-button { font-weight: 800; font-size: 1.13rem; color: #230046; background: #ffe600; border: none; border-radius: 10px; box-shadow: 0 2px 18px #ffe60055; padding: .8em 2.4em; transition: background .2s; }
.homepage-login-note { display: none; color: #ff5e5e; font-size: 1.08rem; margin-top: .7rem; font-weight: 600; }
.homepage-charity-event { background: var(--dark-surface); border-radius: 15px; padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.homepage-charity-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple)); }
.homepage-charity-title { color: #ff6b6b; font-size: 2.5rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; font-weight: 700; }
.homepage-charity-logo { max-width: 100%; height: auto; margin-bottom: 2rem; }
.homepage-charity-copy-primary { color: var(--text-primary); font-size: 1.2rem; margin-bottom: 1.5rem; }
.homepage-charity-copy-secondary { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; }
.homepage-charity-button { color: #fff; padding: 1rem 2rem; font-weight: 600; border-radius: 8px; transition: all .3s ease; }
.homepage-charity-button-red { background: #ff6b6b; }
.homepage-charity-button-purple { background: #6c5ce7; }
.live-empty-message { color: #ffe600; }
.live-error-message { color: #ff3860; }
.homepage-stackup-logo { display: block; width: 100%; max-width: 360px; height: auto; margin: 0 auto; object-fit: contain; }
.homepage-stackup-copy { margin-bottom: 1.2rem; }
.homepage-stackup-copy-secondary { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 1.8rem; }
.alaska-welcome-card { background: linear-gradient(135deg, #23233b 70%, #ffe600 130%); border-radius: 18px; box-shadow: 0 8px 36px #9146FF88; padding: 48px 36px 36px; max-width: 420px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.alaska-welcome-logo { width: 140px; margin-bottom: 16px; }
.alaska-welcome-title { color: #FFD700; font-family: Tektur, Exo 2, Arial, sans-serif; font-size: 2rem; margin: 0 0 10px; letter-spacing: 1.2px; }
.alaska-welcome-copy { margin: 18px 0 10px; font-size: 1.08rem; }
.alaska-welcome-actions { margin: 25px 0 10px; }
.alaska-welcome-link { display: inline-block; background: linear-gradient(90deg, #FFD700, #9146FF); color: #232436; font-weight: 700; text-decoration: none; padding: 12px 30px; border-radius: 9px; font-size: 1.13rem; margin: 12px 0 0; box-shadow: 0 2px 8px #FFD70044; }
.alaska-welcome-note { font-size: 1rem; color: #FFD700; margin-top: 14px; }
.alaska-welcome-button { margin-top: 22px; background: #FFD700; color: #9146FF; font-weight: 700; padding: 11px 32px; border: none; border-radius: 9px; font-size: 1.07rem; cursor: pointer; box-shadow: 0 1px 4px #9146FF33; }
.alaska-welcome-fade { position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; background: linear-gradient(180deg, rgba(35,35,59,0) 0%, rgba(35,35,59,.93) 100%); border-radius: 0 0 18px 18px; }
