        :root {
            --bg-primary: #f8fafc;
            --bg-secondary: #ffffff;
            --bg-card: rgba(255, 255, 255, 0.9);
            --glass: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(99, 102, 241, 0.2);
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --accent-1: #6366f1;
            --accent-2: #8b5cf6;
            --accent-3: #a855f7;
            --accent-cyan: #0891b2;
            --accent-pink: #ec4899;
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
            --gradient-button: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-soft: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 50%, #fae8ff 100%);
            --shadow-soft: 0 4px 20px rgba(99, 102, 241, 0.12);
            --shadow-card: 0 8px 32px rgba(99, 102, 241, 0.1);
            --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.25);
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }

        /* SECURITY: Hide reCAPTCHA badge (protection still active) */
        .grecaptcha-badge {
            visibility: hidden !important;
            opacity: 0 !important;
        }

        /* ===== PAGE PRELOADER ===== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .preloader-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--glass-border);
            border-top-color: var(--accent-1);
            border-radius: 50%;
            animation: preloaderSpin 1s linear infinite;
        }

        .preloader-content span {
            font-family: 'Nyght Serif', serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--accent-1);
            letter-spacing: 1px;
        }

        @keyframes preloaderSpin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== SCROLL PROGRESS BAR ===== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--gradient-primary);
            width: 0%;
            z-index: 10000;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
        }

        /* ===== BACK TO TOP BUTTON ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-button);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--shadow-glow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .back-to-top:active {
            transform: translateY(-2px) scale(1.05);
        }

        /* ACCESSIBILITY: Skip Link for keyboard users */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-1);
            color: #fff;
            padding: 12px 24px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            z-index: 9999;
            text-decoration: none;
            transition: top 0.3s ease;
        }

        .skip-link:focus {
            top: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        *,
        *::before,
        *::after {
            -webkit-text-size-adjust: 100%;
            -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            font-family: 'Nyght Serif', serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ===== ANIMATED BACKGROUND ===== */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fae8ff 100%);
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.5;
            animation: float 20s ease-in-out infinite;
        }

        .bg-orb-1 {
            width: 700px;
            height: 700px;
            background: linear-gradient(135deg, #c7d2fe, #ddd6fe);
            top: -250px;
            left: -250px;
        }

        .bg-orb-2 {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, #fae8ff, #f5d0fe);
            top: 40%;
            right: -200px;
            animation-delay: -5s;
        }

        .bg-orb-3 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, #a5f3fc, #c4b5fd);
            bottom: -150px;
            left: 30%;
            animation-delay: -10s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(50px, 50px) scale(1.1);
            }

            50% {
                transform: translate(-30px, 80px) scale(0.95);
            }

            75% {
                transform: translate(40px, -40px) scale(1.05);
            }
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }

        /* ===== EVENT STATUS BADGE ===== */
        .register-btn-wrapper {
            position: relative;
            display: inline-block;
        }

        .event-status-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 20px;
            z-index: 10;
            animation: badgePulse 2s ease-in-out infinite;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .event-status-badge.open {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .event-status-badge.closing-soon {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            animation: badgeUrgent 1s ease-in-out infinite;
        }

        .event-status-badge.closed {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .event-status-badge.completed {
            background: linear-gradient(135deg, #6b7280, #4b5563);
            color: white;
        }

        @keyframes badgePulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes badgeUrgent {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
            }
        }

        /* ===== SKELETON LOADING STATES ===== */
        .skeleton {
            background: linear-gradient(90deg,
                    var(--bg-card) 25%,
                    rgba(99, 102, 241, 0.1) 50%,
                    var(--bg-card) 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s ease-in-out infinite;
            border-radius: var(--radius-md);
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .skeleton-winner-card {
            height: 180px;
            min-width: 200px;
            border-radius: var(--radius-lg);
        }

        .skeleton-shimmer {
            display: inline-block;
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
        }

        .skeleton-shimmer.skeleton-lg {
            width: 300px;
            height: 40px;
            border-radius: 8px;
        }

        .skeleton-shimmer.skeleton-md {
            height: 20px;
            border-radius: 4px;
        }

        .skeleton-shimmer.skeleton-sm {
            height: 20px;
            border-radius: 4px;
        }

        .skeleton-text {
            height: 16px;
            margin-bottom: 8px;
            border-radius: 8px;
        }

        .skeleton-text.title {
            height: 24px;
            width: 60%;
        }

        .skeleton-medal {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 16px;
        }

        .winners-grid .skeleton-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 24px;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--glass-border);
        }

        /* ===== REGISTRATION SUCCESS MODAL ===== */
        .success-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .success-modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .success-modal {
            background: var(--bg-secondary);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
            max-width: 450px;
            width: 90%;
            transform: scale(0.8) translateY(30px);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .success-modal-overlay.active .success-modal {
            transform: scale(1) translateY(0);
        }

        .success-icon {
            font-size: 80px;
            margin-bottom: 20px;
            animation: bounceIn 0.6s ease;
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        .success-modal h2 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .success-summary {
            background: var(--bg-primary);
            border-radius: var(--radius-md);
            padding: 20px;
            margin: 20px 0;
            text-align: left;
        }

        .success-summary p {
            margin: 8px 0;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .success-summary strong {
            color: var(--text-primary);
        }

        .success-note {
            color: var(--text-muted);
            font-size: 13px;
            margin-bottom: 24px;
        }

        .success-modal .btn-primary {
            width: 100%;
        }

        /* Confetti Container */
        .confetti-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10001;
            overflow: hidden;
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            top: -10px;
            animation: confettiFall 3s ease-in forwards;
        }

        @keyframes confettiFall {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* ===== SECTION REVEAL ANIMATIONS ===== */
        .reveal-section {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered children animation */
        .reveal-section.visible .feature-card,
        .reveal-section.visible .winner-card,
        .reveal-section.visible .stat-item {
            animation: fadeUpStagger 0.6s ease forwards;
            opacity: 0;
        }

        .reveal-section.visible .feature-card:nth-child(1),
        .reveal-section.visible .winner-card:nth-child(1),
        .reveal-section.visible .stat-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .reveal-section.visible .feature-card:nth-child(2),
        .reveal-section.visible .winner-card:nth-child(2),
        .reveal-section.visible .stat-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .reveal-section.visible .feature-card:nth-child(3),
        .reveal-section.visible .winner-card:nth-child(3),
        .reveal-section.visible .stat-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .reveal-section.visible .stat-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes fadeUpStagger {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== KEYFRAMES ===== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        /* Parallax floating keyframes for hero shapes */
        @keyframes parallaxFloat1 {

            0%,
            100% {
                transform: translate3d(0, 0, 20px);
            }

            50% {
                transform: translate3d(15px, -10px, 40px);
            }
        }

        @keyframes parallaxFloat2 {

            0%,
            100% {
                transform: translate3d(0, 0, 15px);
            }

            50% {
                transform: translate3d(-10px, 8px, 35px);
            }
        }

        @keyframes parallaxFloat3 {

            0%,
            100% {
                transform: translate3d(0, 0, 25px);
            }

            50% {
                transform: translate3d(12px, 12px, 50px);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== NAVBAR ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 6%;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 18px;
            text-decoration: none;
        }

        .logo img {
            width: 70px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text span {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: 2px;
        }

        .logo-text small {
            font-size: 9px;
            color: var(--text-secondary);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            position: relative;
        }

        /* Gradient underline on nav links */
        .nav-links a:not(.nav-cta)::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
        }

        .nav-links a:not(.nav-cta):hover::after,
        .nav-links a:not(.nav-cta).active::after {
            width: calc(100% - 36px);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-1);
            background: rgba(99, 102, 241, 0.08);
        }

        .nav-cta {
            background: var(--gradient-button) !important;
            color: white !important;
            margin-left: 10px;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 2.5px;
            background: var(--accent-1);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 6% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-text {
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-soft);
            border: 2px solid var(--glass-border);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-1);
            margin-bottom: 25px;
            animation: fadeUp 0.8s ease;
            box-shadow: var(--shadow-soft);
        }

        .hero-badge::before {
            content: '';
            width: 10px;
            height: 10px;
            background: var(--accent-1);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(40px, 6vw, 72px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeUp 0.8s ease 0.1s both;
            color: var(--text-primary);
        }

        .hero h1 .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 500px;
            margin-bottom: 35px;
            animation: fadeUp 0.8s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp 0.8s ease 0.3s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: var(--radius-md);
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-button);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .btn-secondary {
            background: var(--bg-secondary);
            color: var(--text-primary);
            border: 2px solid var(--glass-border);
            box-shadow: var(--shadow-soft);
        }

        .btn-secondary:hover {
            border-color: var(--accent-1);
            color: var(--accent-1);
            transform: translateY(-3px);
        }

        /* ===== UIVERSE-INSPIRED BUTTON ENHANCEMENTS ===== */
        .btn-primary::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: var(--gradient-primary);
            border-radius: inherit;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn-primary:hover::after {
            opacity: 0.5;
            filter: blur(12px);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        /* Gradient border button variant */
        .btn-gradient-border {
            background: var(--bg-secondary);
            color: var(--accent-1);
            position: relative;
            z-index: 1;
        }

        .btn-gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            padding: 2px;
            background: var(--gradient-primary);
            border-radius: inherit;
            -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;
            z-index: -1;
        }

        .btn-gradient-border:hover {
            background: var(--gradient-button);
            color: white;
        }

        /* ===== UIVERSE-INSPIRED CHECKBOX STYLES ===== */
        .custom-checkbox {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            font-size: 15px;
            color: var(--text-secondary);
            user-select: none;
        }

        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .checkbox-mark {
            width: 22px;
            height: 22px;
            border: 2px solid var(--glass-border);
            border-radius: 6px;
            background: var(--bg-secondary);
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .checkbox-mark::after {
            content: '';
            width: 6px;
            height: 10px;
            border: 2px solid white;
            border-top: none;
            border-left: none;
            transform: rotate(45deg) scale(0);
            transition: transform 0.2s ease 0.1s;
        }

        .custom-checkbox input:checked+.checkbox-mark {
            background: var(--gradient-primary);
            border-color: var(--accent-1);
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
        }

        .custom-checkbox input:checked+.checkbox-mark::after {
            transform: rotate(45deg) scale(1);
        }

        .custom-checkbox:hover .checkbox-mark {
            border-color: var(--accent-1);
            box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
        }

        .custom-checkbox input:focus+.checkbox-mark {
            outline: 2px solid var(--accent-1);
            outline-offset: 2px;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeUp 0.8s ease 0.4s both;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            position: relative;
            z-index: 2;
            filter: drop-shadow(0 30px 60px rgba(99, 102, 241, 0.2));
            animation: heroFloat 6s ease-in-out infinite;
        }

        @keyframes heroFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .hero-glow {
            position: absolute;
            width: 450px;
            height: 450px;
            background: var(--gradient-soft);
            border-radius: 50%;
            filter: blur(80px);
            z-index: 1;
            opacity: 0.7;
        }

        .hero-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;
            /* Enable parallax on shapes */
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.8;
            box-shadow: var(--shadow-soft);
            /* Parallax depth layers */
            will-change: transform;
            transition: transform 0.3s ease-out;
        }

        .shape-1 {
            width: 24px;
            height: 24px;
            background: var(--accent-cyan);
            top: 20%;
            left: 10%;
            animation: float 4s ease-in-out infinite, parallaxFloat1 6s ease-in-out infinite;
        }

        .shape-2 {
            width: 18px;
            height: 18px;
            background: var(--accent-pink);
            top: 60%;
            left: 5%;
            animation: float 5s ease-in-out infinite reverse, parallaxFloat2 8s ease-in-out infinite;
        }

        .shape-3 {
            width: 30px;
            height: 30px;
            background: var(--accent-1);
            top: 30%;
            right: 15%;
            animation: float 6s ease-in-out infinite;
        }

        /* ===== STATS BAR ===== */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 6%;
        }

        .stat-item {
            text-align: center;
            padding: 35px 25px;
            background: var(--bg-card);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 100px 6%;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--gradient-soft);
            border: 2px solid var(--glass-border);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-1);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 50px);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .section-title .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--bg-card);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        /* ===== UIVERSE-INSPIRED CARD ENHANCEMENTS ===== */
        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .feature-card:hover::after {
            left: 150%;
        }

        /* 3D Perspective Tilt Effect */
        .feature-card {
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .feature-card:hover {
            transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
        }

        /* Animated gradient border on hover */
        .feature-card.glow-border {
            background: var(--bg-card);
            position: relative;
        }

        .feature-card.glow-border::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: var(--gradient-primary);
            border-radius: calc(var(--radius-lg) + 2px);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .feature-card.glow-border:hover::before {
            opacity: 1;
            animation: borderGlow 2s linear infinite;
        }

        @keyframes borderGlow {

            0%,
            100% {
                filter: blur(8px);
            }

            50% {
                filter: blur(12px);
            }
        }

        /* Glass reflection effect */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            transform: rotate(30deg);
            pointer-events: none;
        }

        .feature-icon {
            width: 85px;
            height: 85px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-soft);
            border-radius: var(--radius-md);
            font-size: 40px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.7;
        }

        /* ===== ACTIVITY SECTION ===== */
        .activity {
            padding: 100px 6%;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .activity::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-primary);
        }

        .activity-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .activity-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--accent-1);
            display: grid;
            gap: 10px;
            line-height: 1.12;
            letter-spacing: -0.02em;
        }

        .activity-info h2 .event-main {
            display: block;
            color: var(--accent-1);
            text-wrap: balance;
        }

        .activity-info h2 .event-sub {
            display: block;
            font-family: 'Nyght Serif', 'Playfair Display', serif;
            font-size: clamp(18px, 2.2vw, 24px);
            font-weight: 400;
            line-height: 1.28;
            letter-spacing: 0;
            color: #334155;
            max-width: 24ch;
            text-wrap: balance;
            border-left: 3px solid rgba(99, 102, 241, 0.35);
            padding-left: 14px;
        }

        .activity-info h2 .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .activity-details {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
            text-align: left;
        }

        .activity-detail {
            display: grid;
            grid-template-columns: 48px max-content minmax(0, 1fr);
            align-items: center;
            column-gap: 10px;
            font-size: 16px;
        }

        .activity-detail-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-soft);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: var(--shadow-soft);
        }

        .activity-detail-label {
            font-weight: 700;
            letter-spacing: 0.01em;
            color: var(--text-secondary);
            white-space: nowrap;
        }

        .activity-detail-value {
            min-width: 0;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .activity-poster {
            position: relative;
        }

        .activity-poster img {
            width: 100%;
            max-width: 400px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease;
        }

        .activity-poster:hover img {
            transform: scale(1.02);
        }

        /* No Featured Event State */
        .no-event-state {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .no-event-state .empty-state-icon {
            font-size: 80px;
            margin-bottom: 24px;
            opacity: 0.8;
        }
        
        .no-event-state h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        
        .no-event-state p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Event Status Badge Variants */
        .event-status-badge.coming-soon {
            background: linear-gradient(135deg, #fef3c7, #fde047);
            color: #92400e;
        }
        
        .event-status-badge.closed {
            background: linear-gradient(135deg, #fee2e2, #fca5a5);
            color: #991b1b;
        }

        /* ===== WINNERS SECTION ===== */
        .winners {
            padding: 100px 6%;
            position: relative;
        }

        .winners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            align-items: stretch;
        }

        .winner-card {
            background: var(--bg-card);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            /* Start hidden for podium animation */
            opacity: 0;
            transform: translateY(60px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Gold card styling - first position */
        .winner-card.gold {
            order: 1;
            border-color: rgba(251, 191, 36, 0.3);
            z-index: 2;
        }

        /* Silver - second position */
        .winner-card.silver {
            order: 2;
        }

        /* Bronze - third position */
        .winner-card.bronze {
            order: 3;
        }

        /* Podium rise animation */
        .winner-card.podium-rise {
            animation: podiumRise 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .winner-card.gold.podium-rise {
            animation-delay: 0.6s;
        }

        .winner-card.silver.podium-rise {
            animation-delay: 0.3s;
        }

        .winner-card.bronze.podium-rise {
            animation-delay: 0s;
        }

        @keyframes podiumRise {
            0% {
                opacity: 0;
                transform: translateY(60px) scale(0.9);
            }

            60% {
                opacity: 1;
                transform: translateY(-10px) scale(1.02);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .winner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .winner-card.gold::before {
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
        }

        .winner-card.silver::before {
            background: linear-gradient(90deg, #94a3b8, #64748b);
        }

        .winner-card.bronze::before {
            background: linear-gradient(90deg, #fb923c, #ea580c);
        }

        .winner-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
        }

        /* ===== WINNER CARD ENHANCEMENTS ===== */
        .winner-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.7s ease;
        }

        .winner-card:hover::after {
            left: 150%;
        }

        /* Pulsing glow effects (always active) */
        .winner-card.gold {
            animation: goldGlow 3s ease-in-out infinite alternate;
        }

        .winner-card.gold.podium-rise {
            animation: podiumRise 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
                goldGlow 3s ease-in-out 1.5s infinite alternate;
        }

        .winner-card.silver {
            animation: silverGlow 3.5s ease-in-out infinite alternate;
        }

        .winner-card.silver.podium-rise {
            animation: podiumRise 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
                silverGlow 3.5s ease-in-out 1.2s infinite alternate;
        }

        .winner-card.bronze {
            animation: bronzeGlow 4s ease-in-out infinite alternate;
        }

        .winner-card.bronze.podium-rise {
            animation: podiumRise 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
                bronzeGlow 4s ease-in-out 0.9s infinite alternate;
        }

        @keyframes goldGlow {
            0% {
                box-shadow: 0 8px 30px rgba(251, 191, 36, 0.15), 0 0 20px rgba(245, 158, 11, 0.1);
            }

            100% {
                box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3), 0 0 35px rgba(245, 158, 11, 0.2);
            }
        }

        @keyframes silverGlow {
            0% {
                box-shadow: 0 8px 30px rgba(148, 163, 184, 0.15), 0 0 20px rgba(100, 116, 139, 0.1);
            }

            100% {
                box-shadow: 0 12px 40px rgba(148, 163, 184, 0.25), 0 0 30px rgba(100, 116, 139, 0.15);
            }
        }

        @keyframes bronzeGlow {
            0% {
                box-shadow: 0 8px 30px rgba(251, 146, 60, 0.15), 0 0 20px rgba(234, 88, 12, 0.1);
            }

            100% {
                box-shadow: 0 12px 40px rgba(251, 146, 60, 0.25), 0 0 30px rgba(234, 88, 12, 0.15);
            }
        }

        /* Rank-specific hover glow (intensified) */
        .winner-card.gold:hover {
            box-shadow: 0 20px 50px rgba(251, 191, 36, 0.4),
                0 0 40px rgba(245, 158, 11, 0.3);
        }

        .winner-card.silver:hover {
            box-shadow: 0 20px 50px rgba(148, 163, 184, 0.35),
                0 0 35px rgba(100, 116, 139, 0.25);
        }

        .winner-card.bronze:hover {
            box-shadow: 0 20px 50px rgba(251, 146, 60, 0.35),
                0 0 35px rgba(234, 88, 12, 0.25);
        }

        /* Medal pulse animation */
        .winner-card:hover .winner-medal {
            animation: medalPulse 1s ease infinite;
        }

        @keyframes medalPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .winner-medal {
            font-size: 55px;
            margin-bottom: 20px;
        }

        .winner-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
            line-height: 1.3;
        }

        .winner-card.gold h3 {
            background: linear-gradient(135deg, #F4D03F 0%, #FFA726 50%, #FF6F00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .winner-card.silver h3 {
            background: linear-gradient(135deg, #E8EAF6 0%, #B0BEC5 50%, #78909C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .winner-card.bronze h3 {
            background: linear-gradient(135deg, #FFAB91 0%, #FF7043 50%, #D84315 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .winner-card .event {
            color: var(--accent-1);
            font-size: 14px;
            font-weight: 600;
        }

        /* ===== GALLERY FILTER CHIPS ===== */
        .gallery-filters {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 28px;
        }

        .gallery-filter-chip {
            padding: 8px 20px;
            border-radius: 50px;
            border: 1.5px solid var(--glass-border);
            background: var(--bg-card);
            color: var(--text-secondary);
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .gallery-filter-chip:hover {
            border-color: var(--accent-1);
            color: var(--accent-1);
        }

        .gallery-filter-chip.active {
            background: var(--accent-1);
            border-color: var(--accent-1);
            color: white;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .gallery-item.gallery-hidden {
            display: none;
        }

        .gallery-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            padding: 40px;
            color: var(--text-muted);
            font-size: 14px;
            gap: 10px;
        }

        /* ===== GALLERY SECTION ===== */
        .gallery {
            padding: 100px 6%;
            background: var(--bg-secondary);
        }

        .gallery-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: var(--bg-card);
            border: 2px solid var(--glass-border);
            border-radius: 50%;
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
        }

        .gallery-arrow:hover {
            background: var(--accent-1);
            border-color: var(--accent-1);
            color: white;
            box-shadow: var(--shadow-glow);
        }

        .gallery-arrow:focus-visible {
            outline: 2px solid var(--accent-1);
            outline-offset: 2px;
        }

        .gallery-arrow-left {
            left: -24px;
        }

        .gallery-arrow-right {
            right: -24px;
        }

        .gallery-arrow.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .gallery-scroll {
            display: flex;
            gap: 25px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            scroll-behavior: smooth;
        }

        .gallery-scroll::-webkit-scrollbar {
            display: none;
        }

        .gallery-item {
            flex: 0 0 420px;
            scroll-snap-align: start;
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            /* Smooth reveal animation */
            opacity: 0;
            transform: translateY(30px);
        }

        .gallery-item.revealed {
            animation: galleryReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .gallery-item:nth-child(1).revealed {
            animation-delay: 0s;
        }

        .gallery-item:nth-child(2).revealed {
            animation-delay: 0.1s;
        }

        .gallery-item:nth-child(3).revealed {
            animation-delay: 0.2s;
        }

        .gallery-item:nth-child(4).revealed {
            animation-delay: 0.3s;
        }

        .gallery-item:nth-child(5).revealed {
            animation-delay: 0.4s;
        }

        .gallery-item:nth-child(6).revealed {
            animation-delay: 0.5s;
        }

        @keyframes galleryReveal {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow-glow);
        }

        .gallery-item img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(30, 41, 59, 0.95));
            padding: 60px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay span {
            color: white;
            font-weight: 600;
            font-size: 15px;
        }

        /* ===== IMAGE MODAL / LIGHTBOX ===== */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.95);
            backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .image-modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .image-modal img {
            max-width: 90%;
            max-height: 90%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-glow);
        }

        .modal-close {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-button);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .modal-close:hover {
            transform: scale(1.1);
        }

        /* Lightbox Image Transition */
        .image-modal img {
            transition: opacity 0.15s ease, transform 0.15s ease;
        }

        /* Lightbox Navigation Arrows */
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(99, 102, 241, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .modal-nav:hover {
            background: var(--gradient-button);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-nav-prev {
            left: 20px;
        }

        .modal-nav-next {
            right: 20px;
        }

        /* Swipe hint on mobile */
        .swipe-hint {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            display: none;
        }

        @media (max-width: 768px) {
            .modal-nav {
                display: none;
                /* Hide arrows on mobile, use swipe */
            }

            .swipe-hint {
                display: block;
            }
        }

        /* ===== REGISTRATION MODAL ===== */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(20px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 20px;
        }

        .modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            background: var(--bg-secondary);
            border-radius: var(--radius-lg);
            max-width: 950px;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-glow);
        }

        .modal-header {
            background: var(--gradient-button);
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            color: white;
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
        }

        .modal-header button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .modal-header button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .modal-body {
            padding: 28px;
            max-height: 70vh;
            overflow-y: auto;
        }

        /* Form Styles */
        .reg-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-section {
            background: var(--bg-primary);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-md);
            padding: 16px;
        }

        .form-section-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--accent-1);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 2fr 2fr 1.2fr 1fr;
            gap: 12px;
            margin-bottom: 12px;
        }

        .form-row.single {
            grid-template-columns: 1fr;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group label .required {
            color: #ef4444;
        }

        .form-group input,
        .form-group select {
            padding: 12px 14px;
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            font-size: 16px;
            /* Prevents iOS auto-zoom on focus */
            min-height: 48px;
            /* Touch-friendly target size */
            font-family: 'Nyght Serif', serif;
            transition: all 0.3s ease;
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            padding-right: 40px;
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
        }

        .form-group input:hover,
        .form-group select:hover {
            border-color: var(--accent-1);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-1);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
        }

        /* ===== MODERN CUSTOM DROPDOWN STYLING ===== */
        .form-group select option {
            padding: 14px 16px;
            font-size: 14px;
            font-family: 'Nyght Serif', serif;
            background: #ffffff;
            color: #374151;
            border-bottom: 1px solid #f1f5f9;
        }

        .form-group select option:hover,
        .form-group select option:checked {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 146, 60, 0.1));
            color: #ea580c;
            font-weight: 500;
        }

        /* Custom Select Wrapper for Modern Look */
        .form-group select {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .form-group select:focus {
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15),
                0 4px 12px rgba(99, 102, 241, 0.08);
        }

        .form-group input::placeholder {
            color: var(--text-muted);
        }

        /* ===== UIVERSE-INSPIRED INPUT ENHANCEMENTS (mrhyddenn Style - 51K Views) ===== */
        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group select {
            position: relative;
            z-index: 1;
        }

        /* Animated underline effect on focus */
        .form-group input::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: all 0.4s ease;
        }

        .form-group input:focus::after {
            width: 100%;
            left: 0;
        }

        /* Enhanced focus glow */
        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--accent-1);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15),
                0 0 20px rgba(99, 102, 241, 0.1);
            transform: translateY(-1px);
        }

        /* Input hover state */
        .form-group input:hover:not(:focus),
        .form-group select:hover:not(:focus) {
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
        }

        /* Valid input state */
        .form-group input:valid:not(:placeholder-shown) {
            border-color: rgba(16, 185, 129, 0.4);
        }

        /* Input icon styling for future use */
        .input-with-icon {
            position: relative;
        }

        .input-with-icon input {
            padding-left: 44px;
        }

        .input-with-icon .input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 16px;
            transition: color 0.3s ease;
            z-index: 2;
        }

        .input-with-icon input:focus~.input-icon,
        .input-with-icon input:focus+.input-icon {
            color: var(--accent-1);
        }

        .member-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 22px;
            height: 22px;
            background: var(--gradient-button);
            color: white;
            border-radius: 50%;
            font-size: 11px;
            font-weight: 700;
        }

        .submit-btn {
            background: var(--gradient-button);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 700;
            font-family: 'Nyght Serif', serif;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .submit-btn .spinner {
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: none;
        }

        .submit-btn.loading .spinner {
            display: block;
        }

        .submit-btn.loading .btn-text {
            display: none;
        }

        /* ===== UIVERSE-INSPIRED RADIO BUTTONS (ayman-ashine Pill Style) ===== */
        .radio-group {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .radio-option {
            position: relative;
            cursor: pointer;
        }

        .radio-option input {
            display: none;
        }

        .radio-tile {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--bg-secondary);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-secondary);
            font-family: 'Nyght Serif', serif;
        }

        .radio-option:hover .radio-tile {
            border-color: var(--accent-1);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
        }

        .radio-option input:checked+.radio-tile {
            background: var(--gradient-button);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
            transform: scale(1.05);
        }

        .radio-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 8px;
            display: block;
        }

        /* ===== UIVERSE-INSPIRED CONSENT CHECKBOX (hatim_6360 Gradient Style) ===== */
        .consent-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 24px 0;
            padding: 16px;
            background: rgba(99, 102, 241, 0.05);
            border-radius: var(--radius-md);
            border: 1px solid var(--glass-border);
        }

        .consent-checkbox {
            position: relative;
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .consent-checkbox input {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            z-index: 2;
        }

        .consent-checkmark {
            position: absolute;
            top: 0;
            left: 0;
            width: 24px;
            height: 24px;
            background: var(--bg-secondary);
            border: 2px solid var(--glass-border);
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .consent-checkbox:hover .consent-checkmark {
            border-color: var(--accent-1);
            box-shadow: 0 0 12px rgba(99, 102, 241, 0.2);
        }

        .consent-checkbox input:checked+.consent-checkmark {
            background: var(--gradient-button);
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
        }

        .consent-checkmark::after {
            content: '';
            position: absolute;
            display: none;
            left: 8px;
            top: 4px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .consent-checkbox input:checked+.consent-checkmark::after {
            display: block;
        }

        .consent-text {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .consent-text a {
            color: var(--accent-1);
            text-decoration: underline;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== UIVERSE-INSPIRED LOADER ENHANCEMENTS ===== */

        /* Neon Ring Spinner - Enhanced */
        .spinner {
            position: relative;
        }

        .spinner::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: var(--gradient-primary);
            filter: blur(8px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .submit-btn.loading .spinner::before {
            opacity: 0.5;
            animation: pulseGlow 1s ease-in-out infinite;
        }

        @keyframes pulseGlow {

            0%,
            100% {
                opacity: 0.3;
                filter: blur(8px);
            }

            50% {
                opacity: 0.6;
                filter: blur(12px);
            }
        }

        /* Skeleton Loader for Content Placeholders */
        .skeleton {
            background: linear-gradient(90deg,
                    var(--glass-border) 25%,
                    rgba(99, 102, 241, 0.1) 50%,
                    var(--glass-border) 75%);
            background-size: 200% 100%;
            animation: skeletonShimmer 1.5s ease-in-out infinite;
            border-radius: var(--radius-sm);
        }

        .skeleton-text {
            height: 16px;
            margin-bottom: 8px;
        }

        .skeleton-title {
            height: 24px;
            width: 60%;
            margin-bottom: 12px;
        }

        .skeleton-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
        }

        .skeleton-card {
            height: 200px;
            border-radius: var(--radius-lg);
        }

        @keyframes skeletonShimmer {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* Bouncing Dots Loader */
        .loader-dots {
            display: flex;
            gap: 6px;
            align-items: center;
            justify-content: center;
        }

        .loader-dots span {
            width: 10px;
            height: 10px;
            background: var(--accent-1);
            border-radius: 50%;
            animation: bounceDot 1.4s ease-in-out infinite;
        }

        .loader-dots span:nth-child(1) {
            animation-delay: 0s;
        }

        .loader-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes bounceDot {

            0%,
            80%,
            100% {
                transform: scale(0.6);
                opacity: 0.5;
            }

            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Page Loading Overlay */
        .page-loader {
            position: fixed;
            inset: 0;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .page-loader-content {
            text-align: center;
        }

        .page-loader-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--glass-border);
            border-top-color: var(--accent-1);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 16px;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        }

        .form-success {
            text-align: center;
            padding: 40px 20px;
            display: none;
        }

        .form-success.show {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-success .success-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .form-success h4 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .form-success p {
            color: var(--text-secondary);
        }

        /* ===== EMPTY STATES ===== */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            grid-column: 1 / -1;
            /* Span full grid width */
        }

        .empty-state-icon {
            font-size: 80px;
            margin-bottom: 20px;
            opacity: 0.6;
            filter: grayscale(0.3);
        }

        .empty-state h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .empty-state p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 400px;
            margin: 0 auto;
        }

        /* ===== FIELD ERROR MESSAGES ===== */
        .field-error {
            display: block;
            color: #EF4444;
            font-size: 12px;
            margin-top: 4px;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== FOOTER ===== */

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            padding: 80px 6%;
            position: relative;
            overflow: hidden;
        }

        .testimonial-carousel {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-card {
            flex: 0 0 100%;
            padding: 40px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-card);
        }

        .testimonial-quote {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-primary);
            margin-bottom: 24px;
            font-style: italic;
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 60px;
            font-family: 'Playfair Display', serif;
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.15;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
            box-shadow: var(--shadow-soft);
        }

        .testimonial-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .testimonial-info span {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 24px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--glass-border);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .testimonial-dot:hover {
            background: var(--accent-2);
            transform: scale(1.1);
        }

        .testimonial-dot.active {
            background: var(--gradient-primary);
            border-color: var(--accent-1);
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
        }

        footer {
            background: var(--text-primary);
            color: var(--bg-primary);
            padding: 60px 6% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-section h4 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 13px;
        }

        /* ===== TEAM SECTION ===== */
        .team-section {
            padding: 80px 6%;
            position: relative;
            background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
        }

        .team-section .section-header {
            margin-bottom: 40px;
        }

        .team-section .section-tag {
            color: #6366f1;
            background: rgba(99, 102, 241, 0.1);
            margin-bottom: 16px;
        }

        .team-section .section-title {
            color: #1e293b;
            margin-bottom: 12px;
        }

        .team-section .section-title span {
            background: var(--gradient-button);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .team-section .section-subtitle {
            color: #64748b;
        }

        .team-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .team-tab {
            padding: 12px 24px;
            border: 2px solid #e2e8f0;
            background: white;
            border-radius: 50px;
            font-family: 'Nyght Serif', serif;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .team-tab:hover {
            border-color: #6366f1;
            color: #6366f1;
        }

        .team-tab.active {
            background: var(--gradient-button);
            border-color: transparent;
            color: white;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
        }

        .team-content {
            position: relative;
        }

        .team-panel {
            display: none;
            animation: fadeInUp 0.4s ease;
        }

        .team-panel.active {
            display: block;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
            justify-content: center;
        }

        .team-grid-small {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            max-width: 620px;
            margin: 0 auto;
            justify-content: center;
        }

        .team-grid-compact {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1100px;
            margin: 0 auto;
            justify-content: center;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 20px;
            padding: 28px 24px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
            aspect-ratio: 1 / 1.1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 260px;
            flex-shrink: 0;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
            border-radius: 20px 20px 0 0;
        }

        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
        }

        .team-card:hover::before {
            height: 6px;
        }

        .team-card-mini {
            padding: 20px 18px;
            aspect-ratio: 1 / 1;
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            margin: 0 auto 16px;
            position: relative;
        }

        .team-card-mini .team-avatar {
            width: 60px;
            height: 60px;
            margin-bottom: 12px;
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
            background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 100%);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
            transition: all 0.3s ease;
        }

        .team-card:hover .team-avatar img {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
        }

        .avatar-placeholder {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Nyght Serif', serif;
            font-size: 28px;
            font-weight: 700;
            color: #6366f1;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
            transition: all 0.3s ease;
        }

        .team-card-mini .avatar-placeholder {
            font-size: 22px;
        }

        .team-card:hover .avatar-placeholder {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
        }

        .team-info {
            margin-top: 4px;
        }

        .team-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 17px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }

        .team-card-mini .team-info h4 {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .team-role {
            display: inline-block;
            padding: 5px 14px;
            background: linear-gradient(135deg, #e0e7ff 0%, #ede9fe 100%);
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
            color: #6366f1;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 6px;
        }

        .team-card-mini .team-role {
            padding: 4px 10px;
            font-size: 9px;
        }

        /* Role-specific colors */
        .role-president {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #b45309;
        }

        .role-vp {
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            color: #4338ca;
        }

        .role-tech {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            color: #047857;
        }

        .role-design {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            color: #be185d;
        }

        .role-event {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            color: #b91c1c;
        }

        .role-social {
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
            color: #0369a1;
        }

        .team-dept {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 10px;
            margin-top: 2px;
        }

        .team-socials {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
        }

        .team-socials a {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            border: none;
            border-radius: 8px;
            color: #64748b;
            transition: all 0.3s ease;
        }

        .team-socials a:hover {
            background: var(--gradient-button);
            color: white;
            transform: translateY(-2px);
        }

        .team-socials svg {
            width: 14px;
            height: 14px;
        }

        .team-loading {
            text-align: center;
            padding: 3rem;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                order: 2;
            }

            .hero-image {
                order: 1;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-description {
                margin: 0 auto 30px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid,
            .winners-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .activity-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .activity-poster {
                order: -1;
            }

            .section-title {
                font-size: 32px;
            }

            .activity-info h2 {
                font-size: 32px;
                gap: 8px;
            }

            .activity-info h2 .event-sub {
                max-width: none;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 5%;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--bg-secondary);
                flex-direction: column;
                padding: 100px 30px 30px;
                gap: 10px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 30px rgba(99, 102, 241, 0.1);
                /* Frosted glass effect for mobile menu */
                background: rgba(255, 255, 255, 0.92);
                backdrop-filter: blur(20px) saturate(180%);
                -webkit-backdrop-filter: blur(20px) saturate(180%);
                border-left: 1px solid rgba(99, 102, 241, 0.2);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 15px;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 100px 5% 60px;
            }

            .stats-bar,
            .features-grid,
            .winners-grid {
                grid-template-columns: 1fr;
            }

            .team-tabs {
                gap: 6px;
            }

            .team-tab {
                padding: 10px 18px;
                font-size: 13px;
            }

            .team-grid {
                justify-content: center;
            }

            .team-grid-small {
                justify-content: center;
            }

            .team-grid-compact {
                justify-content: center;
            }

            .team-card {
                padding: 25px 20px;
                width: 260px;
            }

            .gallery-item {
                flex: 0 0 280px;
            }

            .gallery-arrow {
                display: flex;
                position: absolute;
                width: 40px;
                height: 40px;
                background: var(--bg-secondary);
                border: 1px solid var(--glass-border);
                box-shadow: var(--shadow-soft);
                z-index: 10;
            }

            .gallery-arrow-left {
                left: 10px;
            }

            .gallery-arrow-right {
                right: 10px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .modal-body {
                padding: 20px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .section-title {
                font-size: 28px;
            }

            .activity-info h2 {
                font-size: 28px;
                gap: 6px;
            }

            .activity-info h2 .event-sub {
                font-size: clamp(16px, 4.8vw, 20px);
                padding-left: 10px;
            }

            .activity-detail {
                grid-template-columns: 44px max-content minmax(0, 1fr);
                column-gap: 8px;
                font-size: 15px;
            }

            .activity-detail-icon {
                width: 44px;
                height: 44px;
                font-size: 20px;
            }
        }

        /* ===== FEEDBACK WIDGET SECTION ===== */
        .feedback-section {
            padding: 60px 6%;
            background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .feedback-container {
            max-width: 480px;
            width: 100%;
        }

        .feedback-widget {
            background: var(--text-primary);
            border-radius: var(--radius-lg);
            padding: 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .feedback-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin: 16px;
        }

        .feedback-question {
            font-family: 'Nyght Serif', serif;
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .feedback-emojis {
            display: flex;
            gap: 8px;
        }

        .emoji-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px;
        }

        .emoji-btn svg {
            width: 100%;
            height: 100%;
            stroke: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        .emoji-btn:hover {
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        .emoji-btn:hover svg {
            stroke: rgba(255, 255, 255, 0.9);
        }

        .emoji-btn.selected {
            background: var(--accent-1);
            border-color: var(--accent-1);
            transform: scale(1.1);
        }


        /* ===== CUSTOM DROPDOWN — Lightswind-inspired ===== */

        .custom-select {
            position: relative;
            width: 100%;
        }

        .select-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            font-size: 16px;
            min-height: 48px;
            font-family: 'Nyght Serif', serif;
            background: var(--bg-secondary);
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.2s ease;
            -webkit-appearance: none;
            appearance: none;
        }

        .select-trigger:hover {
            border-color: var(--accent-1);
            box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
        }

        .select-trigger:focus {
            outline: none;
            border-color: var(--accent-1);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15),
                0 0 20px rgba(99, 102, 241, 0.1);
            transform: translateY(-1px);
        }

        .select-trigger .selected-text {
            flex: 1;
            text-align: left;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .select-trigger .selected-text.placeholder {
            color: var(--text-muted);
        }

        .select-trigger .chevron {
            width: 16px;
            height: 16px;
            color: var(--accent-1);
            flex-shrink: 0;
            margin-left: 8px;
            transition: transform 0.2s ease;
        }

        .custom-select.open .select-trigger .chevron {
            transform: rotate(180deg);
        }

        .custom-select.open .select-trigger {
            border-color: var(--accent-1);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15),
                0 0 20px rgba(99, 102, 241, 0.1);
        }

        .select-content {
            position: absolute;
            top: calc(100% + 4px);
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            box-shadow: 0 10px 38px -10px rgba(0, 0, 0, 0.35),
                0 10px 20px -15px rgba(0, 0, 0, 0.2);
            padding: 4px;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.96) translateY(-4px);
            transform-origin: top center;
            transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
            max-height: 280px;
            overflow-y: auto;
        }

        .custom-select.open .select-content {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(0);
        }

        .select-content::-webkit-scrollbar {
            width: 6px;
        }

        .select-content::-webkit-scrollbar-track {
            background: transparent;
        }

        .select-content::-webkit-scrollbar-thumb {
            background: rgba(99, 102, 241, 0.2);
            border-radius: 3px;
        }

        .select-content::-webkit-scrollbar-thumb:hover {
            background: rgba(99, 102, 241, 0.4);
        }

        .select-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            font-size: 14px;
            font-family: 'Nyght Serif', serif;
            color: var(--text-primary);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.15s ease;
            user-select: none;
        }

        .select-item:hover {
            background: rgba(99, 102, 241, 0.08);
        }

        .select-item.selected {
            background: rgba(99, 102, 241, 0.12);
            color: var(--accent-1);
            font-weight: 500;
        }

        .select-item .check {
            opacity: 0;
            color: var(--accent-1);
            font-weight: 700;
            font-size: 14px;
            transition: opacity 0.15s ease;
        }

        .select-item.selected .check {
            opacity: 1;
        }

        .select-label {
            padding: 6px 12px 4px;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .select-separator {
            height: 1px;
            margin: 4px 0;
            background: var(--glass-border);
        }

        .emoji-btn.selected svg {
            stroke: white;
        }

        .feedback-form {
            padding: 0 16px 16px;
            display: none;
            animation: feedbackSlideDown 0.3s ease;
        }

        .feedback-form.active {
            display: block;
        }

        @keyframes feedbackSlideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feedback-form-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .feedback-label {
            font-family: 'Nyght Serif', serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
        }

        .feedback-textarea-wrapper {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .feedback-textarea-wrapper:focus-within {
            border-color: var(--accent-1);
        }

        .feedback-textarea-wrapper textarea {
            width: 100%;
            padding: 16px;
            border: none;
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            font-family: 'Nyght Serif', serif;
            font-size: 14px;
            resize: none;
            outline: none;
        }

        .feedback-textarea-wrapper textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .feedback-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
            gap: 16px;
        }

        .feedback-thanks {
            font-family: 'Nyght Serif', serif;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .feedback-submit-btn {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: var(--radius-md);
            color: white;
            font-family: 'Nyght Serif', serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .feedback-submit-btn:hover {
            background: var(--accent-1);
            transform: translateY(-2px);
        }

        .feedback-success {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 24px;
            text-align: center;
            gap: 16px;
            animation: feedbackFadeIn 0.4s ease;
        }

        .feedback-success.active {
            display: flex;
        }

        @keyframes feedbackFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .feedback-success .success-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
        }

        .feedback-success span {
            font-family: 'Nyght Serif', serif;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        @media (max-width: 480px) {
            .feedback-header {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .feedback-footer {
                flex-direction: column;
                gap: 12px;
            }

            .feedback-submit-btn {
                width: 100%;
            }
        }

        /* ===== HERO CREDENTIAL BADGE ===== */
        .hero-credential-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--bg-card);
            border: 2px solid var(--glass-border);
            padding: 12px 20px;
            border-radius: var(--radius-md);
            margin-top: 24px;
            animation: fadeUp 0.8s ease 0.4s both;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .hero-credential-badge:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-card);
            border-color: var(--accent-1);
        }

        .credential-icon {
            font-size: 28px;
            animation: pulse 2s infinite;
        }

        .credential-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .credential-text strong {
            font-family: 'Nyght Serif', serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .credential-text small {
            font-size: 11px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* ===== AFFILIATION SECTION ===== */
        .affiliation {
            padding: 100px 8%;
            position: relative;
        }

        .affiliation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .certificate-card {
            background: var(--bg-card);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .certificate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f0c14b, #d4af37);
            opacity: 0.8;
        }

        .certificate-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.4);
        }

        .certificate-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: linear-gradient(135deg, #d4af37, #f0c14b);
            color: #1a1a2e;
            padding: 6px 14px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .certificate-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .certificate-card h3 {
            font-family: 'Nyght Serif', serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .certificate-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .certificate-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--glass-border);
        }

        .cert-date {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-1);
        }

        /* ISTE Recognition Banner */
        .iste-recognition {
            margin-top: 3rem;
            background: var(--gradient-soft);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-lg);
            padding: 24px 32px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .recognition-content {
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }

        .recognition-logo {
            font-family: 'Nyght Serif', serif;
            font-size: 32px;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding: 8px 16px;
            border: 3px solid var(--accent-1);
            border-radius: var(--radius-sm);
        }

        .recognition-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .recognition-text strong {
            font-family: 'Nyght Serif', serif;
            font-size: 16px;
            color: var(--text-primary);
        }

        .recognition-text span {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* ===== TIMELINE SECTION ===== */
        .timeline-section {
            padding: 100px 8%;
            position: relative;
            background: var(--gradient-soft);
        }

        .timeline-container {
            max-width: 900px;
            margin: 3rem auto 0;
            position: relative;
            padding: 20px 0;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 4px;
            top: 0;
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: calc(50% + 30px);
            position: relative;
            margin-bottom: 50px;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: calc(50% + 30px);
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: var(--accent-1);
            border: 4px solid var(--bg-primary);
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
        }

        .timeline-year {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -8px;
            background: var(--gradient-button);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
            z-index: 3;
        }

        .timeline-content {
            background: var(--bg-card);
            border: 2px solid var(--glass-border);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            transition: all 0.3s ease;
            max-width: 100%;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            text-align: left;
        }

        .timeline-content:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            border-color: var(--accent-1);
        }

        .timeline-content h3 {
            font-family: 'Nyght Serif', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .timeline-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Timeline Responsive */
        @media (max-width: 768px) {
            .timeline-container::before {
                left: 16px;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-left: 50px;
                padding-right: 0;
            }

            .timeline-marker {
                left: 16px;
                transform: translate(-50%, -50%);
            }

            .timeline-year {
                left: 16px;
                transform: translateX(-10%);
                font-size: 11px;
                padding: 5px 12px;
            }

            .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                text-align: left;
            }

            .timeline-content h3 {
                font-size: 16px;
            }

            .timeline-content p {
                font-size: 13px;
            }

            .hero-credential-badge {
                padding: 10px 16px;
            }

            .credential-text strong {
                font-size: 13px;
            }

            .credential-text small {
                font-size: 10px;
            }

            .affiliation-grid {
                grid-template-columns: 1fr;
            }

            .recognition-content {
                flex-direction: column;
                text-align: center;
            }

            .certificate-card {
                padding: 1.5rem;
            }

            .certificate-icon {
                font-size: 40px;
            }

            .certificate-card h3 {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .timeline-section {
                padding: 60px 5%;
            }

            .timeline-item {
                padding-left: 45px;
                margin-bottom: 40px;
            }

            .timeline-content {
                padding: 16px;
            }

            .hero-credential-badge {
                padding: 8px 12px;
                gap: 8px;
            }

            .credential-icon {
                font-size: 22px;
            }

            .credential-text strong {
                font-size: 12px;
            }

            .credential-text small {
                font-size: 9px;
            }

            .affiliation {
                padding: 60px 5%;
            }

            .iste-recognition {
                padding: 16px 20px;
            }

            .recognition-logo {
                font-size: 24px;
                padding: 6px 12px;
            }

            .recognition-text strong {
                font-size: 14px;
            }

            .recognition-text span {
                font-size: 11px;
            }
        }

