/* 
  Club App Landing Page - Style 
*/

:root {
    /* Colors */
    --clr-blue: #0A00FF;
    /* The vibrant main blue */
    --clr-dark-blue: #050080;
    /* Darker tone for footer/accents */
    --clr-yellow: #E5FF00;
    /* The vibrant neon accent yellow */
    --clr-white: #FFFFFF;
    --clr-light: #F4F6F9;
    /* Light background for sections */
    --clr-text: #333333;
    --clr-gray: #666666;
    --clr-border: #EAEAEA;

    /* Shadows & Glass */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--clr-white);
}

.text-blue {
    color: var(--clr-blue);
}

.text-yellow {
    color: var(--clr-yellow);
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.w-100 {
    width: 100%;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.max-w-md {
    max-width: 800px;
}

/* Backgrounds */
.bg-blue {
    background-color: var(--clr-blue);
}

.bg-light {
    background-color: var(--clr-light);
}

.bg-dark-blue {
    background-color: var(--clr-dark-blue);
}

.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-primary-outline,
.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--clr-yellow);
    color: var(--clr-blue);
    border: 2px solid var(--clr-yellow);
    box-shadow: 0 4px 15px rgba(229, 255, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 255, 0, 0.6);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--clr-blue);
    border: 2px solid var(--clr-blue);
}

.btn-primary-outline:hover {
    background-color: var(--clr-blue);
    color: var(--clr-white);
}

/* Used inside pricing */
.pricing-card.premium .btn-primary-outline {
    background-color: var(--clr-yellow);
    border-color: var(--clr-yellow);
    color: var(--clr-blue);
}

.pricing-card.premium .btn-primary-outline:hover {
    background-color: transparent;
}


/* Layout Components */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 0, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--clr-yellow);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links li a:hover {
    color: var(--clr-yellow);
}

.nav-links li a.btn-outline {
    border: 1px solid var(--clr-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-links li a.btn-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-blue);
}

.mobile-menu-btn {
    display: none;
    color: var(--clr-white);
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Hero Section */
.hero {
    background-color: var(--clr-blue);
    color: var(--clr-white);
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.hero-title span {
    color: var(--clr-yellow);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.link-secondary {
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.link-secondary:hover {
    color: var(--clr-yellow);
}

.hero-availability {
    font-size: 1rem;
    font-weight: 500;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    line-height: 1.4;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hero-availability i {
    font-size: 1.5rem;
    color: var(--clr-white);
}

.hero-availability .text-sm {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
}

.shape-circle {
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: rotate 60s linear infinite;
}

.shape-dots {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    top: 30%;
    left: 10%;
}

.shape-star {
    color: var(--clr-yellow);
    font-size: 2rem;
    animation: float 4s ease-in-out infinite alternate;
}

.star-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.star-2 {
    top: 40%;
    right: 20%;
    font-size: 3rem;
    animation-delay: 1s;
}

.star-3 {
    bottom: 20%;
    left: 25%;
    font-size: 1.5rem;
    animation-delay: 2s;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background-color: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    border: 3px solid #333;
    box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    position: relative;
    transform: translateY(20px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--clr-blue);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-header {
    padding: 30px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.phone-hero {
    padding: 20px;
    text-align: center;
}

.phone-hero h2 {
    font-size: 1.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 10px;
}

.phone-hero h2 span {
    color: var(--clr-yellow);
}

.phone-hero p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.btn-primary-small {
    background-color: var(--clr-yellow);
    color: var(--clr-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
}

.phone-content {
    background-color: var(--clr-light);
    flex-grow: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-card {
    background-color: white;
    border-radius: 10px;
    height: auto;
    min-height: 80px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
    border-left: 4px solid var(--clr-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card-time {
    font-size: 0.75rem;
    color: var(--clr-text);
    text-align: center;
    line-height: 1.2;
    min-width: 50px;
}

.card-time strong {
    font-size: 0.85rem;
}

.card-time span {
    color: var(--clr-gray);
    font-size: 0.65rem;
}

.card-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--clr-border);
    padding-left: 10px;
}

.card-details h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--clr-text);
}

.card-details p {
    font-size: 0.7rem;
    color: var(--clr-text);
    margin-bottom: 1px;
}

.card-details p span {
    font-weight: 600;
}

.card-details p span.coach {
    font-weight: 400;
    color: var(--clr-gray);
}

.card-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.agendar-btn {
    background: none;
    border: none;
    color: var(--clr-blue);
    font-size: 0.6rem;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    transition: transform 0.2s ease;
}

.agendar-btn i {
    font-size: 1.2rem;
}

.agendar-btn:hover {
    transform: scale(1.1);
    color: var(--clr-dark-blue);
}

/* Feature Cards */
.section-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--clr-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--clr-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 0, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(10, 0, 255, 0.05);
    color: var(--clr-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--clr-blue);
    color: var(--clr-yellow);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--clr-gray);
    font-size: 0.95rem;
}

/* Works Grid (Cómo funciona) */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
}

.work-step {
    background-color: var(--clr-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.work-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-blue);
}

.step-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--clr-blue);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 2;
}

.step-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background-color: rgba(10, 0, 255, 0.2);
    z-index: 1;
}

@media screen and (max-width: 900px) {
    .step-line {
        display: none;
    }
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--clr-blue);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.work-step:hover .step-icon {
    transform: scale(1.1);
    color: var(--clr-yellow);
}

.step-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--clr-blue);
}

.step-content p {
    color: var(--clr-gray);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.pricing-card {
    background-color: var(--clr-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.pricing-card.highlighted {
    border: 2px solid var(--clr-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card.premium {
    background-color: var(--clr-blue);
    color: var(--clr-white);
    border: none;
}

.pricing-card.premium .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.premium .pricing-features li i {
    color: var(--clr-yellow);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--clr-gray);
}

.pricing-card.premium .pricing-header h3 {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.highlighted .pricing-header h3 {
    color: var(--clr-blue);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    font-weight: 500;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--clr-blue);
    color: var(--clr-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.pricing-features li i {
    color: var(--clr-blue);
    font-size: 1.1rem;
}

/* Studios Marquee */
.scrolling-text-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scrolling-text {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 300;
    animation: scrollText 30s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 3rem;
}

.studio-logo {
    height: 100px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.studio-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Accordion FAQ */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: var(--clr-light);
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: var(--clr-text);
}

.accordion-header i {
    font-size: 1.2rem;
    color: var(--clr-blue);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-item.active {
    border-color: var(--clr-blue);
}

.accordion-item.active .accordion-header {
    background-color: var(--clr-blue);
    color: var(--clr-white);
}

.accordion-item.active .accordion-header i {
    color: var(--clr-yellow);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 1.5rem 2rem;
    color: var(--clr-gray);
}

/* Legales Banner */
.legales-banner {
    padding: 3rem 0;
}

.text-underline {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-yellow);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--clr-white);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background-color: var(--clr-yellow);
    color: var(--clr-blue);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* Animations Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    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;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media screen and (max-width: 992px) {
    .pricing-card.highlighted {
        transform: scale(1);
    }

    .pricing-card.highlighted:hover {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background-color: var(--clr-blue);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section {
        padding: 4rem 0;
    }
}

/* ===== Accessibility ===== */

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--clr-yellow);
    color: var(--clr-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Phone Mockup Title (replaces h2 for proper heading hierarchy) */
.phone-hero-title {
    font-size: 1.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 800;
}

.phone-hero-title span {
    color: var(--clr-yellow);
}

/* Focus Visible Styles for Keyboard Navigation */
*:focus-visible {
    outline: 3px solid var(--clr-yellow);
    outline-offset: 3px;
}

.btn-primary:focus-visible,
.btn-primary-outline:focus-visible,
.btn-outline:focus-visible {
    outline: 3px solid var(--clr-yellow);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(229, 255, 0, 0.3);
}

.nav-links li a:focus-visible {
    outline: 2px solid var(--clr-yellow);
    outline-offset: 4px;
    border-radius: 4px;
}

.accordion-header:focus-visible {
    outline: 3px solid var(--clr-yellow);
    outline-offset: -3px;
}

.footer-social a:focus-visible {
    outline: 3px solid var(--clr-yellow);
    outline-offset: 3px;
}

/* Legal link underline enhancement for contrast */
.text-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.text-underline:hover,
.text-underline:focus-visible {
    text-decoration-thickness: 3px;
}

/* Spacing utility */
.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scrolling-text {
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}