@import url('[https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap](https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap)');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

body {
  background-color: #030303;
  color: #ffffff;
}

/* --- NAVBAR BASE --- */
.navbar {
  background-color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 20px;
  border-bottom: 2px solid #161616;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  /* Mobile default: 3 Kolom Seimbang (Kiri, Tengah, Kanan) */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

#main-content {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- KIRI: HAMBURGER --- */
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.hamburger-icon {
  width: 24px;
  height: 24px;
  /* Mengubah warna SVG eksternal hitam/gelap menjadi putih */
  filter: invert(1); 
  transition: transform 0.2s ease;
}

.hamburger-btn:hover .hamburger-icon {
  transform: scale(1.08);
}

/* --- TENGAH: LOGO --- */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* --- KANAN: NAV LINKS & BUTTON --- */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

/* Sembunyikan 'About' khusus di Mobile */
.nav-about {
  display: none; 
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-about:hover {
  color: #ffc107;
}

/* Tombol Akses Utama (CTA) */
.btn-cta {
  background-color: #ffc107; /* Warna Kuning terang sesuai gambar */
  color: #000000;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-cta:hover {
  background-color: #e0a800;
  transform: translateY(-1px);
}

/* --- MOBILE DRAWER MENU --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: #111111;
  z-index: 2000;
  padding: 40px 24px;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

.mobile-drawer.active {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  margin-top: 40px;
}

.drawer-links li {
  margin-bottom: 20px;
}

.drawer-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- RESPONSIVE: TABLET & DESKTOP (> 768px) --- */
@media (min-width: 769px) {
  .navbar-container {
    /* Tampilan Desktop: Hamburger disembunyikan, layout lebih renggang */
    grid-template-columns: 1fr auto 1ft;
  }

  .nav-center {
    justify-content: flex-start;
  }

  /* Tampilkan menu 'About' di Tablet & Desktop */
  .nav-about {
    display: inline-block;
    font-weight: 700; 
  }

  .btn-cta {
    font-size: 0.85rem;
    padding: 12px 24px;
  }
}









.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffc107;
  border: 1px solid #ffc107;
  border-radius: 50px;
  background: rgba(214, 180, 252, 0.05);
  box-shadow: 0 0 15px rgba(214, 180, 252, 0.15);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  font-style: italic;
}


/* Section Container */
.preset-collection-section {
  background-color: #030303;
  padding: 50px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
}

.collection-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.collection-header {
  text-align: center;
  margin-bottom: 30px;
}

.collection-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.collection-title {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.5px;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}

/* Product Grid (3 Columns on Desktop) */
.preset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Product Card */
.preset-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.preset-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Cover Image Box (3:2 Aspect Ratio) */
.card-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #111111;
  padding: 10px;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

/* Card Content Body */
.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.preset-name {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.3px;
}

/* Star Rating Element */
.preset-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.preset-rating .stars {
  color: #ffc107; /* Yellow Accent */
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.preset-rating .rating-count {
  font-size: 1rem;
  color: #888888;
  font-weight: 500;
}

/* Download CTA Button */
.download-btn {
  width: 100%;
  background: #ffc107;
  color: #030303;
  border: 1px solid #ffc107;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.download-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #030303;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .preset-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .preset-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .preset-collection-section {
    padding: 30px 16px;
  }

  .collection-title {
    font-size: 1.5rem;
  }

  .preset-name {
    font-size: 2rem;
  }
}










/* Layout Section */
.video-tutorials-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.video-header {
    text-align: center;
    margin-bottom: 36px;
}

.video-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Grid 2 Kartu Video */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card Item */
.video-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #262626;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
    border-color: #444444;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

/* Thumbnail Wrap & Status Overlay */
.thumbnail-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Aspect Ratio 16:9 */
    overflow: hidden;
    background-color: #1a1a1a;
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) opacity(0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .thumbnail-img {
    filter: grayscale(10%) opacity(0.85);
    transform: scale(1.03);
}

.status-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Animasi Titik Berkedip (Pulse) */
.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #ffc107;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 193, 7, 0.4);
    animation: pulseAnimation 1.6s infinite;
}

@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.8);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Video Info Body */
.video-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-card-desc {
    font-size: 0.88rem;
    color: #888888;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Component Progress Bar */
.progress-container {
    margin-top: auto;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888888;
    margin-bottom: 8px;
}

.progress-value {
    color: #ffc107;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4a000, #ffc107);
    border-radius: 10px;
}

/* Disabled Watch Button */
.watch-btn.disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    width: auto !important;
    max-width: max-content;
    background: #181818;
    color: #666666;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: not-allowed;
    white-space: nowrap;
}

/* Responsive HP */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-title {
        font-size: 1.6rem;
    }
}








/* Section Outer Container */
.profile-section {
  background-color: #030303;
  padding: 16px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
}

.profile-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Profile Card Container */
.profile-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease;
}

.profile-card:hover {
  border-color: rgba(255, 193, 7, 0.2);
}

/* Left Column: Photo Wrapper */
.profile-photo-wrapper {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.profile-card:hover .profile-photo {
  transform: scale(1.04);
}

/* Right Column: Information */
.profile-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.profile-header {
  margin-bottom: 12px;
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.profile-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffc107; /* Aksen Kuning */
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.profile-bio {
  font-size: 0.92rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

/* Social Buttons Row */
.profile-socials {
  display: flex;
  gap: 14px;
}

.profile-content .social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
}

.profile-content .social-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
}

.profile-content .social-btn svg {
  width: unset;
  height: unset;
}

/* Instagram Brand Styling Gradient */
.profile-content .instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25);
}

/* TikTok Brand Styling Color */
.profile-content .tiktok-btn {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.profile-content .tiktok-btn:hover {
  border-color: #25f4ee; /* Aksen Cyan khas TikTok */
}

/* Responsive Mobile & Tablet Layout */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    padding: 28px 20px;
    gap: 24px;
    text-align: center;
  }

  .profile-photo-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%; /* Dibuat bulat khusus mobile agar hemat tempat */
  }

  .profile-content {
    align-items: center;
    text-align: center;
  }

  .profile-name {
    font-size: 1.4rem;
  }

  .profile-socials {
    width: 100%;
    justify-content: center;
  }

  .social-btn {
    flex: 1;
    justify-content: center;
  }
}









/* Section Container */
.how-it-works-section {
  background-color: #030303;
  padding: 20px 16px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
}

.how-container {
  max-width: 1080px;
  margin: 0 auto;
}

/* Header */
.how-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}

/* 3-Column Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Individual Step Card */
.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

/* Big Number Accent */
.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffc107; /* Yellow Accent */
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

/* Body Content */
.step-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.step-text {
  font-size: 0.88rem;
  color: #888888;
  margin: 0;
  line-height: 1.55;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step-card {
    padding: 28px 24px;
  }

  .how-it-works-section {
    padding: 20px 16px;
  }

  .how-title {
    font-size: 1.5rem;
  }

  .step-number {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }
}







/* Section Container */
.faq-section {
  background-color: #030303;
  padding: 40px 16px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}

/* Accordion Wrapper */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Accordion Item Card */
.faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 193, 7, 0.3); /* Accent Border saat aktif */
}

/* Clickable Button Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #ffc107;
}

/* Plus/Minus Animated Icon */
.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #ffc107;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal Line */
.faq-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

/* Vertical Line */
.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

/* Rotate to minus icon when active */
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* Smooth Accordion Height Wrapper */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inner Answer Body */
.faq-answer {
  padding: 0 24px 22px 24px;
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.6;
  text-align: left;
}

.faq-answer p {
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .faq-section {
    padding: 20px 16px;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px 18px 20px;
    font-size: 0.85rem;
  }
}









/* Sticky Bar Fixed Outer Container */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(3, 3, 3, 0.95) 0%, rgba(3, 3, 3, 0.8) 70%, rgba(3, 3, 3, 0) 100%);
  backdrop-filter: blur(8px);
  pointer-events: none; /* Supaya area transparan tidak menghalangi klik ke konten belakang */
}

/* Inner Centered Container */
.sticky-bar-container {
  max-width: 480px; /* Lebar tombol yang pas untuk CTA */
  margin: 0 auto;
  pointer-events: auto; /* Mengembalikan interaksi khusus untuk tombol */
}

/* Download Button Styling */
.sticky-download-btn {
  width: 100%;
  background: #ffc107; /* Aksen Kuning Brand */
  color: #030303;
  border: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.25);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.sticky-download-btn:hover {
  background: #ffcd38;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 193, 7, 0.35);
}

.sticky-download-btn:active {
  transform: translateY(0);
}

/* Sticky Bar Initial State (Hidden) */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(3, 3, 3, 0.95) 0%, rgba(3, 3, 3, 0.8) 70%, rgba(3, 3, 3, 0) 100%);
  backdrop-filter: blur(8px);
  pointer-events: none;
  
  /* Animasi Sembunyi / Tampil */
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Active State saat Trigger Terlewati */
.sticky-bottom-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustment for Mobile */
@media (max-width: 600px) {
  .sticky-bottom-bar {
    padding: 12px 16px;
  }
  
  .sticky-download-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}










/* Styling Utama Footer */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-top: 2px solid #161616;
}

/* Layout Grid Kolom Utama */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Kolom Brand / Logo */
.footer-logo {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-logo img {
  width: 210px;
}

.footer-description {
  color: #cccccc;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  max-width: 500px;
}

/* Heading Kolom */
.footer-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Navigasi Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s ease;
  font-weight: 600;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Social Media Section */
.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons img {
  width: 32px;
}

.tiktok-btn {
  color: #f9f5f0;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f5f0;
  border-radius: 8px;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.social-btn svg {
  width: 32px;
  height: 32px;
}

.social-btn:hover {
  transform: translateY(-3px);
}

/* Bottom Bar / Copyright */
.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #333333;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
  font-style: italic;
}

.brand-highlight a {
  color: #ffc800;
  font-weight: 700;
  text-decoration: none;
}

/* Responsif Mobile & Tablet */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center; /* Membuat semua teks & heading rata tengah */
  }

  /* Mengatur ikon sosmed agar berada di tengah */
  .footer-container .social-icons {
    justify-content: center;
  }

  /* Mengatur deskripsi agar margin-nya auto untuk presisi tengah */
  .footer-description {
    margin: 0 auto;
  }
}









/* Pricing Area */
.price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.original-price {
  color: #666666;
  text-decoration: line-through;
  font-size: .85rem;
  font-weight: 600;
}

.current-price {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.countdown-wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffc800;
  letter-spacing: 1px;
  margin-bottom: 5px;r
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #1a1a1a;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #333333;
}

.time-block {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.time-block span {
  font-family: 'Imbue', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 18px;
  text-align: center;
}

.time-block small {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffc800;
}

.time-separator {
  color: #555555;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 2px;
}