/* Reset mínimo */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0b0b0d;
  color: #ffffff;
  min-height: 100vh;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  text-align: center;
}

.title {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

/* Player */
.player-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.status {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status.offline {
  color: #ff6b6b;
}

.status.live {
  color: #4cff4c;
}

/* Responsive iframe */
.iframe-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 6px;
  overflow: hidden;
}

.iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Breakpoints */
@media (max-width: 768px) {
  .title {
    font-size: 1.4rem;
  }
}
