body {
  font-family: sans-serif;
  margin: 0;
  background: #f5f5f5;
}
.header {
  background: #003f91;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 40px;
}
nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}
.btn-login, .btn-daftar {
  background: yellow;
  border: none;
  margin-left: 10px;
  padding: 5px 10px;
}
.hero {
  position: relative;
  text-align: center;
  background: #333;
}
.hero-banner {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-text {
  position: absolute;
  top: 30%;
  width: 100%;
  color: white;
  font-size: 1.5em;
}
.notif-bar {
  background: yellow;
  text-align: center;
  font-weight: bold;
  padding: 5px;
}
.artikel, .konten-grid, .testimoni {
  padding: 20px;
}
.artikel-links a {
  margin: 5px;
  display: inline-block;
  color: #003f91;
}
.card {
  background: white;
  padding: 15px;
  margin: 10px;
  border-radius: 6px;
  box-shadow: 0 0 3px rgba(0,0,0,0.1);
}
footer {
  background: #003f91;
  color: white;
  padding: 10px;
  text-align: center;
}

.hero-banner-container {
  position: relative;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hero-banner-clickable {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  object-fit: cover;
  border-radius: 8px;
}
.cta-notif-bar {
  background-color: #ffe600;
  text-align: center;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: background 0.3s ease;
}

.btn-cta.login {
  background-color: #007bff;
}

.btn-cta.daftar {
  background-color: #ff0000;
}

.btn-cta:hover {
  filter: brightness(1.1);
}
.green-blink {
  background-color: #d4fcd2;
  color: #0f7507;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
}

.blink-dot {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.update-slot {
  padding: 20px;
  background: #f7f7f7;
}

.game-card {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.game-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 12px;
}

.game-card .info h3 {
  margin: 0;
  font-size: 18px;
}

.game-card .btn-play {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  background: #007aff;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
}

.game-card.green { border-left: 5px solid #31a24c; }
.game-card.yellow { border-left: 5px solid #eab308; }
.game-card.red { border-left: 5px solid #ef4444; }

.live-feed marquee {
  background: #1d1d1d;
  color: #00ff00;
  padding: 8px;
  font-weight: bold;
  font-size: 14px;
}

.feedback-stars, .testimoni-random, .widget-time {
  text-align: center;
  margin: 20px auto;
  font-weight: 500;
  color: #333;
}

.widget-time {
  font-size: 14px;
  color: #0a0;
}
.live-stream-section {
  margin: 20px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.stream-header h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #333;
}

.stream-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95rem;
}

.stream-table th, .stream-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.stream-table th {
  background: #003366;
  color: #fff;
}

.stream-table tr:nth-child(even) {
  background: #f0f8ff;
}

.green-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: limegreen;
  border-radius: 50%;
  margin-right: 5px;
}
/* 🔥 Highlight baris baru di stream */
@keyframes highlight {
  0% { background-color: #d1fae5; }
  100% { background-color: transparent; }
}

.stream-table tr.highlighted {
  animation: highlight 2s ease-in-out;
}

/* 📱 Responsive Tabel Stream */
@media (max-width: 600px) {
  .stream-table thead {
    display: none;
  }

  .stream-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
  }

  .stream-table td {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95em;
    border-bottom: 1px solid #eee;
  }

  .stream-table td:last-child {
    border-bottom: none;
  }
}
.dot-online {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  margin-right: 6px;
  animation: blink-dot 1.2s infinite ease-in-out;
  box-shadow: 0 0 5px #00ff00;
  vertical-align: middle;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.header {
  background: #003f91;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 36px; /* Ukuran logo lebih kecil */
}

.btn-daftar {
  background: linear-gradient(90deg, #ffba08, #faa307, #ffba08);
  background-size: 300% 100%;
  color: #000;
  font-weight: 800;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.7);
  transition: all 0.3s ease-in-out;
  animation: pulse-glow 2s infinite linear;
}

.btn-daftar:hover {
  background-position: 100% 0;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.9), 0 0 30px rgba(255, 255, 0, 0.5);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 12px #ffcb05; }
  50% { box-shadow: 0 0 24px #ffd60a; }
  100% { box-shadow: 0 0 12px #ffcb05; }
}
.header {
  background: #004494;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.logo {
  height: 40px;
  max-width: 150px;
}

.btn-daftar {
  background: #ffb800;
  color: black;
  font-weight: bold;
  border-radius: 20px;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 0 12px #fff;
  font-size: 14px;
  line-height: 1.2;
  transition: transform 0.2s ease;
}

.btn-daftar:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .logo {
    height: 35px;
    margin-bottom: 10px;
  }

  .btn-daftar {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 14px;
    border-radius: 14px;
  }
}


