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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    min-height: 100vh;
    background-color: #0e1729;
    background-image: url("../images/bg-home-goal.jpg");
    background-size: cover;
    background-position: center 62%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Darkened + softly blurred veil over the hero photo so text stays readable */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(14, 23, 41, 0.55), rgba(14, 23, 41, 0.94));
    backdrop-filter: blur(0.8px);
    -webkit-backdrop-filter: blur(0.8px);
    pointer-events: none;
}

.hero,
.steps,
.about,
.mind-quotes,
.reward-preview,
.video-section,
footer {
    position: relative;
    z-index: 1;
}

/* Hero */
.hero {
    position: relative;
    color: #fff;
    padding: 80px 20px 110px;
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    top: -170px;
    padding: 46px 56px 42px;
    text-align: center;
    background: rgba(12, 16, 22, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero-kicker {
    margin-bottom: 14px !important;
    color: #9bc7ff;
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    font-size: 0.8rem !important;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.2 !important;
}

.hero h1 span {
    color: #9bc7ff;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-divider {
    width: 64px;
    height: 4px;
    margin: 0 auto 22px;
    background: #9bc7ff;
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(155, 199, 255, 0.6);
}

.hero p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.55;
    opacity: 0.98;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-note {
    margin-top: 14px;
    font-size: 0.95rem;
    opacity: 0.85;
}

.hero-btn {
    display: inline-block;
    margin-top: 24px;
    background-color: #fff;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s, box-shadow 0.15s;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

/* Krish, our mascot, stands just left of the "See How It Works" button and
   points at it. The source art has a dark radial backdrop, so a screen blend
   drops the black against the dark hero and leaves only his glowing figure. */
.krish-wrap {
    position: relative;
    display: inline-flex;
}

.krish {
    position: absolute;
    right: calc(100% + 240px);
    bottom: -230px;
    height: 240px;
    width: auto;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
    animation: krish-bob 3.4s ease-in-out infinite;
}

@keyframes krish-bob {
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 720px) {
    .krish {
        display: none;
    }
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 52px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    z-index: 2;
    transition: opacity 0.25s ease;
}

.scroll-cue-label {
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    opacity: 0.95;
}

.scroll-cue-arrow {
    width: 22px;
    height: 22px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    animation: scrollCueBounce 1.6s ease-in-out infinite;
}

.scroll-cue:hover .scroll-cue-label {
    opacity: 1;
}

.scroll-cue.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes scrollCueBounce {
    0%, 100% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0.75;
    }
    50% {
        transform: rotate(45deg) translate(4px, 4px);
        opacity: 1;
    }
}

/* Section titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    margin-bottom: 32px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* How it works */
.steps {
    max-width: 1120px;
    margin: 100px auto;
    padding: 0 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}

.step-card {
    background: rgba(12, 16, 22, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 20px;
    padding: 0 0 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: hidden;
    position: relative;
    transform: translateY(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.26);
}

.step-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #2b6cb0;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-top: -18px;
    position: relative;
    z-index: 1;
    border: 3px solid #fff;
}

.step-card h3 {
    font-size: 1.05rem;
    color: #9bc7ff;
    margin: 12px 16px 8px;
}

.step-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    padding: 0 16px;
}

/* About cards with images */
.about {
    max-width: 860px;
    margin: 0 auto 70px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.card-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #1a2f4a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(0.92);
}

.about-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 20px 24px 10px;
    color: #2b6cb0;
}

.about-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
    padding: 0 24px 24px;
}

/* Mind training quote cards — confidence / pressure / control */
.mind-quotes {
    max-width: 1120px;
    margin: 0 auto 96px;
    padding: 0 20px;
}

.mind-quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* One continuous card: a pull-quote with the speaker underneath. There is no
   photo slot — the quote is the content, so it gets the space and the scale. */
.mind-quote-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 28px 26px;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(18, 30, 48, 0.82), rgba(10, 18, 30, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow: hidden;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Accent rail down the left edge carries the power colour. */
.mind-quote-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--power-accent, #63b3ed);
}

.mind-quote-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.44);
}

.mind-quote-confidence { --power-accent: #f6c344; }
.mind-quote-pressure   { --power-accent: #e26a6a; }
.mind-quote-control    { --power-accent: #5ec8b4; }

.power-tag {
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 5px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--power-accent) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--power-accent) 45%, transparent);
    color: var(--power-accent);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mind-quote-text {
    flex: 1 1 auto;
    margin: 0 0 22px;
    font-size: 1.16rem;
    line-height: 1.5;
    font-weight: 500;
    font-style: normal;
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: -0.005em;
    text-wrap: pretty;
}

.mind-quote-attrib {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mind-quote-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.mind-quote-sport {
    margin: 0;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
    .mind-quotes-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Video section */
.video-section {
    max-width: 1120px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.video-card {
    background-color: rgba(12, 16, 22, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 22px;
    padding: 38px 30px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-align: center;
}

.video-card h2 {
    color: #9bc7ff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.video-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 22px;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 12px;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    text-align: center;
    padding: 28px 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

@media (max-width: 800px) {
    .hero {
        min-height: calc(100vh - var(--site-nav-space));
        padding: 50px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        top: -90px;
        padding: 34px 22px 32px;
        border-radius: 22px;
    }

    .hero p:not(.hero-kicker) {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: min(100%, 250px);
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }
}

/* Kid-friendly quest experience */
.journey-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    height: 5px;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.journey-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #63b3ed, #81e6d9, #f6e05e);
    box-shadow: 0 0 14px rgba(129, 230, 217, 0.75);
    transition: width 0.12s linear;
}

.hero-actions > .hero-btn:not(.hero-btn-secondary),
.preview-quest-btn {
    color: #102a43;
    background: linear-gradient(135deg, #f6e05e, #fbd38d);
    border: 2px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 24px rgba(246, 224, 94, 0.3);
}

.hero-actions > .hero-btn:not(.hero-btn-secondary):hover,
.preview-quest-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 13px 30px rgba(246, 224, 94, 0.42);
}

.section-kicker {
    margin: 0 0 8px;
    color: #81e6d9;
    font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.krish-guide {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    max-width: 580px;
    margin: 0 auto 28px;
}

.krish-guide-right {
    flex-direction: row-reverse;
}

.krish-guide img {
    flex: 0 0 auto;
    width: 150px;
    height: 190px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: normal;
    filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.34));
}

.krish-guide p {
    position: relative;
    margin: 0;
    padding: 13px 17px;
    color: #17324d;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid #81e6d9;
    border-radius: 18px 18px 18px 5px;
    box-shadow: 0 9px 24px rgba(3, 18, 35, 0.22);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

.krish-guide-right p {
    border-radius: 18px 18px 5px 18px;
}

.krish-guide strong {
    color: #246bce;
}

.steps,
.mind-quotes,
.reward-preview,
.video-section {
    scroll-margin-top: 86px;
}

.steps {
    max-width: 1180px;
}

.quest-path {
    position: relative;
    gap: 34px;
}

.quest-path::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 13%;
    right: 13%;
    top: 52%;
    height: 7px;
    background: repeating-linear-gradient(90deg, #81e6d9 0 18px, transparent 18px 30px);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.quest-card {
    padding-bottom: 20px;
    background: linear-gradient(165deg, rgba(21, 55, 86, 0.94), rgba(12, 26, 45, 0.96));
    border: 2px solid rgba(129, 230, 217, 0.5);
}

.quest-card:nth-child(2) {
    border-color: rgba(246, 224, 94, 0.58);
}

.quest-card:nth-child(3) {
    border-color: rgba(183, 148, 244, 0.58);
}

.quest-card::after {
    content: "✦";
    position: absolute;
    top: 12px;
    right: 14px;
    color: #f6e05e;
    font-size: 1.35rem;
    text-shadow: 0 0 12px rgba(246, 224, 94, 0.8);
}

.quest-card img {
    filter: saturate(1.08);
}

.quest-level {
    display: block;
    margin: 10px 16px 0;
    color: #81e6d9;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.quest-card h3 {
    margin-top: 5px;
    font-size: 1.12rem;
}

.quest-reward {
    display: inline-block;
    margin: 15px 14px 0;
    padding: 7px 10px;
    color: #17324d;
    background: #e6fffa;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
}

.mind-quotes {
    max-width: 1180px;
}

.reward-preview {
    max-width: 1180px;
    margin: 0 auto 96px;
    padding: 0 20px;
    text-align: center;
}

.reward-preview .section-title,
.reward-preview .section-subtitle {
    color: #fff;
    opacity: 1;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
}

.reward-preview .section-subtitle {
    font-weight: 700;
}

.reward-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.preview-card {
    position: relative;
    overflow: hidden;
    padding: 24px 18px 20px;
    color: #17324d;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid #bee3f8;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(3, 18, 35, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.preview-card:hover {
    transform: translateY(-7px) rotate(-1deg);
    box-shadow: 0 20px 38px rgba(3, 18, 35, 0.32);
}

.preview-card:nth-child(even):hover {
    transform: translateY(-7px) rotate(1deg);
}

.preview-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    background: #ebf8ff;
    border-radius: 18px;
    font-size: 1.8rem;
}

.preview-card h3 {
    margin-bottom: 7px;
    color: #246bce;
    font-size: 1.05rem;
}

.preview-card p {
    min-height: 48px;
    color: #486581;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
}

.preview-meter {
    height: 10px;
    margin-top: 16px;
    overflow: hidden;
    background: #d9e2ec;
    border-radius: 999px;
}

.preview-meter span {
    display: block;
    width: var(--preview-progress, 72%);
    height: 100%;
    background: linear-gradient(90deg, #3182ce, #63b3ed);
    border-radius: inherit;
}

.preview-star-row {
    margin-top: 13px;
    color: #d69e2e;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}

.preview-badge-row {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
}

.preview-badge-row span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    background: #edf2f7;
    border-radius: 50%;
}

.preview-locked {
    display: inline-block;
    margin-top: 13px;
    padding: 6px 9px;
    color: #6b46c1;
    background: #faf5ff;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
}

.preview-quest-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.reward-preview .preview-quest-btn {
    color: #fff;
    background: linear-gradient(135deg, #246bce, #6b46c1);
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(36, 107, 206, 0.38);
}

.reward-preview .preview-quest-btn:hover {
    box-shadow: 0 14px 32px rgba(107, 70, 193, 0.48);
}

.video-card {
    overflow: hidden;
    position: relative;
    padding: 34px;
    border: 2px solid rgba(246, 224, 94, 0.5);
    background: linear-gradient(155deg, rgba(16, 45, 74, 0.94), rgba(22, 76, 91, 0.92));
}

.coach-challenge-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.challenge-badge,
.challenge-time {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.challenge-badge {
    color: #102a43;
    background: #f6e05e;
}

.challenge-time {
    color: #e6fffa;
    border: 1px solid rgba(129, 230, 217, 0.5);
}

.challenge-question {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto 22px;
    padding: 13px 16px;
    color: #17324d;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    text-align: left;
}

.challenge-question > span {
    font-size: 1.55rem;
}

.challenge-question p {
    margin: 0;
    color: #334e68;
    font-size: 0.84rem;
}

.challenge-finish {
    margin: 16px auto 0 !important;
    color: #e6fffa !important;
    font-weight: 900;
}

.quest-motion-ready .reveal-card {
    opacity: 0;
    transform: translateY(24px);
}

.quest-motion-ready .reveal-card.is-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1000px) {
    .reward-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .quest-path::before {
        left: 50%;
        right: auto;
        top: 4%;
        bottom: 4%;
        width: 7px;
        height: auto;
        background: repeating-linear-gradient(180deg, #81e6d9 0 18px, transparent 18px 30px);
    }

    .krish-guide,
    .krish-guide-right {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .krish-guide img {
        width: 104px;
        height: 132px;
    }

    .krish-guide p {
        font-size: 0.8rem;
    }

    .reward-preview-grid {
        grid-template-columns: 1fr;
    }

    .preview-card p {
        min-height: 0;
    }

    .coach-challenge-heading {
        flex-wrap: wrap;
    }

    .video-card {
        padding: 24px 16px;
    }

    .challenge-question {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .krish,
    .scroll-cue-arrow {
        animation: none;
    }

    .quest-motion-ready .reveal-card {
        opacity: 1;
        transform: none;
    }

    * {
        scroll-behavior: auto !important;
    }
}
