.stream-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .stream-layout {
    grid-template-columns: 1.7fr 1fr;
  }
}

.player-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-glass);
}

.player-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.player-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.player-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  background: rgba(10, 15, 30, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stream-title-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.stream-chips {
  display: flex;
  gap: 0.5rem;
}

/* Quest & XP Loot Drop Box (MrBeast Gamified Module) */
.gamification-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  gap: 1.2rem;
}

.loot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.streak-counter {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.loot-box-interactive {
  background: linear-gradient(145deg, rgba(255, 85, 0, 0.15) 0%, rgba(138, 43, 226, 0.1) 100%);
  border: 1px dashed var(--accent-flame-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.loot-box-interactive:hover {
  transform: translateY(-3px) scale(1.02);
  border-style: solid;
  box-shadow: 0 0 25px rgba(255, 85, 0, 0.35);
}

.loot-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  animation: bounceFlame 2s infinite ease-in-out;
}

@keyframes bounceFlame {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.loot-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.loot-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.xp-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.xp-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 45%;
  background: var(--grad-flame);
  box-shadow: var(--glow-flame);
  transition: width 0.5s ease;
}

/* Match Predictor Card */
.predictor-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.predictor-q {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.predictor-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.btn-vote {
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-vote:hover, .btn-vote.selected {
  background: var(--accent-cyan);
  color: #03050a;
  border-color: var(--accent-cyan);
}
