
    * { margin: 0; padding: 0; box-sizing: border-box; outline: none !important; -webkit-tap-highlight-color: transparent; }
    
    html, body {
      background-color: #0b0d14;
      color: #f1f5f9;
      font-family: 'Plus Jakarta Sans', sans-serif;
      overflow-x: hidden;
      width: 100%;
      min-height: 100vh;
    }

    /* Background Ambient Glow */
    body::before {
      content: '';
      position: fixed;
      top: -10%; left: 50%;
      transform: translateX(-50%);
      width: min(600px, 90vw); height: min(600px, 90vw);
      background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, rgba(15, 17, 26, 0) 70%);
      z-index: -1;
      pointer-events: none;
    }

    .page-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      padding: 5rem 1.25rem 3rem 1.25rem;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      transition: all 0.3s ease;
    }

    /* --- TOP HEADER / MENU ATAS --- */
    .top-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: 65px;
      background: rgba(11, 13, 20, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1.5rem;
      z-index: 100;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      transition: all 0.3s ease;
    }

    .header-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 700;
      font-size: 1.3rem;
      background: linear-gradient(135deg, #fda4af, #f472b6, #c084fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-decoration: none;
      letter-spacing: -0.5px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .header-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #f1f5f9;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      text-decoration: none;
    }

    .header-btn:hover {
      background: rgba(244, 114, 182, 0.15);
      border-color: rgba(244, 114, 182, 0.3);
      color: #f472b6;
    }

    /* --- HERO CONTAINER & MULTICOLOR SHADOW --- */
    .hero-container {
      position: relative;
      width: 100%;
      margin-top: 0.5rem;
    }

    .hero-container::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 26px;
      background: linear-gradient(135deg, #ff007f, #00d2ff, #a855f7, #ff007f);
      background-size: 300% 300%;
      filter: blur(20px);
      opacity: 0.5;
      animation: rainbowShadow 6s ease infinite;
      z-index: 0;
    }

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

    .card-inner {
      position: relative;
      background: linear-gradient(145deg, rgba(30, 27, 46, 0.95) 0%, rgba(22, 20, 38, 0.98) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 3rem 1.5rem 2rem;
      text-align: center;
      z-index: 2;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .logo {
      position: absolute;
      top: -16px; left: 18px;
      width: 58px; height: 58px;
      background: linear-gradient(135deg, #e11d48, #a855f7);
      border-radius: 50%;
      border: 3px solid #0b0d14;
      z-index: 10;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Playfair Display', serif;
      font-style: italic; font-weight: 700; font-size: 1.5rem;
      color: #ffffff;
      box-shadow: 0 6px 15px rgba(225, 29, 72, 0.4);
      animation: floatLogo 3s ease-in-out infinite;
      transition: all 0.3s ease;
    }

    @keyframes floatLogo {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    .title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 5vw, 2.1rem);
      font-weight: 700; font-style: italic; margin-bottom: 0.6rem;
      background: linear-gradient(135deg, #fda4af, #f472b6, #c084fc);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    .user-count {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(244, 114, 182, 0.1);
      border: 1px solid rgba(244, 114, 182, 0.25);
      color: #f472b6; padding: 5px 14px; border-radius: 30px;
      font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem;
    }

    .description { color: #cbd5e1; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.25rem; }

    /* --- CATALOG / TEMPLATE SECTION --- */
    .catalog-section {
      width: 100%;
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1rem;
    }

    .step-box {
      background: linear-gradient(145deg, rgba(30, 27, 46, 0.6) 0%, rgba(22, 20, 38, 0.8) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1.1rem 1.25rem;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      backdrop-filter: blur(8px);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .step-box:hover {
      transform: translateY(-3px);
      border-color: rgba(244, 114, 182, 0.2);
    }

    .step-number {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, #e11d48, #a855f7);
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
    }

    .step-text h4 {
      font-size: 0.92rem;
      color: #f1f5f9;
      margin-bottom: 2px;
    }

    .step-text p {
      font-size: 0.77rem;
      color: #94a3b8;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: #f1f5f9;
      margin-top: 0.5rem;
    }

    .script-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .script-card {
      background: linear-gradient(145deg, rgba(30, 27, 46, 0.85) 0%, rgba(22, 20, 38, 0.95) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 22px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .script-card:hover {
      transform: translateY(-6px);
      border-color: rgba(244, 114, 182, 0.35);
      box-shadow: 0 16px 35px rgba(225, 29, 72, 0.18);
    }

    .script-thumbnail-wrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 180px;
      background: #161423;
    }

    .script-thumbnail {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .script-thumbnail.loaded {
      opacity: 1;
    }

    .script-card:hover .script-thumbnail {
      transform: scale(1.05);
    }

    .script-content {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .script-badge-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .script-tag {
      background: rgba(244, 114, 182, 0.1);
      color: #f472b6;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      border: 1px solid rgba(244, 114, 182, 0.2);
    }

    .script-stats {
      font-size: 0.75rem;
      color: #64748b;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .script-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #f1f5f9;
      margin-bottom: 6px;
    }

    .script-snippet {
      color: #94a3b8;
      font-size: 0.825rem;
      line-height: 1.5;
      margin-bottom: 1.25rem;
      flex-grow: 1;
    }

    .script-footer {
      display: flex;
      gap: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 1rem;
    }

    .btn-action {
      flex: 1;
      padding: 10px;
      border-radius: 12px;
      font-size: 0.825rem;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-preview {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #f1f5f9;
    }

    .btn-preview:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    .btn-use {
      background: linear-gradient(135deg, #e11d48, #a855f7);
      color: #fff;
      box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
    }

    .btn-use:active {
      opacity: 0.85;
    }

    /* --- SWIPER CARDS EFFECT SECTION (KATA MEREKA) --- */
    .reviews-wrapper {
      width: 100%;
      margin-top: 3rem;
    }

    .reviews-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem; 
      font-weight: 600;
      color: #f1f5f9; 
      text-align: center;
      margin-bottom: 1.25rem;
    }

    .swiper {
      width: 100%;
      height: auto;
      padding-bottom: 30px;
      max-width: 440px;
      margin: 0 auto;
    }

    .swiper-slide {
      background: linear-gradient(145deg, #242136 0%, #161423 100%);
      border: 1px solid rgba(244, 114, 182, 0.25);
      padding: 1.25rem;
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(225, 29, 72, 0.12);
      min-height: 150px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 1; 
    }

    .review-user-name {
      font-weight: 600;
      color: #f472b6;
      font-size: 0.95rem;
      margin-bottom: 2px;
    }

    .review-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .review-stars {
      color: #fbbf24;
      font-size: 0.75rem;
    }

    .review-stars .fa-regular {
      color: rgba(255, 255, 255, 0.2);
    }

    .review-date {
      color: #64748b;
      font-size: 0.7rem;
    }

    .review-text {
      color: #94a3b8; font-size: 0.825rem; font-style: italic; line-height: 1.5;
    }

    .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.2) !important;
      opacity: 1;
    }
    .swiper-pagination-bullet-active {
      background: #f472b6 !important;
      width: 18px !important;
      border-radius: 4px !important;
    }

    /* --- FOOTER COPYRIGHT --- */
    .footer-copyright {
      margin-top: 3rem;
      text-align: center;
      font-size: 0.78rem;
      color: #64748b;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 1.5rem;
      width: 100%;
      line-height: 1.5;
    }

    .footer-copyright span {
      color: #f472b6;
      font-weight: 600;
    }

    /* --- SKELETON SHIMMER STYLES --- */
    .skeleton {
      background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.04) 75%);
      background-size: 200% 100%;
      animation: shimmerAnim 1.4s infinite linear;
      border-radius: 6px;
    }

    @keyframes shimmerAnim {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .shimmer-logo { position: absolute; top: -16px; left: 18px; width: 58px; height: 58px; border-radius: 50%; }
    .shimmer-title { height: 32px; width: 85%; margin: 0 auto 0.8rem auto; }
    .shimmer-badge { height: 26px; width: 60%; margin: 0 auto 1rem auto; border-radius: 30px; }
    .shimmer-line { height: 14px; width: 100%; margin-bottom: 10px; }
    .shimmer-line.short { width: 70%; margin: 0 auto 1.25rem auto; }
   
    /* --- LOGIKA TOGGLE LOADING --- */
    #shimmer-loading-wrapper {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: opacity 0.4s ease-in-out;
    }
    #shimmer-loading-wrapper.hidden {
      opacity: 0;
      visibility: hidden;
      position: absolute;
      pointer-events: none;
      display: none;
    }

    #main-content {
      opacity: 0;
      visibility: hidden;
      position: absolute;
      pointer-events: none;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: opacity 0.4s ease-in-out;
    }
    #main-content.visible {
      opacity: 1;
      visibility: visible;
      position: relative;
      pointer-events: auto;
    }

    /* --- PREVIEW MODAL STYLES --- */
    .preview-modal {
      position: fixed;
      inset: 0;
      background: rgba(11, 13, 20, 0.9);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .preview-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-header-bar {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 60px;
      background: rgba(30, 27, 46, 0.8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 1.5rem;
    }

    .modal-title-preview {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: #f472b6;
      font-weight: 600;
    }

    .modal-close-btn {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #fff;
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, opacity 0.2s;
      font-size: 0.9rem;
    }

    .modal-close-btn:hover {
      background: #e11d48;
      border-color: #e11d48;
    }

    .modal-body-container {
      position: relative;
      width: 100%;
      height: calc(100vh - 60px);
      margin-top: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .preview-iframe {
      width: 100%;
      height: 100%;
      border: none;
      background: #0b0d14;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .modal-loader {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      color: #94a3b8;
      font-size: 0.85rem;
      z-index: 10;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      opacity: 1;
      visibility: visible;
    }

    .spinner {
      width: 40px; height: 40px;
      border: 3px solid rgba(244, 114, 182, 0.2);
      border-top-color: #f472b6;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0088cc;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.btn-contact:hover {
  background-color: #006699;
}

  