sytle.css
<style>
.border-box {
  border: 1px solid #ffb700;
  border-radius: 12px;
  padding: 15px;
  background-color: #140800;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.border-box .card {
  flex: 1 1 calc(20% - 15px);
  max-width: 100px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #ff8c00, #ffd700);
  box-shadow: 0 4px 12px rgba(255,180,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.border-box .card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255,200,0,0.8);
}

.border-box .card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .border-box .card { flex: 1 1 calc(33.33% - 10px); }
}

@media (max-width: 480px) {
  .border-box .card { flex: 1 1 calc(50% - 10px); }
}

/* ===== RTP WRAPPER ===== */
.apacih-wrapper {
  background: linear-gradient(180deg, #0a0000, #1a0a00);
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  max-width: 750px;
  margin: auto;
  border: 1px solid rgba(255,180,0,0.4);
  box-shadow: 0 0 25px rgba(255,150,0,0.4);
  font-family: "Segoe UI", sans-serif;
}

.apacih-title {
  text-align: center;
  color: #ffd700;
  font-size: 30px;
  margin-bottom: 25px;
  text-shadow: 0 0 12px rgba(255,200,0,0.9);
}

/* INPUT */
.apacih-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.apacih-input {
  background: #1a0a00;
  border: 1px solid rgba(255,180,0,0.4);
  border-radius: 10px;
  padding: 12px;
  color: #fff;
  width: 100%;
}

/* BUTTON */
.apacih-btn {
  background: linear-gradient(145deg, #ff8c00, #ffd700);
  color: #000;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  font-weight: bold;
  transition: 0.25s;
  box-shadow: 0 0 12px rgba(255,200,0,0.6);
}

.apacih-btn:hover {
  background: linear-gradient(145deg, #ffb700, #fff176);
}

/* RESULT */
.apacih-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: 0;
  transition: 0.5s ease-out;
}

.apacih-box {
  background: #140800;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255,180,0,0.3);
  box-shadow: 0 0 12px rgba(255,150,0,0.25);
  opacity: 0;
  transform: translateY(15px);
  transition: 0.5s;
}

.apacih-label {
  display: block;
  font-size: 13px;
  color: #ffd700;
  margin-bottom: 6px;
}

.apacih-num {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 3px;
  min-height: 34px;
  transition: 0.3s ease-in-out;
}

.apacih-num.glow {
  color: #ffd700;
  text-shadow: 
    0 0 12px #ffd700,
    0 0 25px rgba(255,200,0,0.8);
}

/* HACKER TEXT */
.apacih-hacker-text {
  font-family: "Consolas", "Courier New", monospace;
  color: #ffd700;
  background: #1a0a00;
  padding: 12px 18px;
  border-left: 3px solid #ffd700;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(255,200,0,0.8);
  animation: apacihGlowGold 1.5s infinite alternate;
}

@keyframes apacihGlowGold {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}
</style>                        
<style>
  /* Import Font Elegant */
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

  :root {
    /* Palette Dark Gold Elegant */
    --gold-primary: #ffd700;
    --gold-light: #FFE57F;
    --bg-deep: #050505;
    --bg-card: #121212;
    --text-main: #f0f0f0;
    --text-muted: #888888;
    --border-dim: #222;
  }

  .win-section {
    max-width: 900px;
    margin: 32px auto 40px;
    padding: 25px 20px 30px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background: var(--bg-deep);
    border-radius: 12px;
    border: 1px solid var(--border-dim);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
  }

  /* Dekorasi Garis Emas Tipis di Atas */
  .win-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.5;
  }

  .win-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 1.3rem;
    font-weight: 700;
    /* Gradasi Putih ke Emas */
    background: linear-gradient(120deg, #ffffff, var(--gold-primary));
    -webkit-background-clip: text;
    color: transparent;
  }

  .win-subtitle {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  /* Frame Ticker (Kotak Pembungkus) */
  .win-ticker-frame {
    border-radius: 10px;
    padding: 1px; /* Border tipis emas */
    background: var(--border-dim); 
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    position: relative;
  }

  /* Jendela Scroll */
  .win-ticker-window {
    position: relative;
    overflow: hidden;
    border-radius: 9px;
    background: var(--bg-card);
    max-height: 240px;
    border: 1px solid #1a1a1a;
  }

  /* Track Animasi */
  .win-ticker-track {
    display: flex;
    flex-direction: column;
    padding: 10px 12px 15px;
    animation: scrollWinner 20s linear infinite;
  }

  /* Pause saat hover */
  .win-ticker-window:hover .win-ticker-track {
    animation-play-state: paused;
  }

  /* Item Pemenang */
  .win-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    margin: 4px 0;
    border-radius: 8px;
    /* Background Gelap Transparan */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    white-space: nowrap;
    transition: 0.3s;
  }

  .win-item:hover {
    background: rgba(212, 175, 55, 0.05); /* Aksen emas saat hover */
    border-color: rgba(212, 175, 55, 0.2);
  }

  /* Titik/Indikator */
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    /* Emas Padat */
    background: var(--gold-primary);
    box-shadow: 0 0 5px var(--gold-primary);
    flex-shrink: 0;
  }

  .name {
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    min-width: 100px;
  }

  .text {
    color: var(--text-muted);
  }

  .amount {
    color: var(--gold-primary);
    font-weight: 700;
    margin-left: auto; /* Taruh di kanan */
  }

  @keyframes scrollWinner {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  @media (max-width: 600px) {
    .win-item { font-size: 0.75rem; padding: 8px 10px; }
    .win-title { font-size: 1.1rem; }
  }
</style>
<style>
  /* Definisikan Variabel Dark Gold */
  :root {
    --gold-primary: #ffd700;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --bg-deep: #0a0a0a;
    --bg-card: #121212;
    --text-main: #e0e0e0;
    --text-muted: #888888;
  }

  /* Wrapper Section */
  .review-section {
    max-width: 850px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Montserrat', sans-serif; /* Ganti font agar elegan */
  }

  /* Kartu Review */
  .review-card {
    background: linear-gradient(145deg, #141414, #0d0d0d); /* Background Gelap Gradasi */
    padding: 20px 25px;
    border-radius: 10px;
    
    /* Aksen Emas di Kiri */
    border-left: 4px solid var(--gold-primary);
    
    /* Border tipis disekeliling agar halus */
    border: 1px solid #1a1a1a;
    border-left: 4px solid var(--gold-primary); /* Override border-left di sini */
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
  }

  .review-card:hover {
    transform: translateY(-5px);
    /* Glow Emas saat hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--gold-glow);
    border-color: #2a2a2a;
    border-left-color: var(--gold-primary);
  }

  /* Nama Penulis */
  .review-author {
    font-weight: 700;
    color: var(--gold-primary); /* Teks Emas */
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .review-author::before {
    content: "👤";
    font-size: 1.1rem;
    filter: grayscale(100%) brightness(200%); /* Bikin emoji sedikit keemasan */
  }

  /* Isi Review */
  .review-card p {
    margin: 0;
    color: var(--text-main); /* Putih/Abu muda */
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Rating Container */
  .review-rating {
    margin-left: auto;
    font-weight: 700;
    color: #fff;
  }

  /* BINTANG (Logic CSS Masking) */
  .stars {
    --rating: 5;
    --star-size: 1rem;
    --star-gap: 2px;
    --star-empty: #222222; /* Bintang kosong hitam gelap */
    --star-fill: #ffd700;   /* Bintang Isi Emas */
    position: relative;
    display: inline-block;
    font-size: var(--star-size);
    line-height: 1;
    letter-spacing: var(--star-gap);
  }

  .stars::before {
    content: "★★★★★";
    color: var(--star-empty);
  }

  .stars::after {
    content: "★★★★★";
    color: var(--star-fill);
    position: absolute;
    left: 0;
    top: 0;
    width: calc((var(--rating)/5)*100%);
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    /* Tambahkan sedikit shadow pada bintang emas agar menyala */
    filter: drop-shadow(0 0 2px var(--gold-glow));
  }

  .stars.lg {
    --star-size: 1.15rem;
    letter-spacing: 3px;
  }

  /* Badge / Label */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .badge small {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
  }
</style>
<style>
  /* === SECTION WRAPPER === */
  .testimoni-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #0f0f0f, #050505);
    text-align: center;
    margin: 60px 0;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
  }

  /* === JUDUL (H2) === */
  .testimoni-section h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Aksen Garis Bawah Emas */
    display: inline-block;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 10px;
  }

  /* Paragraf Deskripsi */
  .testimoni-section > p {
    color: #aaaaaa;
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
  }

  /* === GRID LAYOUT === */
  .testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* === KARTU TESTIMONI === */
  .testimoni-card {
    /* Background Gelap Gradasi Halus */
    background: linear-gradient(145deg, #141414, #0d0d0d);
    /* Border Tipis Default */
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
  }

  /* Efek Hover Kartu */
  .testimoni-card:hover {
    transform: translateY(-8px);
    /* Border Emas Saat Hover */
    border-color: #ffd700;
    /* Glow Emas Halus */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.2);
  }

  /* Bintang Rating */
  .rating-stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
  }

  /* Teks Kutipan */
  .testimoni-card blockquote {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 25px 0;
    font-style: italic;
    font-family: 'Playfair Display', serif; /* Font Serif agar terlihat mewah */
  }

  /* Info Penulis */
  .testimoni-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    padding-top: 15px;
  }

  /* Nama Penulis */
  .testimoni-author span {
    color: #ffd700; /* Emas */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }

  /* Label Kecil (small) */
  .testimoni-author small {
    color: #666;
    font-weight: 400;
    font-size: 12px;
    display: block;
    text-transform: none;
  }

  /* Penutup / Quote Bawah */
  .testimoni-closing {
    color: #ffd700;
    font-size: 18px;
    margin-top: 50px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
  }

  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .testimoni-section h2 {
      font-size: 24px;
    }
    .testimoni-section {
      padding: 40px 15px;
    }
    .testimoni-card {
      padding: 20px;
    }
  }
</style>
