/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(to bottom, #450006, #1a0002);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.header {
  background: rgba(165, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.logo {
  height: 2.5rem;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  color: gold;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: gold;
}

.header-buttons {
  display: flex;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #060404;
  padding: 1rem;
  gap: 0.5rem;
}

.nav-mobile.active {
  display: flex;
}

/* Button Styles */
.btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(to right, #b1a10f, #b1a10f);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(to right, #b91c1c, #7f1d1d);
}

.btn-outline {
  background: rgba(206, 7, 7, 0.856);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-accent {
  background: linear-gradient(to right, #dc2626, #991b1b);
  color: #fff;
}

.btn-accent:hover {
  background: linear-gradient(to right, #b91c1c, #7f1d1d);
  transform: scale(1.02);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 1rem;
  text-align: center;
  overflow: hidden;
}

/* Layer background animasi */
.hero {
  position: relative;
  width: 100%;       /* atau bisa tentukan fixed, misal 1200px */
  max-width: 1200px; /* optional, sesuai ukuran gambar terbesar */
  aspect-ratio: 16/9; /* sesuaikan dengan rasio gambar utama */
  margin: 0 auto;
  overflow: hidden;  /* supaya zoom tidak keluar area hero */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: contain;   /* pas sesuai ukuran gambar */
  background-repeat: no-repeat;
  background-position: center;
  animation: slideBackground 15s infinite;
  z-index: -1;
  transition: background-image 1s ease-in-out;
}

/* Zoom in/out halus */
@keyframes slideBackground {
  0% {
    background-image: url("https://imgku.it.com/images/2025/12/06/lucky-cuan.webp");
    transform: scale(1);
    opacity: 0.8;
  }
  33% {
    background-image: url("https://imgku.it.com/images/2025/12/06/LP-AI-118.webp");
    transform: scale(1.1);
    opacity: 0.9;
  }
  66% {
    background-image: url("https://imgku.it.com/images/2025/12/06/bonus-slot.webp");
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    background-image: url("https://imgku.it.com/images/2025/12/06/LP-AI-118.webp");
    transform: scale(1);
    opacity: 0.8;
  }
}




.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

/* Welcome Section */
.welcome-section {
  padding: 4rem 1rem;
  background: #1c0003;
}

.welcome-box {
  display: flex;
  gap: 1rem;
  background: rgba(165, 0, 0, 0.2);
  border: 1px solid rgba(165, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

.welcome-icon {
  flex-shrink: 0;
  color: #ff6b6b;
}

.welcome-text {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.8;
}

/* Banner Section */
.banner-section {
  padding: 2rem 1rem;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.banner-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 1;
  cursor: pointer;
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.banner-item:hover img {
  transform: scale(1.05);
}

/* Providers Section */
.providers-section {
  padding: 3rem 1rem;
  background: rgba(165, 0, 0, 0.3);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.view-all {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.view-all:hover {
  color: #fff;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.provider-item {
  background: #1a0002;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.provider-item:hover {
  border-color: #ff6b6b;
  background: rgba(26, 0, 2, 0.8);
}

.provider-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.provider-item:hover img {
  transform: scale(1.1);
}

/* Features Section */
.features-section {
  padding: 4rem 1rem;
  background: #1c0003;
}

.section-title-center {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: rgba(165, 0, 0, 0.2);
  border: 1px solid rgba(165, 0, 0, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #ff6b6b;
  background: rgba(165, 0, 0, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Payment Section */
.payment-section {
  padding: 3rem 1rem;
  background: rgba(165, 0, 0, 0.2);
}

.payment-title {
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.payment-item {
  background: #fff;
  border-radius: 0.375rem;
  padding: 0.75rem;
  width: 7rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.payment-item:hover {
  transform: scale(1.05);
}

.payment-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Footer */
.footer {
  background: #060404;
  padding: 3rem 1rem 2rem;
  border-top: 1px solid #991b1b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 3rem;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-heading {
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  list-style: none;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Simple Header & Footer */
.header-simple {
  background: #060404;
  padding: 1rem;
  border-bottom: 1px solid #991b1b;
}

.footer-simple {
  background: #060404;
  border-top: 1px solid #991b1b;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

.footer-links-horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links-horizontal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-horizontal a:hover {
  color: #ff6b6b;
}

.footer-copyright {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Page Styles */
.page-header {
  max-width: 56rem;
  margin: 3rem auto;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Contact Page */
.contact-page {
  padding: 2rem 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

.contact-info-card,
.contact-form-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(165, 0, 0, 0.3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background: rgba(165, 0, 0, 0.3);
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: #ff6b6b;
  flex-shrink: 0;
}

.contact-label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-value:hover {
  color: #ff6b6b;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(165, 0, 0, 0.3);
  border-radius: 0.5rem;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #ff6b6b;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* FAQ Section */
.faq-section {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(165, 0, 0, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  background: rgba(165, 0, 0, 0.2);
  transition: background-color 0.3s;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: rgba(165, 0, 0, 0.3);
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Privacy Page */
.privacy-page {
  padding: 2rem 1rem;
}

.privacy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: rgba(165, 0, 0, 0.3);
  border-radius: 50%;
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.content-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(165, 0, 0, 0.3);
  max-width: 56rem;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-intro {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.section-icon-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.icon-badge {
  background: rgba(165, 0, 0, 0.3);
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #ff6b6b;
  flex-shrink: 0;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.section-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.privacy-list li {
  margin-bottom: 0.5rem;
}

.privacy-contact {
  background: rgba(165, 0, 0, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(165, 0, 0, 0.3);
}

.contact-info-compact {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-compact a {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-compact a:hover {
  color: #ff8888;
}

/* About Page */
.about-page {
  padding: 2rem 1rem;
}

.about-intro-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(165, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.section-heading-large {
  font-size: 1.875rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-feature-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(165, 0, 0, 0.3);
}

.feature-icon-large {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.feature-title-large {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.75rem;
}

.why-choose-section {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(165, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-choose-item {
  display: flex;
  gap: 1rem;
}

.why-choose-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(165, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.why-choose-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.5rem;
}

.why-choose-description {
  color: rgba(255, 255, 255, 0.7);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mission-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(165, 0, 0, 0.3);
}

.mission-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.mission-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.about-cta {
  background: linear-gradient(to right, rgba(153, 27, 27, 0.5), rgba(127, 29, 29, 0.5));
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  border: 1px solid rgba(153, 27, 27, 0.5);
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .providers-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .welcome-text {
    font-size: 1rem;
  }

  .banner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .providers-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .providers-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}