body {
  background: #000;
  color: #00ffcc;
  font-family: monospace;
  margin: 0;
  padding: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* PLAYER */
.player {
  width: 95%;
  max-width: 600px; /* 🔥 más grande en escritorio */
  background: #111;
  border: 3px solid #00ffcc;
  box-shadow: 0 0 25px #00ffcc;
  padding: 15px;
  position: relative;
}

/* CRT */
.player::after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,255,204,0.05),
    rgba(0,255,204,0.05) 2px,
    transparent 2px,
    transparent 4px
  );
  pointer-events:none;
}

/* TITLE */
.title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 2px;
}

/* AVATAR */
.avatar img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  filter: contrast(120%) brightness(120%) hue-rotate(90deg);
}

/* ENTITY */
.entity {
  font-size: 12px;
  text-align: center;
  opacity: 0.7;
  margin-bottom: 10px;
}

/* SCREEN */
.screen {
  background: #000;
  border: 2px solid #00ffcc;
  padding: 10px;
  height: 60px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

/* CONTROLS */
.controls {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

/* BOTONES */
button {
  flex: 1;
  background: #000;
  color: #00ffcc;
  border: 2px solid #00ffcc;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

/* hover */
button:hover {
  background: #00ffcc;
  color: #000;
}

/* activo */
button.active {
  background: #00ffcc;
  color: #000;
  box-shadow: 0 0 10px #00ffcc;
}

/* NEWS */
.news {
  margin-top: 15px;
  font-size: 14px;
  min-height: 70px;
  border-top: 2px solid #00ffcc;
  padding-top: 10px;
  display: flex;
  align-items: center;
}

/* LIVE */
.live {
  color: red;
  font-weight: bold;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.3; }
}

/* 📱 MÓVIL GRANDE */
@media (max-width: 480px) {

  .title {
    font-size: 18px;
  }

  button {
    font-size: 13px;
    padding: 10px;
  }

  .screen {
    font-size: 13px;
  }

  .news {
    font-size: 13px;
  }
}
