/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to bottom, #000000, #98540b);
  color: #000;
  padding: 20px;
}

/* ===== HEADER ===== */
header {
  text-align: center;
  margin-bottom: 20px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.article-page h1 {
  color: #ffffff;
}


h2 {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: #24278a;
  margin-bottom: 10px;
}

/* ===== SLIDER ===== */
.slider {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.slider img {
  width: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.slider img.active {
  display: block;
  position: relative;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.cta-buttons a {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 12px 100px;
  text-decoration: none;
  border-radius: 25px;
  background: linear-gradient(270deg, #002fff, #6c0101, #2f1a69, #021147, #1c1c1c);
  background-size: 600% 600%;
  animation: animateGlow 2s linear infinite;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  transition: transform 0.3s ease;
}

.cta-buttons a:hover {
  transform: scale(1.05);
}

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

/* ===== ANCHOR LINKS ===== */
.anchor-links {
  text-align: center;
  margin-bottom: 20px;
}

.anchor-links a {
  margin: 0 10px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: underline;
  font-weight: 500;
}

/* ===== PROMO CONTAINER ===== */
#promo {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: linear-gradient(to bottom, #f8f8f0, #c9771f);
  border-radius: 12px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.promo-image {
  flex: 0 0 120px;
}

.promo-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.promo-text {
  flex: 1;
}

/* ===== KEUNGGULAN CONTAINER ===== */
.advantages-container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: linear-gradient(to bottom, #f8f8f0, #c9771f);
  border-radius: 12px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.advantages-container h2 {
  text-align: center;
  color: #ff0000;
  margin-bottom: 25px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.advantage-box {
  background: linear-gradient(to bottom, #ffffff, #c9771f);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  color: #000;
}

.advantage-box p {
  font-size: 15px;
  line-height: 1.5;
}

/* ===== LEGAL CONTAINER ===== */
.legal-container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background: linear-gradient(to bottom, #f8f8f0, #c9771f);
  border-radius: 12px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.legal-container p,
.legal-container ul {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}

.legal-container ul {
  padding-left: 20px;
}

.legal-container li {
  margin-bottom: 10px;
}

.home-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(to bottom, #f8f8f0, #c9771f);
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0px 0px 5px #f00;
}

/* ===== FOOTER ===== */
footer {
  width: 100vw;
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #000;
  background: linear-gradient(to bottom, #f8f8f0, #c9771f);
  padding: 10px 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}

footer a {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
  margin: 0 5px;
}

footer a:hover {
  color: #0008ff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  h1 { font-size: 22px; }
  h2 { font-size: 18px; }
  h3 { font-size: 16px; }
  h4 { font-size: 15px; }

  .cta-buttons a {
    font-size: 14px;
    padding: 10px 20px;
  }

  #promo {
    flex-direction: column;
    text-align: center;
  }

  .promo-image {
    width: 100%;
  }

  .legal-container {
    padding: 15px;
  }
}
/* ===== SEO ARTICLE LINK SECTION ===== */
.seo-article-link {
  max-width: 1000px;
  margin: 10px auto;
  padding: 20px 25px;
  background: linear-gradient(to bottom, #fff9d1, #c9771f);
  border-radius: 12px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.seo-article-link h2 {
  font-size: 24px;
  color: #d40000;
  margin-bottom: 10px;
}

.seo-article-link p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.seo-article-link a {
  color: #0000ee;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.seo-article-link a:hover {
  color: #d40000;
}
