/* ===================================
   GOJAN CULTURALS 2026 - Main Stylesheet
   Neon Gradient Theme with Glassmorphism
   =================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-purple: #6C00FF;
    --primary-pink: #BA00FF;
    --primary-blue: #00FFF2;
    --dark-bg: #0A0016;
    --darker-bg: #05000b;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #DCD3FF;
    --text-secondary: #F2E5FF;
    --gradient-1: linear-gradient(135deg, #6C00FF, #BA00FF);
    --gradient-2: linear-gradient(135deg, #BA00FF, #00FFF2);
    --gradient-3: linear-gradient(135deg, #00FFF2, #6C00FF);
    --shadow-glow: 0 0 30px rgba(108, 0, 255, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

::selection {
    background: var(--primary-purple);
    color: white;
}

/* ===== Page Loader - Cyber Edition ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050510;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    overflow: hidden;
}

.loader-bg-glow {
    position: absolute;
    width: 150vw;
    height: 150vh;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    animation: loaderGlowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.loader-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(139, 92, 246, 0.05) 50%,
            transparent 100%);
    background-size: 100% 4px;
    animation: scanlineMove 6s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.loader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

.loader-circle-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-liquid-border {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 2px;
    background: conic-gradient(from 0deg,
            var(--primary-purple) 0%,
            var(--primary-blue) 25%,
            transparent 50%,
            var(--primary-pink) 75%,
            var(--primary-purple) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateCyber 2.5s linear infinite;
    filter: drop-shadow(0 0 15px var(--primary-purple));
}

.loader-liquid-border::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(from 180deg,
            var(--primary-blue) 0%,
            transparent 40%,
            var(--primary-purple) 60%,
            transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateCyber 4s linear reverse infinite;
    opacity: 0.6;
}

.loader-logo {
    width: 120px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
    animation: premiumLogoPulse 3s ease-in-out infinite;
}

.loader-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.loader-percentage {
    font-size: 4rem;
    font-weight: 950;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.8),
        0 0 20px rgba(139, 92, 246, 0.4);
    letter-spacing: -3px;
    line-height: 1;
    position: relative;
}

.loader-status {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 0 8px var(--primary-blue);
    opacity: 0.9;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes rotateCyber {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes scanlineMove {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(100%);
    }
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loaderGlowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

@keyframes premiumLogoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(108, 0, 255, 0.4));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(0, 255, 242, 0.6));
    }
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.loaded {
    overflow-y: auto;
    overflow-x: hidden;
}

body:not.loaded {
    overflow: hidden;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(10, 0, 22, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.navbar-brand {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo Animation */
@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(108, 0, 255, 0.4));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(186, 0, 255, 0.8));
        transform: scale(1.05);
    }

    100% {
        filter: drop-shadow(0 0 5px rgba(108, 0, 255, 0.4));
        transform: scale(1);
    }
}

.navbar-brand img {
    animation: logoPulse 3s infinite ease-in-out;
    transition: var(--transition);
}

.navbar-brand:hover img {
    filter: drop-shadow(0 0 25px rgba(186, 0, 255, 1));
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.2rem;
    padding: 0.5rem 0.8rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-primary) !important;
    background: var(--glass-bg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 80%;
}

.btn-nav-register {
    background: var(--gradient-1) !important;
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    white-space: nowrap;
}

.btn-nav-register::after {
    display: none;
}

.btn-nav-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Navbar Centering on Laptop/Desktop */
@media (min-width: 1200px) {
    .absolute-center-xl {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        white-space: nowrap;
    }
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.4;
    /* Adjust opacity for better text readability */
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(14, 165, 233, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 1;
    /* Above video, below content */
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientFlow 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 2px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn-glow {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--text-primary);
    font-size: 2rem;
    text-decoration: none;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ===== Events Section ===== */
.events-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.tab-content {
    position: relative;
}

.tab-pane {
    padding-top: 2rem;
    transition: opacity 0.2s ease;
}



.event-tabs {
    gap: 1rem;
    margin-bottom: 3rem;
}

.event-tabs .nav-link {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.15s ease;
}

.event-tabs .nav-link.active {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.event-tabs .nav-link:hover {
    transform: translateY(-2px);
    border-color: var(--primary-purple);
}

/* Disable nav-link::after for event tabs to prevent click interference */
.event-tabs .nav-link::after {
    display: none;
}

.event-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.event-card:hover::before {
    opacity: 0.1;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.event-card>* {
    position: relative;
    z-index: 1;
}

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.event-icon-blue {
    background: var(--gradient-2);
}

.event-card:hover .event-icon {
    transform: rotateY(360deg);
}

.event-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Hide 'Free' price for intra-college events */
#intra-onstage .event-price,
#intra-offstage .event-price {
    display: none;
}


.event-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-card-premium {
    border-color: var(--primary-purple);
}

.btn-event {
    background: var(--gradient-1);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-event:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.5);
}

/* ===== Guests Section ===== */
.guests-section {
    background: var(--darker-bg);
}

.guest-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    height: 100%;
}

.guest-marquee-item {
    flex: 0 0 auto;
    width: 200px;
    margin-right: 40px;
    height: auto;
    /* Let content dictate height */
}

/* Specific styling for images inside marquee to match new size */
.guest-marquee-item .guest-card .guest-image {
    height: 200px;
}

.guest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.4);
    border-color: var(--primary-pink);
}

.guest-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.guest-card:hover .guest-image img {
    transform: scale(1.1);
}

.guest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: var(--transition);
}

.guest-card:hover .guest-overlay {
    opacity: 0.3;
}

.guest-info {
    padding: 2rem;
    text-align: center;
}

.guest-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guest-role {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.guest-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Highlights Section */
.highlights-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
}

.custom-video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .custom-video-controls {
    opacity: 1;
}

.control-btn {
    background: rgba(108, 0, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--gradient-1);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(108, 0, 255, 0.4);
}

.control-btn i {
    font-size: 1.2rem;
}

/* Event Video Container */
.event-video-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.event-video-container:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: var(--darker-bg);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-caption h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-caption p {
    font-size: 1rem;
    margin: 0;
}

/* ===== Sponsors Section ===== */
.sponsors-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.sponsor-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    min-height: 150px;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.sponsor-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition);
}

.sponsor-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.sponsor-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.sponsor-item-large {
    min-height: 200px;
    padding: 3rem;
    background: linear-gradient(135deg, var(--glass-bg), rgba(108, 0, 255, 0.05));
    border: 2px solid var(--glass-border);
}

.sponsor-item-large img {
    max-width: 100%;
    filter: grayscale(0%);
}



.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline-primary:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    min-height: 350px;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* Marquee Container for Gallery */
.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.marquee-content {
    display: flex;
    gap: 1.5rem;
    animation: marquee 30s linear infinite;
    width: fit-content;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.gallery-card {
    flex: 0 0 auto;
    width: 350px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content,
#lightboxImg {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: zoomIn 0.3s;
    border-radius: 10px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    transition: var(--transition);
}

.lightbox-close {
    top: 20px;
    right: 40px;
}

.lightbox-prev {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-purple);
}

/* ===== Registration Section ===== */
.register-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.register-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.register-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
    border-color: var(--primary-purple);
}

.register-card-featured {
    border-color: var(--primary-pink);
}

.register-card-featured:hover {
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.4);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
}

.register-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.register-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.register-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.register-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.register-features li {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.register-features i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

/* ===== Footer ===== */
/* GSBT Theme Colors */
:root {
    /* ... existing variables ... */
    --gsbt-green: #2f4f2f;
    --gsbt-gold: #d8ae11;
    --gsbt-dark-green: #243d24;
}

.footer {
    background: var(--darker-bg);
    color: white;
    padding: 5rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-heading {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-1);
}

.footer-links-column {
    list-style: none;
    padding: 0;
}

.footer-links-column li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-links-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-column a i {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
}

.footer-links-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.footer-contact i {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 25px;
    font-size: 1.1rem;
}

.footer-bottom-dark {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    margin-top: 4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom-dark a {
    color: var(--primary-pink);
    text-decoration: none;
}

/* Footer Responsive Improvements */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
        text-align: left;
    }

    .footer-title {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-contact li {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* ===== Modal Styles ===== */
.modal-content {
    background: var(--darker-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.glass-modal {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
}

.modal-header {
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body {
    padding: 2rem;
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.glass-input {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.glass-input:focus {
    background: var(--glass-bg) !important;
    border-color: var(--primary-purple) !important;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25) !important;
    color: var(--text-primary) !important;
}

.glass-input::placeholder {
    color: var(--text-secondary);
}

.glass-input option {
    background-color: var(--darker-bg);
    color: var(--text-primary);
}

.glass-input optgroup {
    background-color: var(--darker-bg);
    color: var(--primary-blue) !important;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specific styling for different categories */
.intra-onstage-opt,
.intra-offstage-opt {
    color: var(--primary-blue) !important;
}

.inter-onstage-opt,
.inter-offstage-opt {
    color: var(--primary-pink) !important;
}

.payment-summary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* ===== Loading Overlay ===== */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.active {
    display: flex;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15, 15, 35, 0.98);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .event-tabs {
        flex-direction: column;
    }

    .event-tabs .nav-link {
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 80px 0 40px;
    }

    .team-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
        left: auto;
    }

    .register-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Team Page Styles ===== */
.team-hero {
    min-height: 60vh;
    padding: 120px 0 80px;
}

.team-section {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.team-section-alt {
    background: var(--darker-bg);
}

/* Committee Section Headers */
.committee-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    width: 100%;
}

.committee-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
}

.committee-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Enhanced Team Cards */
.team-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.team-card:hover::before {
    opacity: 0.15;
}

.team-card:hover::after {
    opacity: 1;
    top: -25%;
    right: -25%;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3),
        0 0 40px rgba(236, 72, 153, 0.2);
}

.team-card>* {
    position: relative;
    z-index: 1;
}

/* Team Member Icon */
.team-member-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.team-card:hover .team-member-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.6);
}

.team-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
}

.team-card:hover .team-icon {
    transform: rotateY(360deg);
}

/* Team Member Images */
.team-card-image {
    padding: 0 !important;
    align-self: center;
    overflow: hidden;
    text-align: center;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card-image:hover .team-member-img {
    transform: scale(1.1);
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.team-card-image:hover .team-image-overlay {
    opacity: 0.3;
}

.team-card-image .team-member-name,
.team-card-image .team-member-role {
    padding: 0 1.5rem;
}

.team-card-image .team-member-name {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-card-image .team-member-role {
    margin-bottom: 1.5rem;
}

/* Team Member Details */
.team-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.team-card:hover .team-member-name {
    color: #fff;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

.team-member-role {
    font-size: 0.95rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-member-role {
    color: rgba(236, 72, 153, 1);
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.6);
}

/* Compact Card Variant */
.team-card-compact {
    padding: 2rem 1.5rem;
}

.team-card-compact .team-member-name {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    margin-top: 0;
}

.team-card-compact .team-member-role {
    font-size: 0.85rem;
}

/* Committee Section Spacing */
.committee-section {
    margin-bottom: 10rem;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.team-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.team-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Staggered Animation for Cards */
.team-card {
    animation: cardFadeIn 0.6s ease-out backwards;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Add delay to each card for stagger effect */
.row .col-lg-3:nth-child(1) .team-card,
.row .col-lg-4:nth-child(1) .team-card,
.row .col-md-6:nth-child(1) .team-card {
    animation-delay: 0.1s;
}

.row .col-lg-3:nth-child(2) .team-card,
.row .col-lg-4:nth-child(2) .team-card,
.row .col-md-6:nth-child(2) .team-card {
    animation-delay: 0.2s;
}

.row .col-lg-3:nth-child(3) .team-card,
.row .col-lg-4:nth-child(3) .team-card,
.row .col-md-6:nth-child(3) .team-card {
    animation-delay: 0.3s;
}

.row .col-lg-3:nth-child(4) .team-card,
.row .col-lg-4:nth-child(4) .team-card,
.row .col-md-6:nth-child(4) .team-card {
    animation-delay: 0.4s;
}

.row .col-lg-3:nth-child(5) .team-card,
.row .col-md-6:nth-child(5) .team-card {
    animation-delay: 0.5s;
}

/* Team Page Responsive */
@media (max-width: 768px) {
    .team-hero {
        min-height: 50vh;
        padding: 100px 0 60px;
    }

    .team-section {
        padding: 60px 0;
    }

    .committee-title {
        font-size: 1.6rem;
    }

    .team-member-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .team-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .team-member-name {
        font-size: 1rem;
    }

    .team-member-role {
        font-size: 0.85rem;
    }

    .committee-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .team-card {
        padding: 1.5rem 1rem;
    }

    .team-card-compact {
        padding: 1.3rem 1rem;
    }

    .committee-title {
        font-size: 1.4rem;
    }
}

/* ===== Marquee Gallery ===== */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    background: var(--dark-bg);
    /* Ensure background contrasts if needed */
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.gallery-card {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 20px;
    height: 200px;
}

.guest-marquee-item {
    flex: 0 0 auto;
    width: 200px;
    margin-right: 80px;
    height: auto;
    /* Let content dictate height */
}

/* Specific styling for images inside marquee to match new size */
.guest-marquee-item .guest-card .guest-image {
    height: 200px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transform: translateZ(0);
    /* Hardware accel */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Ensure video centering */
.event-video-container {
    margin: 0 auto;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* =========================================
   RESPONSIVE DESIGN IMPROVEMENTS
   ========================================= */

/* --- Laptop & Desktop (Large Screens) --- */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
        /* Standardize laptop width */
    }

    .hero-content {
        padding-top: 50px;
    }

    .event-card:hover {
        transform: translateY(-15px);
        /* Enhanced hover for mouse users */
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        /* Standardize large desktop width */
    }
}

/* --- Tablets (iPad / Large Phones) --- */
/* --- Tablets & Mobiles (Below XL) --- */
@media (max-width: 1199px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-collapse {
        background: rgba(10, 0, 22, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 1.5rem;
        border-radius: 20px;
        margin-top: 1rem;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
        margin: 0.3rem 0;
        display: block;
        width: 100%;
    }

    .nav-link::after {
        display: none;
        /* Hide hover underline on mobile */
    }

    .btn-nav-register {
        display: block;
        margin: 1rem auto 0;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* --- Mobile (iPhone / Android) --- */
@media (max-width: 576px) {

    /* Hero Section */
    .hero-section {
        padding-top: 100px;
        /* Space for fixed navbar */
        padding-bottom: 50px;
        min-height: 85vh;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section.team-hero {
        min-height: 50vh;
    }

    .hero-content {
        padding: 0 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 1rem;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        max-width: 280px;
        line-height: 1.4;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 260px;
        margin: 0 auto 3.5rem;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Events Section */
    .event-tabs {
        flex-direction: column;
        width: 100%;
    }

    .event-tabs .nav-item {
        width: 100%;
    }

    .event-tabs .nav-link {
        width: 100%;
        margin: 0;
        border-radius: 10px;
        text-align: center;
    }

    .event-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Typography Adjustments */
    .section-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Guest Cards */
    .guest-image {
        height: 380px;
        /* Increased height to prevent cropping portrait photos */
    }

    .guest-image img {
        object-position: top center;
        /* Keep faces visible */
    }

    .guest-info {
        padding: 1.5rem;
    }

    /* Stats */
    .hero-stats {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 1rem;
    }

    .stat-item {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Navbar */
    /* Navbar Refinements */
    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-brand img {
        height: 35px !important;
    }

    .navbar-toggler {
        padding: 4px 8px;
        font-size: 0.9rem;
        border-color: var(--glass-border);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.25rem rgba(108, 0, 255, 0.25);
    }
}

/* --- iPhone Specifically (Portrait) --- */
@media (max-width: 400px) {
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* ===== Rulebook Section ===== */
.rulebook-container {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.rulebook-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 0, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.rulebook-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.2rem;
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.rulebook-item:hover {
    border-color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: none !important;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(0, 0, 0, 0));
    color: #fff;
    box-shadow: none;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.accordion-button i {
    color: var(--primary-purple);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    color: #fff;
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--primary-purple);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a78bfa'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    background-size: 1.2rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.4);
    color: #e2e8f0;
    font-size: 1rem;
    padding: 2rem;
    line-height: 1.7;
}

.rulebook-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rulebook-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
}

/* Staggered animation delays */
.rulebook-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.rulebook-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.rulebook-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.rulebook-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.rulebook-list li:nth-child(5) {
    animation-delay: 0.5s;
}

.rulebook-list li:nth-child(6) {
    animation-delay: 0.6s;
}

.rulebook-list li:nth-child(7) {
    animation-delay: 0.7s;
}

.rulebook-list li:nth-child(8) {
    animation-delay: 0.8s;
}

.rulebook-list li:nth-child(9) {
    animation-delay: 0.9s;
}

.rulebook-list li:nth-child(10) {
    animation-delay: 1.0s;
}

.rulebook-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary-pink);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rulebook-list li:last-child {
    margin-bottom: 0;
}

.rulebook-list i {
    color: var(--primary-blue);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(0, 255, 242, 0.5);
    transition: all 0.3s ease;
}

.rulebook-list li:hover i {
    color: var(--primary-pink);
    text-shadow: 0 0 10px rgba(186, 0, 255, 0.5);
    transform: scale(1.2);
}

/* ===== Center Notification System ===== */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.notification-overlay.active {
    display: flex;
    opacity: 1;
}

.center-notification {
    background: rgba(20, 20, 40, 0.82);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2.5rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.center-notification.error {
    box-shadow: 0 0 60px rgba(239, 68, 68, 0.2),
        inset 0 0 20px rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.center-notification.error::before {
    background: linear-gradient(90deg, #ef4444, #f87171, #ef4444);
}

.notification-overlay.active .center-notification {
    transform: translateY(0) scale(1);
}

.center-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.notification-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.center-notification.success .notification-icon i {
    color: #10B981;
}

.center-notification.error .notification-icon i {
    color: #EF4444;
}

.center-notification.warning .notification-icon i {
    color: #F59E0B;
}

.notification-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.notification-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.notification-btn {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.notification-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(139, 92, 246, 0.5);
    background: var(--primary-pink);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* ===== Promotional Popup ===== */
#promoModal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

#promoModal .btn-close {
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    border-radius: 50%;
    padding: 0.8rem;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    transition: all 0.3s ease;
}

#promoModal .btn-close:hover {
    background-color: white;
    transform: rotate(90deg);
}

#promoModal img {
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    #promoModal img {
        height: 200px;
    }
}

/* ===== VIP Chief Guest Highlight ===== */
.vip-guest-card {
    background: rgba(15, 5, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    z-index: 1;
}

.vip-guest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-pink), transparent 40%, transparent 60%, var(--primary-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vip-guest-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(186, 0, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.vip-guest-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(186, 0, 255, 0.2) 0%, rgba(0, 255, 242, 0.1) 30%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.vip-guest-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 20px;
    padding: 1rem;
}

.vip-guest-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 15px;
}

.vip-guest-frame::before,
.vip-guest-frame::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    transition: all 0.5s ease;
    z-index: 2;
}

.vip-guest-frame::before {
    top: 0;
    left: 0;
    border-top-color: var(--primary-pink);
    border-left-color: var(--primary-pink);
    border-top-left-radius: 20px;
}

.vip-guest-frame::after {
    bottom: 0;
    right: 0;
    border-bottom-color: var(--primary-blue);
    border-right-color: var(--primary-blue);
    border-bottom-right-radius: 20px;
}

.vip-guest-card:hover .vip-guest-frame::before,
.vip-guest-card:hover .vip-guest-frame::after {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.5;
}

.vip-guest-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
    transform: translateZ(0);
}

.vip-guest-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
    filter: brightness(0.9) contrast(1.1);
}

.vip-guest-card:hover .vip-guest-image {
    transform: scale(1.08) translateY(-5px);
    filter: brightness(1.1) contrast(1.1);
}

.vip-floating-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a0b2e;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(253, 185, 49, 0.4);
    border: 3px solid rgba(26, 11, 46, 0.8);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.vip-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.vip-tag-icon {
    color: #FFD700;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    animation: spinStar 4s linear infinite;
}

@keyframes spinStar {
    100% {
        transform: rotate(360deg);
    }
}

.vip-tag-text {
    color: #FFD700;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.vip-name {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 50%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-top: 0.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.vip-role {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.btn-premium-glow {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-premium-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-premium-glow:hover {
    color: white;
    box-shadow: 0 10px 25px rgba(186, 0, 255, 0.5);
    transform: translateY(-2px);
}

/* ==========================================================================
   Stage Spotlight Showcase (Iteration 5)
   ========================================================================== */
@keyframes spotlightPulse {

    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.75;
    }
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmerBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.spotlight-showcase {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    min-height: 620px;
    background: #050508;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Stage floor strip */
.spotlight-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, #8b5cf6, #00fff2, #ec4899, transparent);
    background-size: 200% 100%;
    animation: shimmerBorder 3s linear infinite;
}

/* Conic spotlight from top */
.spotlight-item {
    position: relative;
    flex: 1;
    height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-item::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 500px;
    background: conic-gradient(from 170deg at 50% 0%, transparent 0deg, rgba(139, 92, 246, 0.35) 20deg, rgba(0, 255, 242, 0.2) 35deg, transparent 40deg);
    pointer-events: none;
    animation: spotlightPulse 4s ease-in-out infinite;
    z-index: 2;
}

.spotlight-item:nth-child(2)::before {
    background: conic-gradient(from 170deg at 50% 0%, transparent 0deg, rgba(236, 72, 153, 0.35) 20deg, rgba(253, 185, 49, 0.2) 35deg, transparent 40deg);
}

/* Divider line */
.spotlight-item+.spotlight-item {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* Portrait */
.spotlight-portrait {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.spotlight-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    filter: brightness(0.85) saturate(1.0);
    transition: all 0.7s ease;
}

/* Video on hover/touch */
.spotlight-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.spotlight-item:hover .spotlight-video,
.spotlight-item.video-active .spotlight-video {
    opacity: 1;
}

.spotlight-item:hover .spotlight-img,
.spotlight-item.video-active .spotlight-img {
    opacity: 0;
}

.spotlight-item:hover .spotlight-portrait img {
    filter: brightness(1.0) saturate(1.15);
    transform: scale(1.04);
}

/* Content overlay at bottom */
.spotlight-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 3rem 2rem 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    text-align: center;
    transition: padding 0.5s ease;
}

.spotlight-item:hover .spotlight-content {
    padding-bottom: 3.5rem;
}

.spotlight-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.3rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    background: rgba(255, 215, 0, 0.05);
}

.spotlight-name {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
    letter-spacing: -1px;
    line-height: 1;
    animation: floatUp 6s ease-in-out infinite;
}

.spotlight-item:nth-child(2) .spotlight-name {
    animation-delay: 1.5s;
}

.spotlight-role {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* Hover glow line at bottom of each item */
.spotlight-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 6;
}

.spotlight-item:nth-child(2)::after {
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.8), transparent);
}

.spotlight-item:hover::after {
    opacity: 1;
}

/* ---- Responsive: Tablet & Mobile ---- */
@media (max-width: 992px) {
    .spotlight-showcase {
        flex-direction: column;
        min-height: auto;
        border-radius: 20px;
        margin: 2rem auto;
        width: 95%;
    }

    .spotlight-item {
        height: 480px;
        width: 100%;
        flex: none;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .spotlight-item:first-child {
        border-top: none;
    }

    .spotlight-content {
        padding: 2rem 1.5rem 2.5rem;
    }

    .spotlight-name {
        font-size: 2.2rem;
        letter-spacing: 0px;
    }

    .spotlight-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 0.25rem 0.8rem;
        margin-bottom: 0.7rem;
    }

    .spotlight-role {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 576px) {
    .spotlight-item {
        height: 380px;
    }

    .spotlight-name {
        font-size: 1.7rem;
    }

    .spotlight-content {
        padding: 1.5rem 1rem 2rem;
    }
}

.orbit-showcase {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    min-height: 800px;
    background: radial-gradient(circle at center, #1a0b2e 0%, #000 100%);
    border-radius: 40px;
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.orbit-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.orbit-item {
    position: relative;
    width: 450px;
    height: 450px;
    z-index: 1;
}

/* Rotating Orbits */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid transparent;
    pointer-events: none;
    transition: all 0.5s ease;
}

.orbit-ring-1 {
    width: 550px;
    height: 550px;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-top-color: var(--primary-purple);
    animation: rotateOrbit 20s linear infinite;
}

.orbit-ring-2 {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-bottom-color: var(--primary-pink);
    animation: rotateOrbit 15s linear infinite reverse;
}

.orbit-ring-3 {
    width: 460px;
    height: 460px;
    border: 3px double rgba(0, 255, 242, 0.2);
    border-left-color: var(--primary-blue);
    animation: rotateOrbit 25s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-hologram {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #000;
    padding: 10px;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.orbit-hologram::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 3;
    opacity: 0.3;
}

.orbit-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(45deg, #1a0b2e, #2e1a4a);
}

.orbit-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: brightness(0.8) contrast(1.2);
    transition: all 0.5s ease;
}

.orbit-item:hover .orbit-image-wrapper img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

/* Content & Typography */
.orbit-content {
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 250%;
    /* More room for long names */
    pointer-events: auto;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.orbit-badge {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    color: #1a0b2e !important;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(253, 185, 49, 0.3);
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.orbit-name {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 1), 0 0 50px rgba(139, 92, 246, 0.5);
}

.orbit-role {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #00fff2;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 255, 242, 0.5);
}

.orbit-item:hover .orbit-ring-1 {
    transform: translate(-50%, -50%) scale(1.05);
    border-color: var(--primary-purple);
}

.orbit-item:hover .orbit-ring-2 {
    transform: translate(-50%, -50%) scale(1.08);
    border-color: var(--primary-pink);
}

.orbit-item:hover .orbit-ring-3 {
    transform: translate(-50%, -50%) scale(1.12);
    border-color: var(--primary-blue);
}

@media (max-width: 1200px) {
    .orbit-showcase {
        gap: 2rem;
        flex-direction: column;
        height: auto;
        padding: 6rem 0 12rem;
        margin: 2rem auto;
        width: 95%;
    }

    .orbit-item {
        width: 320px;
        height: 320px;
    }

    .orbit-ring-1 {
        width: 400px;
        height: 400px;
    }

    .orbit-ring-2 {
        width: 370px;
        height: 370px;
    }

    .orbit-ring-3 {
        width: 340px;
        height: 340px;
    }

    .orbit-name {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .orbit-item {
        width: 280px;
        height: 280px;
    }

    .orbit-ring-1 {
        width: 330px;
        height: 330px;
    }

    .orbit-ring-2 {
        width: 310px;
        height: 310px;
    }

    .orbit-ring-3 {
        width: 290px;
        height: 290px;
    }
}