body {
  border-radius: 10px;
  margin: -10px;
  margin-top: -40px;
  margin-bottom: 10px;
  font-family: "Segoe UI", sans-serif;
  background: url("images/background1.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
}

header {
  height: 0px;
  background: rgba(0, 0, 0, 0);
  padding: 20px 30px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  margin-bottom: 5px;
}

.logo {
  height: 80px;
  width: 70px;
  margin-top: -45px;
  margin-bottom: 0px;
}

h1 {
  font-family: "Sofia", sans-serif;
  font-size: 25px;
  text-shadow: 0px 0px 0px #ababab;
  margin-top: -5px;
  color: #ffffff;
}

.small {
  height: 40px;
  font-size: 25px;
}

.container {
  max-width: 900px;
  font-size: large 15px;
  margin: auto;
  padding: 0px;
  background: rgba(0, 0, 0, 0.726);
  border-radius: 12px;
  box-shadow: 0 0 20px #000000;
}

.form-box {
  display: none;
  margin: 20px 0;
  padding: 15px;
  background: rgb(0, 0, 0);
  border-radius: 10px;
}

input {
  display: block;
  width: 90%;
  padding: 10px;
  margin: 10px auto;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

.welcome {
  background: rgba(0, 0, 0, 0.493);
  max-width: 800px;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.btn {
  background: rgb(0, 255, 34);
  color: #000000;
  padding: 20px 30px 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0);
}

.btn1 {
  background: rgb(0, 255, 34);
  color: #000000;
  padding: 20px 37px 20px;
  font-size: 25px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0);
}

a {
  text-decoration: none;
  font-size: 25px;
  color: #ffffff;
}

@media (max-width: 766px) {
  .animated-button {
    padding: 12px 30px;
    margin: 12px 12px;
    min-width: 120px;
  }
}

style {
  opacity: 1;
  visibility: visible;
  animation: auto ease 0s 1 normal none running none;
}

div {
  display: block;
  unicode-bidi: isolate;
}

.animated-button {
  background: linear-gradient(to bottom, #ff0000 25.41%, #ac1414 100%);
  display: inline-block;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  overflow: hidden;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  min-width: 85px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: inset 0 2px 0 rgb(255, 0, 0), 0 2px 2px rgba(255, 0, 0),
    0 2px 4px 1px rgba(255, 0, 0);
  box-shadow: inset 0 2px 0 rgba(255, 0, 0), 0 2px 2px rgba(255, 0, 0),
    0 2px 4px 1px rgba(255, 0, 0);
  border-radius: 30px;
  font-family: Convergence, sans-serif;
}

.animated-button:hover {
  background: #ff0000;
  color: #000000;
}

.animated-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
}

.animated-button span {
  position: absolute;
}

.animated-button span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 200, 213, 0)),
    to(#ff0000)
  );
  background: linear-gradient(to left, rgba(0, 200, 213, 0), #ffffff);
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.animated-button span:nth-child(2) {
  top: 0;
  right: 0;
  height: 100%;
  width: 3px;
  background: webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 200, 213, 0)),
    to(#ffffff)
  );
  background: linear-gradient(to top, rgba(0, 200, 213, 0), #ffffff);
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.animated-button span:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 200, 213, 0)),
    to(#ffffff)
  );
  background: linear-gradient(to right, rgba(0, 200, 213, 0), #ffffff);
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.animated-button span:nth-child(4) {
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 200, 213, 0)),
    to(#ffffff)
  );
  background: linear-gradient(to bottom, rgba(0, 200, 213, 0), #ffffff);
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}

@media screen and (min-width: 767px) {
  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }

  #logo-desktop {
    margin: 10px 0px 0px 40px;
  }

  #btn-head {
    text-align: right;
    margin: 0px 40px 0px 0px;
  }

  .animated-button {
    padding: 12px 48px;
    margin: 8px 10px;
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.jackpot-box {
  margin-top: 30px;
}

.jackpot-marquee {
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  color: #ffffff;
  font-weight: bold;
}

.jackpot-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.slider {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  position: relative;
}

.slide {
  display: none;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px #ff010100;
}

.slide.active {
  display: block;
}

.button-box {
  margin: 30px 0;
}

.button-box .btn {
  margin: 10px;
}

em {
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: #cecbcb; /* Abu-abu halus */
  background-color: #1a1a1a00;
  padding: 20px;
  border-radius: 5px;
  max-width: 600px;
}

em::before {
  content: "*";
  color: #f0f0f0;
  font-weight: bold;
  margin-right: 4px;
}

body {
  background-color: #000000;
  font-family: Arial, sans-serif;
  padding: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  font-size: 13px;
  gap: 20px;
  margin-top: 10px;
}

.footer-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 15px;
  margin-top: 40px;
}
