@import url("root-var.css");
.magictime {
  animation-delay: 0.5s; 
  -webkit-animation-delay: 0.5s; 
}

.slide-top {
	-webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-11-6 10:21:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

/* ================== Style 1 - Box Shadow Highlight ================== */
  .link-style-shadow {
    padding: 0 0.25rem;
    margin: 0 -0.25rem;
    box-shadow: inset 0 0 0 0 var(--link-1);
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    color: var(--link-1);
  }

  .link-style-shadow:hover {
    color: white;
    box-shadow: inset 100px 0 0 0 var(--link-1);
  }

  /* ================== Style 2 - Bottom Line Expand ================== */
  .link-style-underline {
    position: relative;
    transition: color .3s ease-in-out;
  }

  .link-style-underline::before {
    content: '';
    position: absolute;
    top: 100%;
    width: 100%;
    height: 3px;
    background-color: var(--link-1);
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
  }

  .link-style-underline:hover {
    color: var(--link-1);
  }

  .link-style-underline:hover::before {
    transform: scaleX(1);
  }

  /* ================== Style 3 - Alternating Transform Line ================== */
  .link-style-alternate {
    position: relative;
  }

  .link-style-alternate::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: var(--text);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
  }

  .link-style-alternate:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }

  /* ================== Style 4 - Sliding Text Reveal ================== */
  .link-style-reveal {
    overflow: hidden;
    position: relative;
    display: inline-block;
  }

  .link-style-reveal::before,
  .link-style-reveal::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
  }

  .link-style-reveal::before {
    background-color: var(--link-1);
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .link-style-reveal:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }

  .link-style-reveal::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 100% 50%;
    transform: translate3d(200%, 0, 0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    color: var(--link-1);
  }

  .link-style-reveal:hover::after {
    transform: translate3d(0, 0, 0);
  }

  .link-style-reveal span {
    display: inline-block;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
  }

  .link-style-reveal:hover span {
    transform: translate3d(-200%, 0, 0);
  }

  /* ================== Style 5 - Highlight Bar ================== */
  .link-style-bar {
    position: relative;
    font-weight: bold;
  }

  .link-style-bar::before {
    content: '';
    background-color: var(--link-3);
    position: absolute;
    left: 0.5rem;
    bottom: 5px;
    width: 100%;
    height: 8px;
    z-index: -1;
    transition: all .3s ease-in-out;
  }

  .link-style-bar:hover::before {
    left: -5px;
    bottom: 0;
    height: 100%;
    width: calc(100% + 10px);
  }

  /* ================== Style 6 - Gradient Bottom ================== */
  .link-style-gradient {
    background-image: linear-gradient(white 50%, var(--link-2) 50%);
    background-size: auto 175%;
    transition: background .3s ease-in-out;
  }

  .link-style-gradient:hover {
    background-position-y: 100%;
  }