@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Asap+Condensed&family=Inter:opsz,wght@14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/duvall");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap");

* {
  box-sizing: border-box;
}
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
h1 {
  font-size: 36px;
  font-weight: 600;
  font-family: "normal", sans-serif;
}

/* --- Preloader Fullscreen --- */

#preloader {
  position: fixed;
  z-index: 9999;
  background-color: transparent;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #111;
  /* box-shadow: inset 0 0 20px rgba(255,255,255,0.1); */
  transition: transform 1s ease-in-out;
  z-index: 1;
}
.left-door {
  left: 0;
  transform: translateX(0);
}
.right-door {
  right: 0;
  transform: translateX(0);
}

.logo-center {
  z-index: 2;
  opacity: 0;
  animation: fadeInnn 1s ease-in-out forwards;
  animation-delay: 0.3s;
}
.dot-loader {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  margin-top: 24px;
  height: 30px;
}

.dot-loader span {
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  animation: jumpColor 1s infinite ease-in-out;
}

.dot-loader span:nth-child(1) {
  animation-delay: 0s;
}
.dot-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.dot-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes jumpColor {
  0% {
    transform: translateY(0);
    background-color: #fff;
    opacity: 0.4;
    box-shadow: none;
  }
  50% {
    transform: translateY(-12px);
    background-color: #ff0000;
    box-shadow: 0 0 8px #ff0000;
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
    box-shadow: none;
    opacity: 0.4;
  }
}



.logo-center img {
  width: 350px;
}

.fade-out {
  animation: fadeOut 1s ease-in-out forwards;
}
@keyframes fadeInnn {
  to { opacity: 1; }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.85);
  }
}

/* --- Saat pintu terbuka --- */
.open-left {
  transform: translateX(-100%);
}
.open-right {
  transform: translateX(100%);
}

/* --- Responsive Logo --- */
@media (max-width: 600px) {
  .logo-center img {
    width: 200px;
  }
}




.layar-penuh p {
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}
.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.layar-dalam {
  width: 1000px;
  margin: auto;
}
.layar-penuh {
  width: 100%;
}

/* ------- nav v2 -------- */

nav {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.01);
  transition: 0.6s ease-out;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 90%;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
}
.nav-bawah {
  position: fixed;
  top: -100px;
  width: 90%;
  left: 50%;
  border-radius: 0 0 10px 10px;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.904);
  padding: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: top 0.75s ease-out;
}

.nav-bawah.show {
  top: 0;
}
.nav-bawah ul li a {
  color: black;
}
.nav-bawah ul li a:hover {
  color: #ff0000;
}

nav img {
  width: 150%;
  height: 150%;
  object-fit: cover;
  margin-right: 10px;
  transition: transform 0.2s ease-in-out;
  z-index: 1;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
}
nav li {
  height: 50px;
}
nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 0 auto;
  color: rgb(255, 255, 255);
  transition: 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #ff0000;
}
nav li:first-child {
  margin-right: auto;
}

.sidebar {
  position: fixed;
  right: 0;
  height: 100vh;
  width: 350px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.377);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: center;
  transition: 0.75s ease;
  padding: 0 0 0 20px;
}
.sidebar.show {
  display: flex;
  right: 0;
}

.sidebar li {
  width: 100%;
  position: relative;
}
.sidebar a {
  width: 100%;
  color: #ffffff;
  left: 0;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
  justify-content: left;
}

.menu-button {
  left: 0;
  color: black;
  display: none;
}

.x-menu {
  fill: #000;
}
.nav-bawah .menu-button svg {
  fill: #000;
}

svg {
  /* fill: #000; */
  transition: 0.2s ease-out;
}
svg:hover {
  fill: red;
}

.language {
  position: relative;
  width: 120px;
  margin-left: 40px;
  font-weight: bold;
}
.language-selected {
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.language-selected:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(https://flagsapi.com/ID/flat/64.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

/* ------ Jquery ------  */
.language-selected.change-id:before {
  background-image: url(https://flagsapi.com/ID/flat/64.png);
}
.language-selected.change-en:before {
  background-image: url(https://flagsapi.com/US/flat/64.png);
}

.language ul {
  border-radius: 5px;
  padding: 0;
  position: absolute;
  width: 70px;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
  display: none;
  transition: 0.3s ease;
}
.language:hover ul {
  display: block;
}

.language ul li {
  list-style: none;
  display: flex;
  justify-content: left;
  align-items: left;
  transition: 0.3s ease;
  border-radius: 5px;
}
.language ul li:hover {
  background-color: #c4c4c4;
}
.language ul li a {
  width: 100%;
  font-size: 16px;
  display: block;
  color: #252525;
  /* padding-top: 5px 10px; */
  padding: 10px 0;
}
.language ul li a:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 5px 0 2px;
  padding: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
a.id:before {
  background-image: url(https://flagsapi.com/ID/flat/64.png);
}
a.en:before {
  background-image: url(https://flagsapi.com/US/flat/64.png);
}
nav a.label-merah, .nav-bawah a.label-merah  {
  color: #ff0000;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.nav-bawah .language-selected {
  color: #000000;
}

/* tampilan NAV */

/* TAMPILAN UTAMA SWIPER */

.swiper-tampilan-depan {
  position: relative;
  width: 100%;
  height: 100vh;
}

.swiper-tampilan-depan .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
}

.swiper-tampilan-depan .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}


.swiper-tampilan-depan .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  background-repeat: no-repeat;
  animation: zoomSlow 30s ease-in-out infinite alternate;
  filter: brightness(50%);
}

.swiper-tampilan-depan .swiper-slide img.khusus-kr {
  object-fit: unset;
}

@media (max-width: 700px) {
  .swiper-tampilan-depan .swiper-slide img {
    width: 100%;
    height: 100%;
    /* object-fit:unset */
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: #c7c7c7;
  transition: 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #f80000;
  opacity: 0.8;
}

.swiper-tampilan-depan .swiper-pagination {
  padding: 10px 0;
}

.swiper-tampilan-depan .swiper-pagination * {
  background: #ffffff;
  /* padding: 0px 15px; */
  border-radius: 50%;
  margin: 0;
}

/* Title halama depan */
.swiper-slider-content {
  position: absolute;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}
.swiper-slider-content .slider-title {
  /* padding: 20px; */
  /* line-height: 2; */
  font-size: 4rem;
  margin: 0;
  animation: fadeInDown 1s both 0.2s;
  /* font-family: 'Montserrat', sans-serif; */
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Duvall", sans-serif;

  /* background: linear-gradient(to right, red, white);
  background-clip: text;
  color: transparent; */
}
.swiper-slider-content .slider-title.eventAtas {
  font-family: "Duvall", sans-serif;

  margin-top: 50px;
}

.swiper-slider-content .satu {
  padding: 0;
  padding-bottom: 10px;
  margin: 0;
  font-size: 15px;
  color: #fff;
  line-height: 2;
  animation: fadeInDown 1s both 0.2s;
}

.swiper-slider-content .slider-title span {
  font-size: 4rem;
  color: red;
}

/* ch itu adalah character, shg melimit asi ukuran font sesuai dengan karakter yang ada */
.swiper-slider-content .slider-description {
  width: 60ch;
  /* line-height: 2; */
  font-size: 16px;
  animation: fadeInDown 1s both 0.2s;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  /* font-family: 'Duvall', sans-serif; */
}
.swiper-slider-content .slider-description.angkaEvent {
  font-size: 30px;
  margin-top: 0px;
  margin-bottom: 0;
  /* padding-bottom: 10px; */
}

/* Tombol A atau Button */
.swiper-slider-content .slider-action {
  font-family: "Montserrat", sans-serif;
  /* font-family: 'Duvall', sans-serif; */
  color: white;
  border: 1px solid white;
  padding: 0.5rem 3rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 4px;
  width: fit-content;
  position: relative;
  isolation: isolate;
  transition: all 500ms;
  overflow: hidden;
  z-index: 1;
  animation: fadeInUp 1s both 0.4s;
  
}

.swiper-slider-content .slider-action::before {
  content: "";
  background-color: #ffffff;
  inset: 0; 
  position: absolute;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 500ms;
}
.swiper-slider-content .slider-action:hover {
  color: rgb(0, 0, 0);
}

.swiper-slider-content .slider-action:hover:before {
  transform: scaleX(1)
}
.swiper-slider-content .slider-action.right-to-left::before{
  transform: scaleX(0);
  transform-origin: right;
}
.swiper-slider-content .slider-action.right-to-left:hover:before {
  transform: scaleX(1)
}

/* --------------- Countdown --------- */

.countdown-wrapper {
  border-top: #dadada4b 1px solid;
  background: linear-gradient(135deg, #000000, #0a0a0a, #1a1a1a);
  padding: 60px 20px;
  text-align: center;
  color: white;

  position: relative;
}
.countdown-deco {
  position: absolute;
  width: 130px;
  height: 4px;
  background: linear-gradient(90deg, #d00000, #ff0040, #d00000);
  background-size: 200% auto;
  opacity: 0.6;
  z-index: 5;
  border-radius: 3px;
  animation: pulseGlowwed 3.5s ease-in-out infinite, moveGradient 5s linear infinite;
  pointer-events: none;
  transition: transform 0.6s ease, background-position 0.6s ease;

}
.countdown-wrapper:hover .countdown-deco {
  opacity: 1;
}

/* Garis atas */
.countdown-deco.left {
  top: 30px;
  left: 0;
  transform: rotate(-16deg);
}

.countdown-deco.right {
  top: 30px;
  right: 0;
  transform: rotate(16deg);
}

/* Garis bawah */
.countdown-deco.bottom-left {
  bottom: 30px;
  left: 0;
  transform: rotate(-16deg);
}

.countdown-deco.bottom-right {
  bottom: 30px;
  right: 0;
  transform: rotate(16deg);
}
.countdown-wrapper:hover .countdown-deco.left {
  top: 30px;
  left: 0;
  transform: rotate(16deg);
}
.countdown-wrapper:hover .countdown-deco.right {
  top: 30px;
  right: 0;
  transform: rotate(-16deg);
}
.countdown-wrapper:hover .countdown-deco.bottom-left {
  bottom: 30px;
  left: 0;
  transform: rotate(16deg);
}
.countdown-wrapper:hover .countdown-deco.bottom-right {
  bottom: 30px;
  right: 0;
  transform: rotate(-16deg);
}


.countdown-heading {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.countdown-heading span {
  /* color: #ff003c; */
  color: #d00000;
  font-family: "Poppins", sans-serif;
}

.countdown {
  display: flex;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap: 40px;
  /* margin-top: 20px; */
}

.time-box {
  /* background: #1a1a1a; */
  padding: 25px 20px;
  border-radius: 16px;
  width: 150px;
  transition: transform 0.3s ease;
  animation: pulse 2.5s infinite;
}
.time-box:hover h1 {
  transform: scale(1.15);
}
.time-box h1 {
  font-size: 48px;
  margin: 0;
  color: #d00000;
  font-family: "Orbitron", sans-serif;
}

.time-box p {
  margin-top: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
  color: #aaa;
}
.countdown-unit {
  display: inline-block;
  min-width: 50px;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.countdown-unit.animate {
  transform: scale(1.2);
  opacity: 0.7;
}

/* ------------- informasi ------ */

.info-section {
  text-align: center;
  padding: 60px 20px;
  width: 70%;
  margin: 0 auto;
}

.info-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.info-grid {
  display: flex;
  justify-content: center;
  gap: 0px;
  flex-wrap: wrap;
}

.info-icon a {
  text-decoration: none;
  position: relative;
  color: #d00000;
}
.info-icon i {
  font-size: 5rem;
  cursor: pointer;
  color: #d00000;
}

.info-section .section-title {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 1px;
  color: #111;
  width: 90%;
  margin: 0 auto;
  border-bottom: #9999993d solid 1px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
/* -------- transisi scroll ------  */
/* Dasar semua animasi */
.scroll-fade-up,
.scroll-fade-down,
.scroll-fade-left,
.scroll-fade-right {
  opacity: 0;
  transition: all 1s ease;
}

.scroll-fade-up {
  transform: translateY(80px);
}
.scroll-fade-down {
  transform: translateY(-80px);
}
.scroll-fade-left {
  transform: translateX(-80px);
}
.scroll-fade-right {
  transform: translateX(80px);
}

/* Saat terlihat */
.scroll-fade-up.show,
.scroll-fade-down.show,
.scroll-fade-left.show,
.scroll-fade-right.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* ------- donee ------- */


.info-card {
  /* background: #fafafa; */
  padding: 20px 25px;
  border-radius: 16px;
  width: 220px;
  text-align: center;
  transition: all 0.6s ease;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ff003c;
  display: inline-block;
  transition: transform 0.3s ease;
  position: relative;
}
.info-card .info-icon i {
  transition: 0.5s ease;
}


.info-card:hover .info-icon i {
  transform: translateY(-6px);
}

.info-icon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #ff003c;
  transition: width 0.4s ease, left 0.4s ease;
  transform: translateX(-50%);
}
.info-card:hover .info-icon::after {
  width: 100%;
  left: 50%;
}




.info-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #333;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
}

.info-text p {
  font-size: 14px;
  margin-top: 6px;
  color: #555;
  font-family: "Poppins", sans-serif;
}

.info-text a {
  color: #ff003c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.info-text a:hover {
  color: #c1002f;
}

.container {
  display: flex;
  width: 70%;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}
.container h1 {
  font-family: "Poppins", sans-serif;
  margin-top: 50px;
  font-size: 30px;
  font-weight: 700;
  width: 90%;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: #9999993b solid 1px;
}
/* .container h1::after {
  content: "";
  border-bottom: 3px solid #ff0048;
  width: 60%;
  display: block;
  margin: 5px auto;
} */
.container p.palingAtas {
  margin-top: 10px;
  padding: 0;
}
.rows {
  display: flex;
  justify-content: space-between;
}

.image-section {
  flex: 1;
  /* padding-left: 30px; */
  /* padding-top: 20px; */
  margin: 10px;
  position: relative;
}

.image-section img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-size: cover;
  transition: 0.3s ease;
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  -webkit-clip-path: polygon(
    75% 0%,
    100% 50%,
    75% 100%,
    0% 100%,
    25% 50%,
    0% 0%
  );
}
.image-section img:hover{
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
  -webkit-clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
}
.image-section img:active {
  cursor: pointer;
}
.image-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  /* background-color: rgba(0, 0, 0, 0.63); */
  /* background-image: linear-gradient(to top, black, transparent); */
}

.text-section {
  flex: 1;
  text-align: center;
  margin: 0;
  transition: margin 0.3s ease-in-out;
}
.text-section:active {
  cursor: pointer;
}
.text-section h2 {
  color: #790000;
}

.card {
  background-color: #ffd2d2;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
.card:hover {
  background-color: #d00000;
}

.card h3 {
  margin: 0;
  color: #bb0101;
  transition: all 0.3s ease-in-out;
}
.card:hover h3 {
  color: #fff;
  transform: translateY(-10px);
}
.card p {
  color: #000;
  transition: all 0.3s ease-in-out;
  text-align: justify;
}
.card:hover p {
  color: #fff;
  transform: translateY(-10px);
}

/* ------------- categories ------ */
.marathon-categories {
  width: 70%;
  margin: 50px auto;
  text-align: center;
  padding: 0 20px;
}
.judulUtama {
  font-family: "Poppins", sans-serif;
  margin: 50px auto;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 90%;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: #9999993b solid 1px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.category {
  background-color: #ffd2d2;
  /* border: 2px solid #D00000; */
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
  transition: 0.6s ease;
  will-change: opacity, transform;
}


.category h3 {
  font-size: 34px;
  margin-bottom: 10px;
  /* color: #e91e63; */
  /* color: #e46e63; */
  color: #d00000;
  transition: 0.3s ease;
}

.category p {
  text-align: left;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease-in-out;
}

.category ul {
  list-style: none;
  text-align: left;
  margin-top: 15px;
  padding-left: 0;
  line-height: 2;
  font-size: 15px;
}

.category ul li {
  margin-bottom: 8px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  transition: 0.3s ease-in-out;
}

.category ul li::before {
  content: "✔"; /*  "✔️", ✅"⭐", "🔹",  */
  margin-right: 8px;
  display: inline-block;
  color: #d00000;
  font-weight: bold;
  font-size: 16px;
  align-self: flex-start;
  transition: 0.3s ease-in-out;
}

.category ul li strong {
  display: inline-block;
  min-width: 60px;
  font-weight: 700;
  color: #333;
  flex-shrink: 0;
  transition: 0.3s ease-in-out;
}

.badge {
  background-color: #d00000;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 15px;
  position: absolute;
  top: 10px;
  left: 10px;
  transition: 0.3s ease-in-out;
}

.price-tag{
  margin-top: 24px;
  padding: 12px 32px;
  font-size: 35px;
  font-weight: 700;
  color: #d00000;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  list-style: none;;
}
.price-community, button.price-community {
  /* margin-top: 10px; */
  position: relative;
  padding: 10px 30px;
  background: #ff0000; /* warna dasar */
  border: 2px solid #d00000;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 40px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-decoration: none;
  
  display: inline-block;
  z-index: 0;
}

.price-community::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 100%;
  background: #fff; /* warna efek sliding */
  z-index: -1;
  transition: transform 0.4s ease;
  border-radius: 40px;
}
.swal2-popup {
  font-family: 'Poppins', sans-serif !important;
}


.category:hover .price-community::before {
  transform: translateX(-50%) scaleX(1);
}

.price-community:hover {
  color: white;
}



.category-wrapper-komunitas {
  max-width: 700px;
  margin: 40px auto 80px;
}
.category:hover {
  background: #d00000;
  transform: translateY(-10px);
  transition: 0.3s ease;
}
.category:hover h3 {
  color: #fff;
    transform: translateY(-10px);
    
}
.category:hover p {
  color: #fff;
  transform: translateY(-10px);
}
.category:hover ul li {
  color: #fff;
  transform: translateY(-10px);
}
.category:hover ul li::before {
  color: #fff;

  transition: 0.3s ease-in-out;
}
.category:hover ul li strong {
  color: #ffffff;
}
.category:hover .badge {
  background-color: #fff;
  color: #000;
  transition: 0.3s ease-in-out;
}
.category:hover .price-tag {
  color: #fff;
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
}
.category:hover .price-community{
  color: #ff0000;
  transition: 0.3s ease-in-out;
  /* background-color: #fff; */
  box-shadow: 0 4px 10px rgba(208, 0, 0, 0.3);
}




.cta-container {
  text-align: center;
  margin-top: 80px;
}
.subinfo {
  text-align: center;
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}
.valorant-button {
  position: relative;
  padding: 16px 40px;
  background: transparent;
  border: 2px solid #d00000;
  color: #d00000;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  border-radius: 40px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}

.valorant-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 100%;
  background: #d00000;
  z-index: -1;
  transition: transform 0.4s ease;
  border-radius: 40px;
}

.valorant-button:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.valorant-button:hover {
  color: white;
  border-color: #d00000;
  box-shadow: 0 0 15px rgba(208, 0, 0, 0.3);
}

.valorant-button .btn-text {
  position: relative;
  z-index: 2;
}
.team-cta {
  display: block;
  margin-top: 0;
  padding: 20px;
}
.team-btn {
  padding: 10px 30px;
}


/* ------------ Peraturan --------- */
.const-4 {
  width: 70%;
  margin: auto;
  background: white;
  padding: 20px;
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}
.const-4 h1 {
  text-align: center;
  font-family: "Poppins", sans-serif;
  margin: 50px auto;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 90%;
  padding-bottom: 10px;
  border-bottom: #9999993b solid 1px;
}

.rule {
  margin-top: 10px;
  /* border: 1px solid #ccc; */
  border-radius: 5px;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.rule-title {
  font-size: 15px;
  cursor: pointer;
  /* background-color: #33c3f0; */
  color: #333;
  padding: 10px;
  border-radius: 5px;
  margin: 0;
  position: relative;
  padding-left: 30px;
  transition: color 0.2s ease;
  font-family: "Poppins", sans-serif;
}
.rule-title::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* biar vertikalnya tengah */
  font-weight: 500;
  color: #999;
  font-size: 17px;
  width: 20px;
  text-align: center;
  transition: 0.3s ease;
}
.rule-title.active {
  color: #d00000;
}
.rule-title.active::before {
  content: "−"; /* simbol jadi minus pas aktif */
  color: #d00000;
}

.rule-title:hover {
  color: #d00000;
}

.rule-description {
  display: none;
  padding: 10px;
  font-size: 13px;
  color: #666;
}
.rule-description p {
  padding-left: 20px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-top: 0;
}
.rule-description.show {
  animation: fade 0.2s ease-in-out;
}
.sub-list {
  list-style-type: disc;
  margin: 5px;
}
.rule-description ul {
  list-style-type: decimal;
}
.rule-description ul li {
  font-family: "Poppins", sans-serif;
  padding: 5px;
  margin-left: 15px;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  /* word-spacing: 2px; */
  margin-top: 0;
  text-align: justify;
}
.rule-description ul li a {
  text-decoration: none;
  color: #666;
  animation: colorShift 3s infinite ease-in-out;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.rule-description ul li a:hover {
  color: #486aff;
}

/* ---------------------FAQ--------- */

.faq-wrapper {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: "Segoe UI", sans-serif;
}

.faq-container {
  width: 70%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  transition: 0.4s ease;
}

.faq-left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  position: relative;
  margin-top: 0;
}
.faq-tagline {
  font-style: italic;
  color: #999;
  margin-top: 10px;
  font-size: 0.95rem;
}

.faq-left h2 span {
  color: #d62828;
  font-weight: bold;
}

.faq-left p {
  font-style: italic;
  color: #999;
  margin-top: 10px;
  font-size: 0.95rem;
}
.faq-illustration {
  width: 200px;
  margin-bottom: 20px;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  /* border-radius: 8px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  border-left: 4px solid transparent;
  /* transition: 0.3s ease; */
 
}

.faq-item.open {
  border-left-color: #d62828;
  transition: border-color 0.3s ease-in-out;
}
.faq-question .arrow {
  transition: transform 0.4s ease;
  font-size: 1.5rem;
}
.faq-item.open .arrow {
  transform: rotate(90deg);
}
.faq-regs {
  text-decoration: none;
  color: red;
  transition: 0.2s ease;
}
.faq-regs:hover {
  color: #888;
}

.faq-item.open .faq-question {
  color: red;
}

.faq-question {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #222;
  transition: color 0.3s ease;
  cursor: pointer;
}
.faq-question:hover {
  color: red;
}
.faq-question .title-question {
  font-size: 16px;
  /* font-weight: 600; */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  /* transition: all 0.4s ease; */
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}
.faq-answer a {
  text-decoration: none;
  color: red;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fade 0.5s ease-in-out;
  padding: 10px 20px 20px;
  max-height: 300px;
  opacity: 1;
  text-align: justify;
}

/* ------footer ------- */
.footer {
  background: #1e1e1e;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.footer-logo {
  width: 250px;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
  justify-content: center;
  text-align: center;
}
.footer-image{
  display: block;
  text-align: center;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col h5 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin: 6px 0;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff0000;
}
  h4.color-change {
    color: red;
}

.social-icons a {
  color: #fff;
  font-size: 26px;
  margin-right: 12px;
}
.social-icons i {
  transition: color 0.3s ease;
}

.social-icons a:hover .fa-instagram { 
  color: #e1306c; 
}
.social-icons a:hover .fa-whatsapp {
   color: #25d366;
   
   }
.social-icons a:hover .fa-youtube {
   color: #ff0000; 
  }

/* Footer bawah */
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.footer-bottom p {
  color: #fff;
}

.footer-address {
  margin-bottom: 15px;
 
}

.footer-address p {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 0;
}

.footer-address i {
  font-size: 16px;
  color: #fff;
  margin-right: 5px;
  transition: color 0.3s ease;
}
.footer-address:hover i{
  color: 	#4a80f5;
}






/* Media queerry */

@media screen and (max-width: 1366px) {
  nav a{
   font-size: 14px;
   padding: 0 15px;
  }
  .language-selected {
   font-size: 14px; 
  }
  .language-selected:before {
    width: 25px;
    height: 25px;
  }
  .language-selected ul li {
    font-size: 14px;
  }
  .info-section {
    width: 90%;
  }
  .marathon-categories{
    width: 90%;
  }
  .container {
    width: 90%;
  }
  .const-4 {
    width: 90%;
  }
  .faq-container {
    width: 90%;
  }
  .info-card {
    /* background: #fafafa; */
    padding: 20px 15px;
    width: 220px;
  }
  
}



@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
  }
  
  .image-section img{
    clip-path: none;
    width: 100%;
    height: 100%;
    object-fit:cover;
  }
  /* .image-section img:hover {
    clip-path: none;
    -webkit-clip-path: none;
  } */
  
  .rows {
    flex-direction: column;
  }
  .image-section {
    padding: 18px;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .image-section img {
    width: 100%;
    height: 250px;
    margin: 0 auto;
  }
  .text-section {
    margin: 20px;
    justify-content: center;
  }
  .rows {
    flex-direction: column;
  }

  .text-section {
    order: 2;
  }
  .tambahanDalam {
    text-align: center;
    width: 100%;
  }
  .card {
    /* padding: 0; */
  }

  .card h3 {
    font-size: 24px;
  }
  .card p {
    font-size: 16px;
    text-align: left;
  }
  .const-4 {
    width: 100%;
  }
  .info-section {
    width: 100%;
  }
  .marathon-categories {
    width: 100%;
  }
  .category-wrapper-komunitas{
    max-width: 100%;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category p {
    font-size: 20px;
  }
  .badge {
    font-size: 13px;
  }

  .layar-dalam {
    width: 90%;
  }
  nav .menu ul {
    display: none;
    margin-top: 60px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  nav .menu ul li {
    width: 100%;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    line-height: 40px;
  }
  nav .menu ul li a {
    color: #333;
  }
  nav {
    width: 100%;
  }
  nav a {
    font-size: 12px;
  }
  nav img {
    width: 100%;
    height: 100%;
  }
  .countdown-deco {
    width: 80px;
  }
  .faq-container{
    width: 100%;;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-col {
    margin-bottom: 20px;
  }
}

/* swiper slider  */
@media screen and (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button {
    display: none;
  }

  .containerrr .popup-image span {
    top: 5px;
    right: 5px;
    font-size: 50px;
  }

  .columns {
    width: 100%;
  }
  .heading {
    font-size: 2em;
  }
  div.swiper-slider-content .slider-title {
    font-size: 2.5rem;
  }
  div.swiper-slider-content .span {
    font-size: 2.5rem;
  }

  div.swiper-slider-content .kaerindo-judul span {
    font-size: 2.5rem;
  }
  div.swiper-slider-content .span-class {
    font-size: 2.5rem;
  }
  div.swiper-slider-content .slider-description {
    font-size: 15px;
    padding: 10px 50px;
    width: 50ch;
  }
  div.swiper-slider-content .slider-description.angkaEvent {
    font-size: 26px;
  }
  div.swiper-slider-content .slider-action {
    font-size: 0.8rem;
    padding: 0.4rem 2rem;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .kaerindo p {
    width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 400px) {
  div.swiper-slider-content .slider-title {
    font-size: 2rem;
  }
  div.swiper-slider-content .slider-title.kaerindo-judul {
    font-size: 1.5rem;
  }
  div.swiper-slider-content .slider-title.kaerindo-judul span {
    font-size: 1.5rem;
  }
  div.swiper-slider-content .span-class {
    font-size: 2rem;
  }
  div.swiper-slider-content .slider-description {
    font-size: 15px;
    padding: 10px 50px;
    width: 50ch;
  }
  div.swiper-slider-content .slider-description.angkaEvent {
    font-size: 20px;
  }
  div.swiper-slider-content .slider-title span {
    font-size: 2rem;
  }
  div.swiper-slider-content .slider-action {
    font-size: 0.8rem;
    padding: 0.3rem 2rem;
  }
  .layar-dalam {
    width: 90%;
  }
}

@media (max-width: 800px) {
  .hideOnMobile {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .sidebar {
    width: 200px;
    top: 0;
    right: 0;
    margin: 0;
  }

  .sidebar.show {
    right: 0;
    top: 0;
  }
  .nav-bawah {
    width: 90%;
  }
  nav {
    width: 100%;
  }
  nav img {
    width: 100%;
    height: 100%;
  }

  .language.hide {
    display: none;
  }
  .nav-bawah .language {
    display: none;
  }
  .sidebar .language {
    margin: 0;
    padding: 0;
  }

  .question h3 {
    font-size: 19px;
  }
  .const-4 {
    width: 100%;
  }
  .const-4 h1 {
    font-size: 28px;
  }
  .container {
    width: 100%;
  }
  .container h1 {
    font-size: 24px;
  }

  .image-section {
    width: 100%;
    height: 100%;
    padding: 10px;
    margin: 0;
  }
  .image-section img {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .rows {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .text-section {
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
  }
  .faqUtama {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq {
    width: 100%;
  }
  .faq-left h2 {
    font-size: 2rem;
  }
  .faq h3 {
    font-size: 15px;
  }

  .answer p {
    font-size: 14px;
  }
  .marathon-categories {
    width: 100%;
  }
  .category {
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.3s ease; */
  }
  .category h3 {
    font-size: 28px;
  }
  .category p {
    font-size: 13px;
  }
  .category strong {
    min-width: 50px;
  }
  .category ul li {
    font-size: 13px;
    margin: 0;
    text-align: justify;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }

  .faq-left {
    text-align: center;
  }
  .countdown {
    gap: 30px;
  }

  .time-box {
    width: 90px;
    padding: 20px 15px;
  }

  .time-box h1 {
    font-size: 42px;
  }

  .time-box p {
    font-size: 13px;
  }
  .judulUtama {
    font-size: 24px;
  }
  .info-section .section-title {
    font-size: 24px;
  }

  .info-icon i {
    font-size: 3.5rem;
    cursor: pointer;
  }
  .info-icon {
    gap: 10px;
  }
  .countdown-wrapper {
    margin-top: 0;
    padding-top: 30px;
  }
  .countdown-deco {
    display: none;
  }
  .countdown-heading {
    display: block;
    font-size: 17px;
    margin-top: 0;
  }

  .rule h3 {
    font-size: 13px;
  }
  .rule-description ul li .sublist {
    padding: 0;
    margin: 0;
  }
  .faq-container {
    grid-template-columns: 1fr;
  }
  .faq-container {
    width: 100%;
  }
  .faq-answer {
    font-size: 14px;
  }
  .faq-question .title-question {
    font-size: 15px;
  }
  .card p {
    text-align: justify;
    font-size: 13px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-col {
    margin-bottom: 20px;
  }

}

@media (max-width: 400px) {
  .sidebar {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .menu-button {
    display: block;
  }

  .sidebar a {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0;
  }
  nav {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .nav-bawah {
    top: -80px;
    padding: 0;
    width: 100%;
  }
  nav img {
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .sidebar .language-selected {
    position: relative;
  }
  .sidebar .language {
    margin: 0 auto;
    width: 20%;
    text-align: center;
    justify-content: center;
  }
  .const-4 {
    width: 100%;
  }
  .container {
    width: 100%;
  }

  .rule-description p {
    font-size: 12px;
  }
  .rule-description ul li {
    font-size: 12px;
  }
  .image-section {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .image-section img {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .rows {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .text-section {
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
  }
  .faqUtama {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .faq {
    width: 100%;
  }
  .faq h3 {
    font-size: 14px;
  }
  .answer p {
    font-size: 13px;
  }
  .card h3 {
    font-size: 17px;
  }
  .card p {
    font-size: 12px;
  }
  .marathon-categories {
    width: 100%;
  }
  .nav-bawah {
    top: -100px;
  }
}

@media (max-width: 500px) {
  .countdown {
    /* flex-direction: column; */
    align-items: center;
    gap: 20px;
  }

  .time-box {
    width: 70%;
    padding: 8px 10px;
  }

  .time-box h1 {
    font-size: 30px;
  }

  .time-box p {
    font-size: 12px;
  }
  .swiper-tampilan-depan {
    height: 80vh;
  }
  .price-tag{
    font-size: 26px;
    padding: 0px 20px;
    border-radius: 24px;
    margin: 0 auto;
  }
  .price-community{
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 10px;
  }
  .image-section img {
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
    -webkit-clip-path: polygon(
      75% 0%,
      100% 50%,
      75% 100%,
      0% 100%,
      25% 50%,
      0% 0%
    );
  }
  nav a {
    font-size: 16px;
  }
  .language-selected {
    font-size: 16px; 
   }
   .language-selected ul li {
     font-size: 16px;
   }
 
}

/* @media (prefers-reduced-motion: no-preference) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes colorShift {
  0% {
    color: #d62828;
    border-color: #d62828;
  }
  25% {
    color: #ff3333;
    border-color: #ff3333;
  }
  50% {
    color: #830000;
    border-color: #830000;
  }
  75% {
    color: #720000;
    border-color: #720000;
  }
  100% {
    color: #d62828;
    border-color: #d62828;
  }
}
@keyframes run-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Glowing pulse merah */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 0px #d62828;
  }
  50% {
    text-shadow: 0 0 10px #d62828, 0 0 20px #d62828aa;
  }
  100% {
    text-shadow: 0 0 0px #d62828;
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 0, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 60, 0);
  }
}


@keyframes zoomSlow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

@keyframes pulseGlowwed {
  0%, 100% {
    opacity: 0.2;
    box-shadow: 0 0 8px rgba(255, 0, 60, 0.2);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.7), 0 0 30px rgba(255, 0, 60, 0.4);
  }
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}