.live-result-different {
  padding: 10px 4px;
  background: #000;
}

.live-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px; /* jarak antar card */
}

.live-box {
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #0a0a0a, #111);
  border: 2px solid #330000;
  box-shadow:
    0 0 5px rgba(120,0,0,0.2),
    0 8px 20px rgba(0,0,0,0.7),
    inset 0 0 10px rgba(80,0,0,0.1);
}

.live-top {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 18px;

  background: linear-gradient(90deg, #120000, #3a0000);
  border-bottom: 1px solid rgba(255, 0, 0, 0.25);

  box-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.4),
    inset 0 -1px 0 rgba(255, 0, 0, 0.15);

  letter-spacing: 0.3px;
}
.live-top:hover {
  background: linear-gradient(135deg, #220000, #6e0000);
  box-shadow: 
    0 6px 18px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Dot tetap seperti semula */
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff2a2a;
  box-shadow: 0 0 8px #ff0000;
}

/* Judul tetap seperti semula */
.live-top h2 {
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #ff4d4d;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 0 4px #880000;
}

.iframe-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0; /* jarak atas & bawah */
}

.iframe-400 {
  width: 100%;
  height: 450px; /* card pertama */
  border: none;
  border-radius: 0 0 14px 14px;
}

.iframe-300 {
  width: 100%;
  height: 400px; /* card kedua */
  border: none;
  border-radius: 0 0 14px 14px;
}

@media (max-width: 768px) {
  .iframe-400 {
    height: 450px; /* proporsional mobile */
  }
  .iframe-300 {
    height: 380px;
  }
  .live-top h2 {
    font-size: 14px;
  }
}