        :root {
            --primary: #ff8200;
            --bg-dark: #050505;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: #fff;
            margin: 0;
            overflow-x: hidden;
            /* Allow navbar space */
            padding-top: 80px;
        }

        nav,
        footer {
            font-family: 'Inter', sans-serif;
        }

        /* Global Noise Texture */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        .font-orbitron {
            font-family: 'Poppins', sans-serif;
        }

        .hero-event-title {
            font-size: clamp(2.1rem, 6vw, 4.5rem);
            line-height: 0.95;
            overflow-wrap: anywhere;
            word-break: break-word;
            max-width: 100%;
        }


        .detail-hero {
            position: relative;
            height: clamp(350px, 60vh, 600px);
            display: flex;
            align-items: flex-end;
            padding-bottom: 4rem;
            overflow: hidden;
        }

        .detail-hero--with-slots {
            padding-top: 9rem;
        }

        .hero-slots-badge {
            position: absolute;
            top: 5rem;
            right: clamp(1rem, 4vw, 3rem);
            z-index: 12;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.45rem;
            padding: 1rem 1.4rem;
            min-width: min(12.5rem, calc(100vw - 2rem));
            border: 1px solid rgba(253, 186, 116, 0.45);
            border-radius: 1.25rem;
            background: linear-gradient(135deg, rgba(255, 130, 0, 0.18), rgba(10, 10, 10, 0.76));
            backdrop-filter: blur(18px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
        }

        .hero-slots-badge-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.75);
        }

        .hero-slots-badge-value {
            font-size: clamp(2.1rem, 4.8vw, 3.2rem);
            line-height: 1;
            font-weight: 800;
            color: #fdba74;
        }

        @media (max-width: 768px) {
            body {
                padding-top: 118px;
            }

            .detail-hero {
                height: clamp(260px, 42vh, 360px);
                align-items: center;
                padding-bottom: 1.25rem;
                margin-top: 0;
            }

            .detail-hero--with-slots {
                padding-top: 7.75rem;
            }

            .detail-hero::before {
                background: linear-gradient(to bottom, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.38) 58%, rgba(5, 5, 5, 0.72) 100%);
            }

            .hero-event-title {
                font-size: clamp(1.9rem, 8.6vw, 2.7rem);
                line-height: 1;
                margin-bottom: 1rem;
            }

            .hero-img-bg {
                inset: -3%;
                width: 106%;
                height: 106%;
                transform: scale(1.02);
                filter: blur(11px) brightness(0.56) saturate(1.2) contrast(1.04);
            }

            .hero-slots-badge {
                top: 4.25rem;
                right: 1rem;
                padding: 0.85rem 1rem;
                min-width: auto;
                max-width: calc(100vw - 2rem);
            }

            .hero-slots-badge-label {
                font-size: 0.62rem;
                letter-spacing: 0.14em;
            }

            .hero-slots-badge-value {
                font-size: clamp(1.8rem, 10vw, 2.35rem);
            }

            .tab-nav {
                gap: 1rem;
            }

            .tab-nav .tab-btn {
                flex: 1;
                text-align: center;
            }
        }

        .detail-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.55) 62%, rgba(5, 5, 5, 0.88) 100%);
            z-index: 1;
        }

        .hero-img-bg {
            position: absolute;
            inset: -6%;
            width: 112%;
            height: 112%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
            transform: scale(1.04);
            filter: blur(18px) brightness(0.4) saturate(1.12);
        }

        .tab-nav {
            overflow-x: visible;
        }

        .glass-card {
            background: rgba(15, 15, 15, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 130, 0, 0.15);
            border-radius: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .tab-btn {
            position: relative;
            transition: all 0.3s ease;
        }

        .tab-btn::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .tab-btn.active {
            color: var(--primary);
        }

        .tab-btn.active::after {
            width: 100%;
        }

        /* Responsive Improvements */
        @media (max-width: 1024px) {
            .registration-card-wrapper {
                order: -1;
                margin-top: -2rem;
                position: relative;
                z-index: 20;
            }
        }

        @media (min-width: 1024px) {
            .detail-hero {
                height: clamp(320px, 46vh, 500px);
                background: #060606;
                align-items: center;
                padding-bottom: 0;
            }

            .hero-img-bg {
                inset: -8%;
                width: 116%;
                height: 116%;
                transform: scale(1.05);
                filter: blur(24px) brightness(0.34) saturate(1.15);
            }
        }
    
