:root {
  --bg: #0b0f1a;
  --bg-elev: #11172a;
  --card: #151c30;
  --muted: #9aa3b2;
  --text: #e6ecf5;
  --primary: #ffb703;
  --primary-600: #f1a501;
  --outline: rgba(255, 255, 255, 0.08);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
}


body {
  width: 100%;
  height: 100%;
  background-color: rgb(221, 231, 232);
  background-image: url(../images/svgexport-1-1.png),
    url(../images/svgexport-1-1.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 30%, 21%;
  background-position: -191px 102px, 100% 554px;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.link{
  cursor: pointer;
}

/* Header */
.site-header {
  backdrop-filter: saturate(180%) blur(10px);
  border-radius: 50px;
}

.site-header .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .brand img {
  height: 36px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  transform: translateX(-100px);
}

.main-nav .nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.main-nav .nav-link.is-active,
.main-nav .nav-link:hover {
  color: #0d1726;
}

.whatsapp .whatsapp-icon {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 8px;
}

section {
  max-width: 1170px;
  margin: 40px auto;
  box-shadow: 0px -68px 50px 37px rgba(232.5, 232.5, 232.5, 0.68);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  --e-column-margin-right: 0px;
  --e-column-margin-left: 0px;
  padding: 0px 40px 30px 40px;
  background-color: #CBD5D6AB;
  border-radius: 50px;
}

/* Swiper: hero slider */
.heroSwiper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

.heroSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSwiper .swiper-slide a {
  display: block;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.burger_icon{
  display: none;
}

.mobile_nav{
  display: none;
}

@media(max-width: 768px){
  body {
    background-size: 30%, 21%;
    background-position: -20px 10px, 100% 554px;
  }

  .site-header .container{
    padding: 0 10px;
  }

  .main-nav,
  .site-header .whatsapp{
    display: none;
  }

  .mobile-nav .whatsapp{
    display: block;
  }

  .burger_icon{
    display: flex;
    max-width: 45px;
  }

  .mobile_nav{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: #fff;
    z-index: 9;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
  }

  .mobile_nav._active{
    transform: translateX(0); 
  }
  

  .mobile_nav-wrapper{
    position: relative;
    height: 100%;
    width: 100%;
    padding: 40px 10px;
  }

  .mobile_nav .close_icon{
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .mobile-nav{
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .mobile-nav a{
    text-decoration: none;
    color:#11172a;
    font-size: 20px;
  }

  .heroSwiper .swiper-slide img{
    width: 80%;
    display: block;
    margin: 0 auto;
  }
}

/* Pagination styles to match screenshot (dots centered, active wider) */
.hero-swiper-pagination {
  position: relative;
  margin-top: 10px;
  text-align: center;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #0b0f1a;
  opacity: 1;
  margin: 0 4px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: #ff7a00;
}

/* Partners block */
.partners {
  margin: 40px;
}

.partners-title {
  margin: 0 0 20px 0;
  text-align: center;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #0b0f1a;
}

.partners-title .accent {
  color: #ff7a00;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.partner-card {
  display: grid;
  grid-template-rows: 1fr auto;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.partner-card .partner-card__body {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 28px;
}

.partner-card .partner-card__body img {
  max-width: 80%;
  height: auto;
  display: block;
  transition: transform 240ms ease;
  transform-origin: center;
}

.partner-card:hover .partner-card__body img {
  transform: scale(1.06);
}

.partner-card .partner-card__label {
  padding: 14px 18px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.partner--orange .partner-card__label {
  background: #ff7a00;
}

.partner--blue .partner-card__label {
  background: #0ea5c6;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

@media (max-width: 1024px) {


  .span-6 {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  section{
    padding: 0 10px 0 10px;
  }

  .partners{
    margin: 20px;
  }
  .partners-title {
    font-size: 28px;
  }

  .partners-grid {
    gap: 16px;
  }

  .span-4,
  .span-6 {
    grid-column: span 12;
  }
}

/*Content section*/

.content-section {
  background-color: transparent;
  background-image: linear-gradient(145deg, #005099 0%, #4CA9FF 100%);
  width: 100%;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 30px 20px 30px 20px;
  border-radius: 25px;
}

/* Lists inside content sections */
.content-section ul,
.content-section ol {
  margin: 14px 0 16px 0;
  padding-left: 0;
}

.content-section li {
  line-height: 1.6;
}

/* Pretty unordered lists */
.content-section ul {
  list-style: none;
}

.content-section ul li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
}

.content-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%);
}

.content-section ul ul li {
  padding-left: 24px;
}

.content-section ul ul li::before {
  width: 8px;
  height: 8px;
  opacity: .85;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Pretty ordered lists */
.content-section ol {
  list-style: none;
  counter-reset: item;
}

.content-section ol li {
  position: relative;
  padding-left: 40px;
  margin: 10px 0;
  counter-increment: item;
}

.content-section ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #0b0f1a;
  font-weight: 800;
  font-size: 14px;
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.content-section ol ol li::before {
  opacity: .9;
}

/* Remove excessive spacing when list items wrap paragraphs */
.content-section li > p {
  margin: 0;
}

@media (max-width: 640px) {
  .content-section ul li {
    padding-left: 24px;
  }

  .content-section ol li {
    padding-left: 34px;
  }

  .content-section ol li::before {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 13px;
  }
}

/* Benefits (Why TigerExch) */
.benefits {
  margin: 40px;
}

.benefits-title {
  margin: 0 0 26px 0;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #0b0f1a;
}

.benefits-title .brand-accent {
  background: #0d5bd1;
  color: #fff;
  padding: 2px 10px;
  border-radius: 6px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 56px 34px;
  margin-top: 40px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  grid-column: span 4;
  display: flex;
}

/* Inner panel scales on hover while icon stays fixed */
.benefit-card__panel {
  background: #e9f0f1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 28px 26px 26px 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
  transition: transform .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-card:hover .benefit-card__panel {
  transform: scale(1.035);
}

.benefit-card.is-blue .benefit-card__panel {
  box-shadow: 0 18px 70px rgba(14, 165, 198, .35);
}

.benefit-card.is-orange .benefit-card__panel {
  box-shadow: 0 18px 70px rgba(255, 122, 0, .35);
}

.benefit-card__icon {
  position: absolute;
  top: -35px;
  right: 24px;
  width: 64px;
  height: 64px;
  display: block;
  z-index: 2;
}

.benefit-card__title {
  margin: 0;
  color: #0284b3;
  font-size: 22px;
}

.benefit-card.is-orange .benefit-card__title {
  color: #ff7a00;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .benefit-card {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .benefits-title {
    font-size: 30px;
  }

  .benefits-grid {
    gap: 22px;
  }

  .benefit-card {
    grid-column: span 12;
  }
}

/* Footer */
.site-footer {
  margin-top: 40px;
  background: transparent;
}

.footer-container {
  max-width: 1170px;
  margin: 0 auto 40px;
  padding: 0 40px 40px;
}

.footer-heading {
  margin: 24px 0 10px;
  font-size: 16px;
  color: #0b0f1a;
  font-weight: 700;
}

.footer-logos {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 20px 26px;
  align-items: center;
}

.footer-logos img {
  height: 36px;
  opacity: .95;
}

.footer-logos.sponsors {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 26px;
  align-items: center;
}

.footer-logos.sponsors img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Payment methods: single row, gray by default, colored on hover */
.footer-logos.payments {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 16px;
  align-items: center;
}

.footer-logos.payments img {
  width: 100%;
  height: auto;
  max-height: clamp(16px, 3.2vw, 30px);
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.footer-logos.payments img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

.footer-sep {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, .08);
  margin: 24px 0;
}

.community .socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #2b3b48;
  transition: transform .2s ease, opacity .2s ease;
  color: #fff;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social.is-instagram {
  background: #000;
}

.social.is-whatsapp {
  background: #25d366;
}

.social.is-telegram {
  background: #229ED9;
}

.social:hover {
  transform: translateY(-1px);
  opacity: .95;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 40px;
  margin-top: 16px;
}

.footer-col p {
  margin: 8px 0;
  color: #2b3b48;
  line-height: 1.5;
}

.footer-sub {
  margin: 14px 0 4px;
  font-weight: 700;
  color: #0b0f1a;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.footer-note {
  color: #2b3b48;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #0b0f1a;
  text-decoration: none;
  font-weight: 600;
}

.footer-badges img {
  height: 30px;
  margin-left: 12px;
}

.footer-block{
  color: var(--card)
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media(max-width: 600px){
  .footer-logos.sponsors{
    flex-wrap: nowrap;
  }
  .footer-logos.sponsors img{
    width: 33%;
  }
  .footer-logos.payments {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-logos.payments img{
    width: 80px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table,
th,
td {
  border: 1px solid #ccc;
}

th,
td {
  padding: 8px;
}

@media screen and (max-width: 600px) {
  table.table-wrap {
      border: 0;
  }

  table.table-wrap tr.title {
      display: none;
  }

  table.table-wrap td.colored {
      background-color: var(--main-bg);
  }

  table.table-wrap td.colored p {
      color: #fff;
  }

  table.table-wrap thead {
      display: none;
  }

  table.table-wrap tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 2px solid #ddd;
      border-right: 1px solid var(--primary);
  }

  table.table-wrap td {
      display: block;
      text-align: right;
      font-size: 13px;
      border-bottom: 1px dotted #ccc;
      border-right: 1px solid transparent;
  }

  table.table-wrap td:last-child {
      border-bottom: 0;
  }

  table.table-wrap td:before {
      content: attr(data-label);
      float: left;
      text-transform: uppercase;
      font-weight: bold;
  }
}



.btn_wrapper{
  display: block;
  max-width: 200px;
  margin: 0px auto;
  margin-top: 40px;
}
.text_btn {
  --white: #eaf6ff;
  --purple-100: #d2eeff;
  --purple-200: #a5dcff;
  --purple-300: #6bc5ff;
  --purple-400: #1f9dff;
  --purple-500: #0b6bcb;
  --radius: 18px;

  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  font-size: 23px;
  font-family: Arial;
  background: transparent;
  letter-spacing: -1px;
  border: 0;
  position: relative;
  width: 220px;
  height: 80px;
  transform: rotate(360deg) skewX(4deg);
}

.bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  filter: blur(1px);
}
.bg::before,
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 1.1);
  background: var(--purple-500);
}
.bg::before {
  filter: blur(5px);
  transition: all 0.3s ease;
  box-shadow:
    -7px 6px 0 0 rgb(11 107 203 / 40%),
    -14px 12px 0 0 rgb(11 107 203 / 30%),
    -21px 18px 4px 0 rgb(11 107 203 / 25%),
    -28px 24px 8px 0 rgb(11 107 203 / 15%),
    -35px 30px 12px 0 rgb(11 107 203 / 12%),
    -42px 36px 16px 0 rgb(11 107 203 / 8%),
    -56px 42px 20px 0 rgb(11 107 203 / 5%);
}

.wrap {
  border-radius: inherit;
  overflow: hidden;
  height: 100%;
  transform: translate(6px, -6px);
  padding: 3px;
  background: linear-gradient(
    to bottom,
    var(--purple-100) 0%,
    var(--purple-400) 100%
  );
  position: relative;
  transition: all 0.3s ease;
}

.outline {
  position: absolute;
  overflow: hidden;
  inset: 0;
  opacity: 0;
  outline: none;
  border-radius: inherit;
  transition: all 0.4s ease;
}
.outline::before {
  content: "";
  position: absolute;
  inset: 2px;
  width: 120px;
  height: 300px;
  margin: auto;
  background: linear-gradient(
    to right,
    transparent 0%,
    white 50%,
    transparent 100%
  );
  animation: spin 3s linear infinite;
  animation-play-state: paused;
}

.content {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  height: 100%;
  gap: 16px;
  border-radius: calc(var(--radius) * 0.85);
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(
    to bottom,
    var(--purple-300) 0%,
    var(--purple-400) 100%
  );
  box-shadow:
    inset -2px 12px 11px -5px var(--purple-200),
    inset 1px -3px 11px 0px rgb(0 0 0 / 35%);
}
.content::before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 10;
  width: 80%;
  top: 45%;
  bottom: 35%;
  opacity: 0.7;
  margin: auto;
  background: linear-gradient(to bottom, transparent, var(--purple-400));
  filter: brightness(1.3) blur(5px);
}

.char {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.char span {
  display: block;
  color: transparent;
  position: relative;
}
.char span:nth-child(5) {
  margin-left: 5px;
}
.char.state-1 span:nth-child(5) {
  margin-right: -3px;
}
.char.state-1 span {
  animation: charAppear 1.2s ease backwards calc(var(--i) * 0.03s);
}
.char.state-1 span::before,
.char span::after {
  content: attr(data-label);
  position: absolute;
  color: var(--white);
  text-shadow: -1px 1px 2px var(--purple-500);
  left: 0;
}
.char span::before {
  opacity: 0;
  transform: translateY(-100%);
}
.char.state-2 {
  position: absolute;
  left: 80px;
}
.char.state-2 span::after {
  opacity: 1;
}

.icon {
  animation: resetArrow 0.8s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
  z-index: 10;
}
.icon div,
.icon div::before,
.icon div::after {
  height: 3px;
  border-radius: 1px;
  background-color: var(--white);
}
.icon div::before,
.icon div::after {
  content: "";
  position: absolute;
  right: 0;
  transform-origin: center right;
  width: 14px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.icon div {
  position: relative;
  width: 24px;
  box-shadow: -2px 2px 5px var(--purple-400);
  transform: scale(0.9);
  background: linear-gradient(to bottom, var(--white), var(--purple-100));
  animation: swingArrow 1s ease-in-out infinite;
  animation-play-state: paused;
}
.icon div::before {
  transform: rotate(44deg);
  top: 1px;
  box-shadow: 1px -2px 3px -1px var(--purple-400);
  animation: rotateArrowLine 1s linear infinite;
  animation-play-state: paused;
}
.icon div::after {
  bottom: 1px;
  transform: rotate(316deg);
  box-shadow: -2px 2px 3px 0 var(--purple-400);
  background: linear-gradient(200deg, var(--white), var(--purple-100));
  animation: rotateArrowLine2 1s linear infinite;
  animation-play-state: paused;
}

.path {
  position: absolute;
  z-index: 12;
  bottom: 0;
  left: 0;
  right: 0;
  stroke-dasharray: 150 480;
  stroke-dashoffset: 150;
  pointer-events: none;
}

.splash {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  stroke-dasharray: 60 60;
  stroke-dashoffset: 60;
  transform: translate(-17%, -31%);
  stroke: var(--purple-300);
}

/** STATES */

.text_btn:hover .words {
  opacity: 1;
}
.text_btn:hover .words span {
  animation-play-state: running;
}

.text_btn:hover .char.state-1 span::before {
  animation: charAppear 0.7s ease calc(var(--i) * 0.03s);
}

.text_btn:hover .char.state-1 span::after {
  opacity: 1;
  animation: charDisappear 0.7s ease calc(var(--i) * 0.03s);
}

.text_btn:hover .wrap {
  transform: translate(8px, -8px);
}

.text_btn:hover .outline {
  opacity: 1;
}

.text_btn:hover .outline::before,
.text_btn:hover .icon div::before,
.text_btn:hover .icon div::after,
.text_btn:hover .icon div {
  animation-play-state: running;
}

.text_btn:active .bg::before {
  filter: blur(5px);
  opacity: 0.7;
  box-shadow:
    -7px 6px 0 0 rgb(11 107 203 / 40%),
    -14px 12px 0 0 rgb(11 107 203 / 25%),
    -21px 18px 4px 0 rgb(11 107 203 / 15%);
}
.text_btn:active .content {
  box-shadow:
    inset -1px 12px 8px -5px rgba(71, 0, 137, 0.4),
    inset 0px -3px 8px 0px var(--purple-200);
}

.text_btn:active .words,
.text_btn:active .outline {
  opacity: 0;
}

.text_btn:active .wrap {
  transform: translate(3px, -3px);
}

.text_btn:active .splash {
  animation: splash 0.8s cubic-bezier(0.3, 0, 0, 1) forwards 0.05s;
}

.text_btn:focus .path {
  animation: path 1.6s ease forwards 0.2s;
}

.text_btn:focus .icon {
  animation: arrow 1s cubic-bezier(0.7, -0.5, 0.3, 1.5) forwards;
}

.char.state-2 span::after,
.text_btn:focus .char.state-1 span {
  animation: charDisappear 0.5s ease forwards calc(var(--i) * 0.03s);
}

.text_btn:focus .char.state-2 span::after {
  animation: charAppear 1s ease backwards calc(var(--i) * 0.03s);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes charAppear {
  0% {
    transform: translateY(50%);
    opacity: 0;
    filter: blur(20px);
  }
  20% {
    transform: translateY(70%);
    opacity: 1;
  }
  50% {
    transform: translateY(-15%);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes charDisappear {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-70%);
    opacity: 0;
    filter: blur(3px);
  }
}

@keyframes arrow {
  0% {
    opacity: 1;
  }
  50% {
    transform: translateX(60px);
    opacity: 0;
  }
  51% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(-128px);
    opacity: 1;
  }
}

@keyframes swingArrow {
  50% {
    transform: translateX(5px) scale(0.9);
  }
}

@keyframes rotateArrowLine {
  50% {
    transform: rotate(30deg);
  }
  80% {
    transform: rotate(55deg);
  }
}

@keyframes rotateArrowLine2 {
  50% {
    transform: rotate(330deg);
  }
  80% {
    transform: rotate(300deg);
  }
}

@keyframes resetArrow {
  0% {
    transform: translateX(-128px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes path {
  from {
    stroke: white;
  }
  to {
    stroke-dashoffset: -480;
    stroke: #f9c6fe;
  }
}

@keyframes splash {
  to {
    stroke-dasharray: 2 60;
    stroke-dashoffset: -60;
  }
}
