:root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #111111;
            --bg-tertiary: #1a1a1a;
            --surface-dark: #0d1117;
            --surface-light: #21262d;
            --primary-blue: #2563eb;
            --primary-blue-hover: #1d4ed8;
            --primary-blue-light: #3b82f6;
            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --text-muted: #64748b;
            --border-subtle: rgba(255, 255, 255, 0.1);
            --shadow-neumorphic:
                8px 8px 16px #000000,
                -8px -8px 16px #1f1f1f;
            --shadow-neumorphic-inset:
                inset 4px 4px 8px #000000,
                inset -4px -4px 8px #1f1f1f;
            --shadow-neumorphic-hover:
                12px 12px 24px #000000,
                -12px -12px 24px #1f1f1f;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
        }

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

        html {
            background-color: var(--bg-primary);
        }

        @font-face {
            font-family: 'Prompt';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url(https://fonts.gstatic.com/s/prompt/v10/Va9dYFTYgd53ZjZ3RWQ.woff2) format('woff2');
            unicode-range: U+0E01-0E5B, U+200C-200D, U+25CC;
        }

        body {
            font-family: 'Prompt', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-blue-hover);
        }

        /* Neumorphic Components */
        .neumorphic {
            background: var(--bg-tertiary);
            box-shadow: var(--shadow-neumorphic);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .neumorphic:hover {
            box-shadow: var(--shadow-neumorphic-hover);
            transform: translateY(-2px);
        }

        .neumorphic-inset {
            background: var(--bg-secondary);
            box-shadow: var(--shadow-neumorphic-inset);
            border-radius: 16px;
        }

        .glassmorphic {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .glassmorphic::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
        }

        /* Button Styles */
        .btn-primary-modern {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            border: none;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 4px 15px rgba(37, 99, 235, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .btn-primary-modern:hover {
            transform: translateY(-2px);
            box-shadow:
                0 8px 25px rgba(37, 99, 235, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .btn-primary-modern:hover::before {
            left: 100%;
        }

        /* Navbar Enhancements */
        .navbar-modern {
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 0px 0;
            transition: all 0.3s ease;
        }

        .navbar-modern.scrolled {
            background: rgba(0, 0, 0, 0.2);
            padding: 8px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand-modern {
            display: flex;
            align-items: center;
            font-weight: 500;
            font-size: 20px;
            color: var(--text-primary) !important;
            text-decoration: none;
        }

        .navbar-brand-modern img {
            height: 80px;
            padding: 10px 0 10px 0;
            margin-right: 12px;
            filter: contrast(0.2);
        }

        .navbar-modern.scrolled .navbar-brand-modern img {
            filter: unset;
            transition: filter 0.3s ease;
        }

        .navbar-brand-modern img:hover {
            filter: contrast(0.5);
            transition: filter 0.3s ease;
        }

        .navbar-toggler {
            filter: invert(1);
        }

        .nav-link-modern {
            color: var(--bs-gray-600) !important;
            font-weight: 400;
            padding: 8px 16px !important;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 18px;
            filter: contrast(0.5);
        }

        .navbar-modern.scrolled .nav-link-modern {
            color: var(--text-primary) !important;
            filter: unset;
            transition: filter 0.3s ease;
        }

        .nav-link-modern:hover {
            color: var(--primary-blue) !important;
            background: rgba(37, 99, 235, 0.1);
            filter: contrast(1);
        }

        /* Hero Section */
        .hero-modern {
            /* height: 100vh; */
            /* background:
                    linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(17, 17, 17, 0.6)); */
            /* background:
                    url('https://images.unsplash.com/photo-1574267432553-4b4628081c31?q=80&w=2940&auto=format&fit=crop') center/cover; */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-blue-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-bottom: 40px;
        }

        /* Card Styles */
        .card-modern {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 32px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
        }

        .card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .card-modern:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(37, 99, 235, 0.2);
        }

        .card-modern:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 24px;
            color: white;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .card-title-modern {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 16px;
            text-align: center;
        }

        .card-text-modern {
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.6;
        }

        /* News Card Styles */
        .news-card {
            background: var(--bg-tertiary);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }

        .news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }

        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .news-card-content {
            padding: 20px;
        }

        .news-title {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-date {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        /* Section Styles */
        .section-modern {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 500;
            text-align: center;
            margin-bottom: 60px;
            color: var(--text-primary);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* Partner Logo Styles */
        .partner-logo {
            opacity: 0.9;
            transition: all 0.3s ease;
            padding: 15px;
            border-radius: 12px;
            background: var(--bs-light);
        }

        .partner-logo:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .partner-logo img {
            height: 45px;
            max-width: 200px;
            transition: filter 0.3s ease;
            -webkit-user-drag: none;
            user-select: none;
            -moz-user-select: none;
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
        }

        .fw-bold {
            font-weight: 500 !important;
        }

        /* Footer Styles */
        .footer-modern {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
        }

        .footer-logo img {
            width: 200px;
            margin-right: 16px;
        }

        .footer-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .footer-text {
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 4px 0;
        }

        .footer-link:hover {
            color: var(--primary-blue);
        }

        a {
            text-decoration: none !important;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--bg-tertiary);
            border: 1px solid var(--border-subtle);
            border-radius: 50%;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            margin-right: 12px;
        }

        .social-links a:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

        .delay-5 {
            transition-delay: 0.5s;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-modern {
                /* padding: 80px 0; */
                padding: 30px 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .card-modern {
                padding: 24px;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (min-width: 992px) {
            .navbar-nav {
                margin-top: unset !important;
                align-items: unset !important;
            }

            .navbar-nav ul li.nav-item {
                padding: 0 !important;
            }
        }


        .navbar-nav {
            margin-top: 24px;
            align-items: flex-end;
        }

        .navbar-nav li.nav-item {
            padding: 8px 0 8px 0;
        }

        .hero-modern {
            /*height: 100vh;*/
            overflow: hidden;
        }

        .photo-halloffame {
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }

        .carousel,
        .carousel-inner,
        .carousel-item {
            height: 100%;
            width: 100%;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
        }

        .carousel-item img {
            pointer-events: none;
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-drag: none;
        }

        .object-fit-cover {
            object-fit: cover;
        }

        @media (max-width: 992px) {
            .navbar-modern {
                position: relative !important;
                margin-top: -1px;
                background: var(--bg-primary) !important;
                border-top: 1px solid var(--border-subtle);
            }

            .hero-modern {
                height: auto;
                margin-top: 0 !important;
            }

            .carousel,
            .carousel-inner,
            .carousel-item {
                height: auto;
            }

            .object-fit-cover {
                object-fit: contain;
                /* height: auto !important; */
                min-height: unset !important;
            }

            .text-description {
                display: none;
            }
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: clamp(40px, 10%, 80px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .hero-modern:hover .carousel-control-prev,
        .hero-modern:hover .carousel-control-next {
            opacity: 1;
            visibility: visible;
        }

        .carousel-control-prev {
            padding-left: clamp(1rem, 2vw, 2rem);
            transform: translateX(-20px);
        }

        .carousel-control-next {
            padding-right: clamp(1rem, 2vw, 2rem);
            transform: translateX(20px);
        }

        .hero-modern:hover .carousel-control-prev {
            transform: translateX(0);
        }

        .hero-modern:hover .carousel-control-next {
            transform: translateX(0);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: clamp(2rem, 5vw, 3rem);
            height: clamp(2rem, 5vw, 3rem);
            min-width: 32px;
            min-height: 32px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            background-size: 50%;
            backdrop-filter: blur(4px);
            transition: transform 0.2s ease;
        }

        @media (max-width: 992px) {

            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 2.5rem;
                height: 2.5rem;
                background-size: 40%;
            }
        }

        @media (max-width: 768px) {

            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
            }

            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 2rem;
                height: 2rem;
                background-size: 35%;
            }

            .carousel-control-prev {
                padding-left: 0.5rem;
            }

            .carousel-control-next {
                padding-right: 0.5rem;
            }
        }

        .carousel-control-prev:hover .carousel-control-prev-icon,
        .carousel-control-next:hover .carousel-control-next-icon {
            transform: scale(1.1);
            background-color: rgba(0, 0, 0, 0.7);
        }

        .carousel-item {
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-item-next:not(.carousel-item-start),
        .active.carousel-item-end {
            transform: translateX(100%);
        }

        .carousel-item-prev:not(.carousel-item-end),
        .active.carousel-item-start {
            transform: translateX(-100%);
        }

        .carousel-item-next.carousel-item-start,
        .carousel-item-prev.carousel-item-end {
            transform: translateX(0);
        }

        /* Utility Classes */
        .bg-primary-dark {
            background: var(--bg-primary);
        }

        .bg-secondary-dark {
            background: var(--bg-secondary);
        }

        .bg-tertiary-dark {
            background: var(--bg-tertiary);
        }

        .text-primary-light {
            color: var(--text-primary);
        }

        .text-secondary-light {
            color: var(--text-secondary);
        }

        .text-muted-light {
            color: var(--text-muted);
        }