body.elementor-page-17:not(.elementor-motion-effects-element-type-background), body.elementor-page-17 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-c46f494 */.card-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.rank {
  font-weight: bold;
  color: white;
  background: crimson;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  margin-right: 10px;
}

.card img {
  width: 80px;
  margin-right: 10px;
}

.content {
  flex: 1;
  min-width: 200px;
}

.content h2 {
  margin: 0;
}

.content p {
  margin: 3px 0;
  font-size: 14px;
  color: RED;
}

.stars {
  color: gold;
}

.highlight {
  color: green;
  font-weight: bold;
  min-width: 180px;
  text-align: center;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.actions a {
  text-decoration: none;
  padding: 8px 12px;
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
}

.actions a:first-child {
  background: #ffa500;
}

.actions a:last-child {
  background: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    align-items: flex-start;
  }
  .highlight {
    text-align: left;
    margin-top: 5px;
  }
  .actions {
    flex-direction: row;
    width: 100%;
  }
  .actions a {
    flex: 1;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7dbc5e1 */.scroll-box {
  max-height: 400px;         /* Tinggi kotak */
  overflow-y: auto;          /* Aktifkan scroll vertikal */
  padding: 20px;
  background: #2e3440;       /* Warna latar gelap */
  color: #eee;               /* Warna teks */
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

/* Gaya scrollbar kustom */
.scroll-box::-webkit-scrollbar {
  width: 8px;
}

.scroll-box::-webkit-scrollbar-track {
  background: #3b4252;
  border-radius: 4px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: #d08770;
  border-radius: 4px;
}

.scroll-box h2 {
  color: #5e81ac;
  margin-top: 0;
}

.scroll-box strong {
  color: #eceff4;
}/* End custom CSS */