    /* Container Utama dengan tema Olympus & Starlight Cyber */
    .cyber-hub-container {
      max-width: 1140px; 
      margin: 40px auto;
      padding: 45px;
      border-radius: 24px;
      background: linear-gradient(135deg, #0a0612 0%, #170b2c 50%, #0d0b14 100%);
      border: 1px solid rgba(255, 215, 0, 0.3); /* Sentuhan emas dewa */
      box-shadow: 0 20px 50px rgba(138, 43, 226, 0.25), inset 0 0 30px rgba(255, 215, 0, 0.05);
      font-family: "Plus Jakarta Sans", sans-serif;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    /* Efek Animasi Cahaya & Partikel Magis di Background */
    .cyber-hub-container::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
                  radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
      animation: floatGlow 10s ease-in-out infinite alternate;
      pointer-events: none;
      z-index: 1;
    }

    @keyframes floatGlow {
      0% { transform: translateY(0px) scale(1); }
      100% { transform: translateY(-20px) scale(1.05); }
    }

    /* Karakter & Efek Visual Dewa/Putri di Sudut Kontainer */
    .cyber-hub-container::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 220px;
      height: 280px;
      background-image: linear-gradient(to top, rgba(13, 11, 20, 0.9), transparent), 
                        url('https://images.unsplash.com/photo-1534447677768-be436bb09401?auto=format&fit=crop&w=400&q=80'); /* Ilustrasi simbolik karakter magis/fantasy */
      background-size: cover;
      background-position: center;
      opacity: 0.25;
      mix-blend-mode: luminosity;
      pointer-events: none;
      z-index: 1;
      mask-image: linear-gradient(to top, rgba(0,0,0,1), transparent);
    }

    /* Memastikan konten di dalam berada di atas lapisan efek */
    .cyber-hub-container > * {
      position: relative;
      z-index: 2;
    }

    /* Judul Utama dengan Efek Emas Mengkilap (Gatot & Olympus Style) */
    .cyber-hub-container h2 {
      text-align: center;
      font-size: 32px;
      font-weight: 800;
      background: linear-gradient(135deg, #fff 20%, #ffd700 50%, #ff4500 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 35px;
      letter-spacing: 1px;
      text-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    }

    /* Gaya Area FAQ (Accordion) */
    .faq-cyber-section {
      max-width: 900px;
      margin: 0 auto 55px;
    }

    .cyber-hub-container details {
      background: rgba(26, 18, 43, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      margin-bottom: 18px;
      padding: 20px 24px;
      border: 1px solid rgba(138, 43, 226, 0.3);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .cyber-hub-container details:hover {
      border-color: #ffd700;
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.25), inset 0 0 10px rgba(255, 215, 0, 0.05);
      transform: translateY(-2px);
    }

    .cyber-hub-container summary {
      cursor: pointer;
      font-size: 17px;
      font-weight: 600;
      color: #f7f4f9;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Indikator panah kustom dengan nuansa emas */
    .cyber-hub-container summary::after {
      content: "✦";
      font-size: 14px;
      color: #ffd700;
      transition: transform 0.4s ease, color 0.3s ease;
    }

    .cyber-hub-container details[open] summary::after {
      transform: rotate(180deg);
      color: #ff4500;
    }

    .cyber-hub-container details p {
      margin-top: 14px;
      font-size: 15px;
      line-height: 1.7;
      color: #d1c9e8;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 14px;
    }

    /* Gaya Grid Testimoni */
    .testi-cyber-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); 
      gap: 24px;
      margin-top: 35px;
    }

    .cyber-hub-container blockquote {
      background: rgba(20, 15, 30, 0.8);
      backdrop-filter: blur(10px);
      border-top: 4px solid #ffd700;
      border-radius: 16px;
      padding: 26px;
      margin: 0;
      min-height: 140px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-left: 1px solid rgba(255, 255, 255, 0.05);
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .cyber-hub-container blockquote:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(138, 43, 226, 0.3);
      border-top-color: #ff4500;
    }

    .testi-text {
      font-size: 15px;
      line-height: 1.6;
      color: #e2e0e7;
      font-style: italic;
    }

    .cyber-hub-container cite {
      display: block;
      margin-top: 20px;
      font-size: 13px;
      font-style: normal;
      font-weight: 600;
      color: #ffd700;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 10px;
      letter-spacing: 0.5px;
    }

    /* Navigasi Trending Tags */
    .tags-cyber-section {
      margin-top: 60px;
      border-top: 1px solid rgba(255, 215, 0, 0.2);
      padding-top: 30px;
    }

    .tags-title {
      font-size: 16px;
      font-weight: 700;
      color: #ffd700;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .cyber-pill {
      display: inline-block;
      padding: 9px 20px;
      background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(255, 215, 0, 0.1));
      border: 1px solid rgba(255, 215, 0, 0.3);
      border-radius: 30px;
      color: #f7f4f9;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .cyber-pill:hover {
      background: linear-gradient(135deg, #ffd700, #ff4500);
      color: #0d0b14;
      border-color: #ffd700;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
      transform: translateY(-2px);
      font-weight: 700;
    }

    /* Responsive untuk HP / Tablet */
    @media (max-width: 768px) {
      .testi-cyber-grid {
        grid-template-columns: 1fr;
      }
      .cyber-hub-container {
        padding: 25px;
        margin: 15px;
      }
      .cyber-hub-container::after {
        opacity: 0.15; /* Kurangi opasitas karakter di mobile agar teks tetap mudah dibaca */
        width: 150px;
        height: 180px;
      }
    }