        :root {
            --bg-dark: #00264D;
            --bg-darker: #001a33;
            --accent: #00AEEF;
            --text-white: #FFFFFF;
            --font-title: 'Bebas Neue', sans-serif;
            --font-body: 'Montserrat', sans-serif;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

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

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #fff;
        }

        #scroll-progress-line {
            position: fixed;
            top: 0;
            left: 0;
            width: 3px;
            height: 0%;
            background: var(--accent);
            z-index: 9999;
            box-shadow: 0 0 10px var(--accent);
            transition: height 0.1s ease-out;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 120px;
            overflow-x: hidden !important;
            max-width: 100vw;
        }

        body {
            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
            background-attachment: fixed;
            color: var(--text-white);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden !important;
            max-width: 100vw;
            -webkit-font-smoothing: antialiased;
        }

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

        .reveal-up {
            opacity: 0;
            visibility: hidden;
            transform: translate3d(0, 50px, 0);
            will-change: transform, opacity;
        }

        .reveal-left {
            opacity: 0;
            visibility: hidden;
            transform: translate3d(-50px, 0, 0);
            will-change: transform, opacity;
        }

        .reveal-zoom {
            opacity: 0;
            transform: scale3d(0.9, 0.9, 0.9);
            transition: all 1s ease-out;
            will-change: transform, opacity;
        }

        .active {
            opacity: 1 !important;
            transform: translate3d(0, 0, 0) scale3d(1, 1, 1) !important;
        }

        .text-accent {
            color: var(--accent);
        }

        .section-padding {
            padding: 100px 5%;
        }

        .section-title {
            text-align: center;
            font-family: var(--font-title);
            font-size: clamp(3rem, 6vw, 4.5rem);
            margin-bottom: 60px;
            letter-spacing: 2px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 0;
            height: 6px;
            background: var(--accent);
            margin: 10px auto 0;
            box-shadow: 0 0 20px var(--accent);
            border-radius: 3px;
            transition: width 1s ease;
        }

        .section-title.active::after {
            width: 100px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 120px;
            padding: 0 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 38, 77, 0.9);
            backdrop-filter: blur(12px);
            z-index: 9999;
            border-bottom: 4px solid var(--accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: 0.3s;
        }

        .brand-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            height: 100%;
        }

        .brand-logo-img {
            height: 95px;
            width: auto;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
            transition: transform 0.3s;
        }

        .brand-wrapper:hover .brand-logo-img {
            transform: scale(1.1) rotate(-3deg);
        }

        .brand-text-col {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-line-1 {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 800;
            color: #e0e0e0;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .brand-line-2 {
            font-family: var(--font-title);
            font-size: 3.5rem;
            line-height: 0.9;
            color: var(--accent);
            text-shadow: 0 0 15px rgba(0, 174, 239, 0.8);
            transform: skewX(-5deg);
        }

        nav ul {
            display: flex;
            gap: 40px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        nav a {
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            position: relative;
            padding-bottom: 5px;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: 0.3s;
            box-shadow: 0 0 10px var(--accent);
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 2.2rem;
            color: #fff;
            cursor: pointer;
        }

        @media (max-width: 1024px) {
            header {
                height: 90px;
                padding: 0 20px;
            }

            .brand-logo-img {
                height: 70px;
            }

            .brand-text-col {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            nav {
                position: fixed;
                top: 90px;
                right: -100%;
                background: var(--bg-darker);
                width: 100%;
                height: 100vh;
                transition: 0.4s ease-in-out;
                flex-direction: column;
                padding-top: 50px;
                text-align: center;
                border-top: 2px solid var(--accent);
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 30px;
            }

            nav a {
                font-size: 1.5rem;
            }
        }

        .hero {
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 38, 77, 0.5), var(--bg-dark)),
                url('copertina.jpg');
            background-image: linear-gradient(to bottom, rgba(0, 38, 77, 0.5), var(--bg-dark)),
                url('https://images.unsplash.com/photo-1546519638-68e109498ffc?q=80&w=1920&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            z-index: 0;
            animation: slowZoom 20s infinite alternate;
        }

        @keyframes slowZoom {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.1);
            }
        }

        .hero-content {
            z-index: 2;
            width: 90%;
            max-width: 1200px;
            animation: fadeInUp 1.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-family: var(--font-title);
            font-size: clamp(3.5rem, 9vw, 7rem);
            line-height: 0.9;
            margin-bottom: 20px;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            margin-bottom: 40px;
            color: #ddd;
            letter-spacing: 3px;
            font-weight: 600;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .cta-btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--accent), #004466);
            color: #ffffff;
            font-family: var(--font-title);
            font-size: 1.8rem;
            padding: 15px 50px;
            border: none;
            clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
            font-weight: 800;
            text-transform: uppercase;
            text-decoration: none;
            box-shadow: 0 0 30px rgba(0, 174, 239, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-btn:hover {
            background: linear-gradient(45deg, #00c3ff, #005580);
            transform: translateY(-5px);
            box-shadow: 0 0 50px rgba(0, 174, 239, 0.8);
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .roster-grid {
            perspective: 1000px;
        }

        .card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.4) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.4s ease;
            text-decoration: none;
            color: #fff;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .news-img {
            height: 220px;
            background-color: #001a33;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .news-img i {
            transition: 0.4s;
        }

        .card:hover .news-img i {
            transform: scale(1.2) rotate(5deg);
            text-shadow: 0 0 20px #fff;
        }

        .news-content {
            padding: 30px;
        }

        .news-date {
            color: var(--accent);
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: block;
        }

        .news-title {
            font-family: var(--font-title);
            font-size: 2rem;
            line-height: 1;
        }

        .team-card {
            border-left: 5px solid var(--accent);
            padding: 40px 25px;
            min-height: 200px;
            height: auto;
            justify-content: center;
        }

        .team-card h3 {
            font-family: var(--font-title);
            font-size: 3rem;
            margin: 0;
            line-height: 0.9;
        }

        .team-card span {
            color: var(--accent);
            font-weight: bold;
            margin-top: 15px;
            display: block;
            letter-spacing: 1px;
        }

        .team-card .category-label {
            white-space: normal;
            word-wrap: break-word;
        }

        .team-card::before {
            content: '\f434';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.03);
            transition: 0.4s;
        }

        .team-card:hover::before {
            transform: rotate(-20deg);
            color: rgba(0, 174, 239, 0.1);
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: flex-start;
        }

        .contact-col {
            flex: 1;
            min-width: 320px;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.3s;
        }

        .info-item:hover {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.05);
        }

        .info-item i {
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(0, 174, 239, 0.1);
            color: var(--accent);
            border-radius: 50%;
            margin-right: 20px;
            flex-shrink: 0 !important;
        }

        .info-item span {
            overflow-wrap: anywhere !important;
            word-break: break-all !important;
        }

        .contact-form {
            background: rgba(0, 20, 40, 0.8);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent);
            font-weight: 700;
            font-size: 0.9rem;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: #fff;
            font-family: var(--font-body);
            outline: none;
            transition: 0.3s;
        }

        .form-input:focus {
            border-color: var(--accent);
            background: rgba(0, 174, 239, 0.05);
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--accent);
            color: var(--bg-dark);
            border: none;
            font-weight: 800;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s;
            border-radius: 50px;
            font-family: var(--font-title);
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: #fff;
            transform: translateY(-3px);
        }

        footer {
            background: #000a14;
            padding: 60px 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .social-links a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            margin: 0 10px;
            font-size: 1.2rem;
            transition: 0.3s;
            text-decoration: none !important;
            border: none !important;
        }

        .social-links a:hover {
            background: var(--accent);
            color: var(--bg-dark);
            transform: translateY(-5px);
        }

        .copyright {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 20px;
        }

        .modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 12000;
            background: rgba(0, 10, 20, 0.95);
            backdrop-filter: blur(5px);
            padding: 20px;
            overflow-y: auto;
            animation: modalFadeIn 0.3s ease forwards;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: var(--bg-dark);
            max-width: 700px;
            margin: 5% auto;
            border: 1px solid var(--accent);
            border-radius: 8px;
            box-shadow: 0 0 50px rgba(0, 174, 239, 0.2);
            animation: modalSlide 0.4s ease forwards;
            transform: translateY(-50px);
            opacity: 0;
        }

        @keyframes modalSlide {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            background: linear-gradient(90deg, var(--bg-darker) 0%, var(--accent) 100%);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            color: #fff;
            margin: 0;
            font-size: 2rem;
        }

        .close-btn {
            color: #fff;
            font-size: 2.5rem;
            cursor: pointer;
            line-height: 0.5;
        }

        .player-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.2s;
        }

        .player-row:hover {
            background: rgba(0, 174, 239, 0.1);
            border-left: 3px solid var(--accent);
        }

        .player-name {
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
            }

            .wide {
                width: 45%;
                height: 80px;
            }

            .square {
                width: 45%;
                height: 100px;
            }

            .modal-content {
                margin: 20% auto;
                width: 95%;
            }
        }

        .teams-section, #locations, #contacts, .sponsor-strip {
            background-color: rgba(0, 26, 51, 0.4);
            backdrop-filter: blur(5px);
        }

        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none !important;
            border-bottom: none !important;
        }

        body {
            cursor: none;
        }

        .cursor-ball {
            position: fixed;
            top: 0;
            left: 0;
            font-size: 28px;
            z-index: 99999;
            pointer-events: none;
            transform: translate(-50%, -50%);
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
            animation: spinBall 4s linear infinite;
            transition: font-size 0.2s ease, filter 0.2s ease;
        }

        @keyframes spinBall {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        body.hovering .cursor-ball {
            font-size: 36px;
            filter: drop-shadow(0 0 15px var(--accent));
        }

        @media (max-width: 900px) {
            .cursor-ball {
                display: none !important;
            }

            body {
                cursor: auto !important;
            }
        }

        body {
            transition: background-color 0.5s ease;
        }

        body.matchday-active {
            --accent: #FF5E00;
            --bg-darker: #2a0a03;
            --bg-dark: #120300;
        }

        body.matchday-active #backToTop {
            background: linear-gradient(45deg, #FF5E00, #cc4b00);
            box-shadow: 0 4px 15px rgba(255, 94, 0, 0.2);
        }

        body.matchday-active #backToTop:hover {
            background: linear-gradient(45deg, #ffffff, #FF5E00);
            box-shadow: 0 0 25px rgba(255, 94, 0, 0.5);
            border-color: rgba(255, 94, 0, 0.6);
        }

        .matchday-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--accent);
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
            animation: pulseGlow 2s infinite alternate;
            transition: all 0.3s ease;
        }

        .matchday-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(255, 94, 0, 0.5);
        }

        @keyframes pulseGlow {
            from {
                box-shadow: 0 0 10px rgba(255, 94, 0, 0.1);
            }

            to {
                box-shadow: 0 0 20px rgba(255, 94, 0, 0.4);
            }
        }

        @keyframes shakeAdrenaline {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            10% {
                transform: translate(-2px, -2px) rotate(-1deg);
            }

            20% {
                transform: translate(2px, 0px) rotate(1deg);
            }

            30% {
                transform: translate(-2px, 2px) rotate(0deg);
            }

            40% {
                transform: translate(2px, -2px) rotate(1deg);
            }

            50% {
                transform: translate(-2px, 2px) rotate(-1deg);
            }

            60% {
                transform: translate(2px, 1px) rotate(0deg);
            }

            70% {
                transform: translate(-2px, 1px) rotate(-1deg);
            }

            80% {
                transform: translate(2px, -1px) rotate(1deg);
            }

            90% {
                transform: translate(-2px, 2px) rotate(0deg);
            }
        }

        .shake {
            animation: shakeAdrenaline 0.4s cubic-bezier(.36, .07, .19, .97) both;
        }

        .spark {
            position: fixed;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: radial-gradient(circle, #FFD700 0%, #FF5E00 80%, transparent 100%);
            pointer-events: none;
            z-index: 99998;
            transform: translate(calc(-50% + var(--offsetX, 0px)), calc(-50% + var(--offsetY, 0px))) scale(1);
            animation: sparkFade 0.4s ease-out forwards;
            filter: blur(1px);
        }

        @keyframes sparkFade {
            0% {
                transform: translate(calc(-50% + var(--offsetX, 0px)), calc(-50% + var(--offsetY, 0px))) scale(1.5);
                opacity: 1;
            }

            100% {
                transform: translate(calc(-50% + var(--offsetX, 0px)), calc(-50% + var(--offsetY, 0px) - 40px)) scale(0.1);
                opacity: 0;
            }
        }

        html.lenis,
        html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        .lenis.lenis-smooth iframe {
            pointer-events: none;
        }

        .hero h1,
        .news-card,
        .team-card,
        .logo-box {
            visibility: hidden;
        }

        .marquee-container {
            width: 100%;
            background-color: var(--bg-darker);
            overflow: hidden;
            display: flex;
            align-items: center;
            opacity: 1 !important;
            visibility: visible !important;
            transform: rotate(-2deg) scale(1.05);
            padding: 30px 0;
            margin: 40px 0;
            border-top: 2px solid var(--accent);
            border-bottom: 2px solid var(--accent);
            position: relative;
            z-index: 10;
        }

        .marquee-content {
            display: flex;
            white-space: nowrap;
            animation: none !important;
        }

        .marquee-content span {
            display: inline-block;
        }

        .marquee-text {
            font-family: var(--font-title);
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1;
            padding: 0 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .marquee-content span:nth-child(odd) .marquee-text {
            color: #ffffff;
        }

        .marquee-content span:nth-child(even) .marquee-text {
            color: transparent;
            -webkit-text-stroke: 2px var(--accent);
        }

        @keyframes scrollMarquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--bg-darker);
            z-index: 999999;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .locker-room-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .preloader-logo {
            width: 150px;
            height: auto;
            animation: heartbeat 1.5s infinite ease-in-out;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.4));
        }

        @keyframes heartbeat {

            0%,
            100% {
                transform: scale(1);
                filter: drop-shadow(0 0 10px var(--accent));
            }

            50% {
                transform: scale(1.1);
                filter: drop-shadow(0 0 30px var(--accent));
            }
        }

        #loading-text {
            font-family: var(--font-title);
            color: var(--text-white);
            font-size: 2rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .loading-bar-container {
            width: 300px;
            height: 6px;
            background-color: #000a14;
            border-radius: 3px;
            overflow: hidden;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.8);
        }

        .loading-bar-fill {
            width: 0%;
            height: 100%;
            background-color: var(--accent);
            box-shadow: 0 0 15px var(--accent);
        }

        .preloader-counter {
            font-family: var(--font-title);
            font-size: 2.5rem;
            color: var(--accent);
            margin-top: 5px;
            font-weight: 800;
        }

        #backToTop {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent), #004466);
            color: #ffffff;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 255, 255, 0.15);
            box-shadow: 0 4px 15px rgba(0, 255, 255, 0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9998;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.9);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        #backToTop svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        #backToTop:hover {
            background: linear-gradient(45deg, #00c3ff, #005580);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
            transform: translateY(0) scale(1.05);
            border-color: rgba(0, 255, 255, 0.4);
        }

        #backToTop:hover svg {
            transform: translateY(-2px);
        }

        #backToTop.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        @media (max-width: 768px) {

            html,
            body {
                max-width: 100vw;
                overflow-x: hidden !important;
            }

            .contact-col,
            .contact-form {
                width: 100%;
                box-sizing: border-box;
            }

            .contact-form {
                padding: 20px;
            }

            .team-card {
                padding: 30px 20px;
            }

            .team-card .category-label {
                white-space: normal !important;
                word-wrap: break-word !important;
                font-size: 0.8rem;
            }

            .marquee-container {
                width: 100vw;
                margin-left: 0;
            }
        }
