@view-transition {
    navigation: auto;
}


.border-gradient-orange {
  box-shadow: oklch(68.35% 0.20995669684604354 37.96410753323675) 0px 0px 12px 3px;
  background-image:
    linear-gradient(
      oklch(68.35% 0.20995669684604354 37.96410753323675),
      oklch(68.35% 0.20995669684604354 37.96410753323675)
    ),
    conic-gradient(
    from var(--angle, 0deg),
      oklch(68.35% 0.20995669684604354 37.96410753323675) 0deg,
      #FFC287 30deg,
      oklch(68.35% 0.20995669684604354 37.96410753323675) 30deg
    );
  background-clip: padding-box, border-box;
  background-position: center center;
  background-size: 170px 500px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  border: 3px solid transparent;
}
.border-gradient-blue {
    box-shadow: oklch(62.78% 0.1883 260.47) 0px 0px 12px 3px;
    background-image:
    linear-gradient(
        oklch(62.78% 0.1883 260.47),
        oklch(62.78% 0.1883 260.47)
    ),
    conic-gradient(
        from var(--angle),
        oklch(62.78% 0.1883 260.47) 0deg,
        #87CEEB 30deg,
        oklch(62.78% 0.1883 260.47) 30deg
    );
    background-clip: padding-box, border-box;
    background-position: center center;
    background-size: 170px 500px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    border: 3px solid transparent;
}

.border-gradient-orange .border-gradient-blue {
    box-shadow: none;
}

.tapped {
    animation: tapped 0.2s ease;
}
@keyframes tapped {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.6);
    }
    100% {
        transform: scale(1);
    }
}

.slideUp {
    animation: slideUp 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}
.slideUp .text {
    width: 0;
    font-size: 0;
    height: 0;
    padding: 0;
    opacity: 0;
    line-height: 1;
    animation: grow 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.65s forwards;
}
.slideUp .svg {
    animation: rotate 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}
.slideUp:hover .svg {
    animation: rotateHover .8s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}
@keyframes slideUp {
    0% {
        transform: translateY(300%) scale(0);
    }

    60% {
        transform: translateY(-10%) scale(1.2);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(360deg);
    }
    70% {
        transform: rotate(360deg);
    }
    78% {
        transform: rotate(365deg);
    }
    88% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotateHover {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes grow {
    0% {
        width: 0;
        font-size: 0;
        opacity: 0;
        padding: 0;
        height: 0;
    }

    30% {
        padding: 0 0.8rem;
        width: auto;
        font-size: 1rem;
        opacity: 0;
        height: 1rem;
    }

    100% {
        width: auto;
        padding: 0 0.5rem;
        font-size: 1rem;
        opacity: 1;
        height: 1rem;
    }
}


.slideInFromTop1 {
    animation: slideInFromTop1 .5s ease-in-out forwards;
}

@keyframes slideInFromTop1 {
    0% {
        transform: translateY(-300%) rotate(0deg);
        opacity: 0;
    }
    80% {
        transform: translateY(0) rotate(-2deg);
        opacity: 1;
    }
    90% {
        transform: translateY(20px) rotate(1deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(-2deg);
        opacity: 1;
    }
}

.fallAndBounce1 {
    animation: bounceInDown1 .6s forwards;
}
@keyframes bounceInDown1 {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -300%, 0) rotate(0deg) scale(1.3);
    }

    10% {
        opacity: 0.0;
    }

    60% {
        transform: translate3d(0, 15px, 0) scale(1.0);
    }

    75% {
        opacity: 1;
        transform: translate3d(0, -10px, 0)  rotate(-5deg);;
    }

    90% {
        transform: translate3d(0, 5px, 0);
    }

    to {
        opacity: 1;
        transform: rotate(2deg)
    }
}
.fallAndBounce2 {
    animation: bounceInDown2 .6s forwards;
}
@keyframes bounceInDown2 {
    from, 60%, 75%, 90%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -300%, 0) rotate(0deg) scale(1.2);
    }

    10% {
        opacity: 0.0;
    }

    60% {
        transform: translate3d(0, 15px, 0) scale(1.0);
    }

    75% {
        opacity: 1;
        transform: translate3d(0, -10px, 0) rotate(5deg);
    }

    90% {
        transform: translate3d(0, 5px, 0);
    }

    to {
        opacity: 1;
        transform: rotate(-2deg)
    }
}
.arc1 {
    animation: arc1 1s ease-in-out forwards;
}
@keyframes arc1 {
    0% {
        opacity: 0;
        transform: rotate(-8deg) scale(0) translateY(13px);
    }

    40% {
        opacity: 1;
        transform: rotate(-8deg) scale(1.1) translateY(13px);
    }

    80% {
        opacity: 1;
        transform: rotate(-8deg) scale(0.97) translateY(13px);
    }

    to {
        opacity: 1;
        transform: rotate(-8deg) scale(1) translateY(13px);
    }
}
.arc2 {
    animation: arc2 1s ease-in-out .1s forwards;
}
@keyframes arc2 {
    0% {
        opacity: 0;
        transform: rotate(-4deg) scale(0)  translateY(-15px)
    }

    40% {
        opacity: 1;
        transform: rotate(-4deg) scale(1.1)  translateY(-15px)
    }

    80% {
        opacity: 1;
        transform: rotate(-4deg) scale(0.97)  translateY(-15px)
    }

    to {
        opacity: 1;
        transform: rotate(-4deg) scale(1) translateY(-15px);
    }
}
.arc3 {
    animation: arc3 1s ease-in-out .2s forwards;
}
@keyframes arc3 {
    0% {
        opacity: 0;
        transform: scale(0)  translateY(-25px)
    }

    40% {
        opacity: 1;
        transform: scale(1.1)  translateY(-25px)
    }

    80% {
        opacity: 1;
        transform: scale(0.97)  translateY(-25px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(-25px);
    }
}
.arc4 {
    animation: arc4 1s ease-in-out .3s forwards;
}
@keyframes arc4 {
    0% {
        opacity: 0;
        transform: scale(0)  translateY(-25px)
    }

    40% {
        opacity: 1;
        transform: scale(1.1)  translateY(-25px)
    }

    80% {
        opacity: 1;
        transform: scale(0.97)  translateY(-25px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(-25px);
    }
}
.arc5 {
    animation: arc5 1s ease-in-out .4s forwards;
}
@keyframes arc5 {
    0% {
        opacity: 0;
        transform: rotate(4deg) scale(0)  translateY(-15px)
    }

    40% {
        opacity: 1;
        transform: rotate(4deg) scale(1.1)  translateY(-15px)
    }

    80% {
        opacity: 1;
        transform: rotate(4deg) scale(0.97)  translateY(-15px)
    }

    to {
        opacity: 1;
        transform: rotate(4deg) scale(1) translateY(-15px);
    }
}
.arc6 {
    animation: arc6 1s ease-in-out .5s forwards;
}
@keyframes arc6 {
    0% {
        opacity: 0;
        transform: rotate(8deg) scale(0) translateY(13px)
    }

    40% {
        opacity: 1;
        transform: rotate(8deg) scale(1.1) translateY(13px)
    }

    80% {
        opacity: 1;
        transform: rotate(8deg) scale(0.97) translateY(13px)
    }

    to {
        opacity: 1;
        transform: rotate(8deg) scale(1) translateY(13px)
    }
}
.fadeIn {
    animation: fadeIn cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
    animation-duration: .6s;
    opacity: 0;
    animation-fill-mode:forwards
}
@keyframes fadeIn {
    0% {
        opacity:0;
    }

    100% {
        opacity:1;
    }
}
.fadeInSlow {
    animation: fadeIn cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
    animation-duration: 1s;
    opacity: 0;
    animation-fill-mode:forwards
}
.fadeInSlower {
    animation: fadeIn cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
    animation-duration: 1.5s;
    opacity: 0;
    animation-fill-mode:forwards
}
@keyframes fadeIn {
    0% {
        opacity:0;
    }

    100% {
        opacity:1;
    }
}
.number-rotate {
    display: inline-block;
    font-style: normal;
    transform: skew(-12deg);
    padding: 0 0.3rem;
    transition: color 0.3s;
}

@keyframes highlight {
    0% {
        background-size: 0% 100%;
        transform: skew(-10deg);
    }
    to {
        background-size: 100% 100%;
        transform: skew(-10deg);
    }
}

.story .highlight {
    display: inline-block;
    background-image: linear-gradient(transparent 0%, rgb(255, 184, 162) 0%);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 0% 100%;
    border-radius: 4px;
    animation: highlight 1.2s ease-in-out forwards;
}

.dark .story .highlight {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(transparent 0%, rgb(154, 60, 29) 0%);
}


.slideInFromTop {
    transform: translateY(-300%);
    animation: slideInFromTop 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}
@keyframes slideInFromTop {
    0% {
        transform: translateY(-300%);
    }
    100% {
        transform: translateY(0);
    }
}


.slideInFromBottom {
    transform: translateY(500%);
    animation: slideInFromBottom 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
}
@keyframes slideInFromBottom {
    0% {
        transform: translateY(500%);
    }
    100% {
        transform: translateX(0);
    }
}


@keyframes slideFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Target specific h1 elements */
.slideRows div:nth-of-type(1),
.slideRows div:nth-of-type(3) {
  animation: slideFromLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* Set initial state */
  opacity: 0;
  transform: translateX(-100%);
}

.slideRows div:nth-of-type(2) {
  animation: slideFromRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* Set initial state */
  opacity: 0;
  transform: translateX(100%);
}

/* Add different delays for each element */
.slideRows div:nth-of-type(1) {
  animation-delay: 0s;
}

.slideRows div:nth-of-type(2) {
  animation-delay: 0.2s;
}

.slideRows div:nth-of-type(3) {
  animation-delay: 0.4s;
}

/* Optional: Add animation play state control on hover */
.slideRows div:hover {
  animation-play-state: paused;
}
  /*
   * This animation slides the track from left: 0% to left: -50%.
   * Because we duplicated the content, once the first half scrolls off,
   * the second half is perfectly in place to continue the loop.
   */
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-800%); }
  }

  /* Infinite loop, linear speed */
  .animate-marquee {
    animation: marquee 45s linear infinite;
    /* Feel free to adjust 15s to a different duration */
  }
  .animate-marquee-2 {
    animation: marquee 35s linear infinite;
    /* Feel free to adjust 15s to a different duration */
  }

  /* If you want to pause on hover (optional) */
  .animate-marquee:hover {
    animation-play-state: paused;
  }




@keyframes marquee-reverse {
  0%   { transform: translateX(-800%); }
  100% { transform: translateX(0); }
}

.animate-marquee-reverse {
  animation: marquee-reverse 38s linear infinite;
}

.infinite-scroll {
    animation: infiniteScroll linear infinite;
}
@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide-out-left {
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-in-left {
    from {
        transform: translateX(100%);
    }
}

@keyframes slide-out-right {
    to {
        transform: translateX(100%);
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
    }
}

@keyframes elasticPopLeft {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  40% {
    transform: scale(0.8) rotate(-1deg);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.1) rotate(-2deg);
    opacity: 0.7;
  }
  85% {
    transform: scale(0.95) rotate(-2.5deg);
    opacity: 0.85;
  }
  100% {
    transform: scale(1) rotate(-3deg);
    opacity: 1;
  }
}

@keyframes elasticPopRight {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  40% {
    transform: scale(0.8) rotate(1deg);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.7;
  }
  85% {
    transform: scale(0.95) rotate(2.5deg);
    opacity: 0.85;
  }
  100% {
    transform: scale(1) rotate(3deg);
    opacity: 1;
  }
}
.elasticPopLeft {
  animation: elasticPopLeft .5s ease-out forwards
}
.elasticPopRight {
  animation: elasticPopRight .5s ease-out forwards
}

.elasticDisappear {
  animation: elasticDisappear .5s ease-out forwards
}

.shimmer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    from {
        transform: translateX(-200%);
    }
    to {
        transform: translateX(200%);
    }
}