* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: url('https://img-ten-nu.vercel.app/akr/backgrd.webp') center/cover no-repeat fixed;
  color: #fff;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(59, 59, 59, 0.466);
  z-index: -1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}
.hero {
  padding: 50px 15px;
  text-align: center;
  position: relative;
  animation: fadeIn 1.5s ease-in;
}
.hero h2, .hero p, .cta-button {
  position: relative;
  z-index: 1;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: gold;
  animation: fadeInUp 1s ease-out;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #ddd;
  animation: fadeInUp 1.3s ease-out;
}
.cta-button {
  display: inline-block;
  margin-top: 25px;
  background: gold;
  color: black;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1.5s ease-out;
}
.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px gold;
}
.features-static {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.feature-static {
  flex: 1 1 300px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-static img {
  max-width: 100%;
  border-radius: 8px;
}
.feature-static:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px gold;
}
.container.checklist {
  display: flex;
  justify-content: center;
  margin: 50px auto;
  padding: 20px;
}

.checklist-box {
  padding: 30px;
  max-width: 750px;
  width: 100%;
  animation: fadeInUp 1s ease-in-out;
  position: relative;
  overflow: hidden;
}

.checklist-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  animation: pulseGlow 5s infinite;
}

.checklist-title {
  font-size: 1.8rem;
  color: #00ffff;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 0 0 10px #00faff;
}

.checklist-title span {
  color: #ffdb70;
  text-shadow: 0 0 15px #ffdb70;
}

.checklist-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-list li {
  font-size: 1.15rem;
  color: #eee;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  border-left: 4px solid #00ffff;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 8px rgba(0, 255, 255, 0.1);
}

.checklist-list li:hover {
  background: rgba(0, 255, 255, 0.05);
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.checklist-list li .icon {
  font-size: 1.4rem;
  margin-right: 12px;
  color: #00ffff;
  animation: glowIcon 2s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.1;
  }
  50% {
    transform: translate(50px, 50px);
    opacity: 0.2;
  }
}

@keyframes glowIcon {
  0% {
    text-shadow: 0 0 5px #00ffff;
  }
  100% {
    text-shadow: 0 0 15px #00ffff;
  }
}
.banner-buttons {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.banner-buttons a {
  flex: 1;
  padding: 12px 0;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.btn-masuk {
  background: red;
  color: white;
  border-bottom-left-radius: 10px;
}
.btn-daftar {
  background: yellow;
  color: black;
  border-bottom-right-radius: 10px;
}
.btn-masuk:hover {
  background: #e60000;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
}
.btn-daftar:hover {
  background: #ffdb00;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}
.img-1 {
  max-width: 100%;
  height: auto;
  display: center;
}
footer {
  margin-top: 30px;
  padding: 20px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  animation: fadeInUp 1s ease-in;
}
footer .footer-logo {
  font-size: 1.5rem;
  color: gold;
  font-weight: bold;
  margin-bottom: 10px;
}
footer .footer-social {
  margin-bottom: 15px;
}
footer .footer-social a {
  margin: 0 10px;
  display: inline-block;
}
footer .footer-social img {
  width: 55px;
  height: 55px;
  filter: brightness(0.8);
  transition: 0.3s;
  background: #afafaf67;
}
footer .footer-social img:hover {
  filter: brightness(1.2);
  transform: scale(1.2);
}
footer .copyright {
  font-size: 0.8rem;
  color: #fffcfc;
}
.daftar-slot-Akar69 img {
  border-radius: 10px;
}
.daftar-slot-Akar69:hover {
  opacity: 0.3;
}
.daftar-slot-Akar69 {
  margin: 7px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
  animation: shadow 2s infinite alternate;
}
.Slot-Akar69 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.faq-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 15px;
  background: #3030304d;
  border-radius: 10px;
  color: #fff;
}

.faq-container h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  text-align: left;
  padding: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  color: #0066ff;
}

.faq-answer {
  padding: 0 10px 10px 10px;
  display: none;
  font-size: 0.95rem;
  color: #eee;
  transition: max-height 0.3s ease;
}