

.tv-set {
  width: 90%;
  max-width: 900px; 
  margin: 2rem auto; 
  background: #3d3d3d; 
  border: 10px solid #2d2d2d; 
  border-radius: 25px 25px 50px 50px / 15px 15px 100px 100px;
  padding: 2.5rem;
  box-shadow: 
    inset 0 0 15px rgba(0,0,0,0.7),
    0 10px 15px rgba(0,0,0,0.5);  
}

.tv-screen {
  background: #1a1a1a; 
  border: 5px solid #111;
  border-radius: 20px / 50px; 
  padding: 2rem;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden; 
}

.tv-screen::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(0, 0, 0, 0.05) 50%
  );
  background-size: 100% 4px;
  z-index: 2;
  pointer-events: none; 
  opacity: 0.6;
}

@keyframes flicker {
  0% { opacity: 0.2; }
  20% { opacity: 0.25; }
  40% { opacity: 0.2; }
  60% { opacity: 0.3; }
  80% { opacity: 0.2; }
  100% { opacity: 0.25; }
}


.tv-screen .cuento {
  position: relative;
  z-index: 3; 
}


body {
  background-color: #111; 
  font-family: 'Courier New', Courier, monospace; 
}

.tv-screen h1 {
  font-family: 'Courier New', Courier, monospace;
  color: #c7ffc7; 
  font-size: 2.5rem;
  text-shadow: 0 0 8px #90ff90, 0 0 10px #90ff90; 
}

.tv-screen p {
  color: #b0ffb0; 
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem; 
  line-height: 1.6;
  text-shadow: 0 0 5px #90ff90; 
}

.back-link {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
  color: #c7ffc7;
  text-decoration: none;
  font-size: 1.2rem;
  display: block; 
  text-align: center; 
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #90ff90;
}
.back-link:hover {
  text-decoration: none;
  background: #c7ffc7;
  color: #111;
  text-shadow: none;
}

.comment-form {
  background: #3d3d3d;
  color: #f0f0f0;
  border-radius: 15px;
  max-width: 900px;
  margin: 2rem auto;
}
.comment-form h2 {
    color: #c7ffc7;
    text-shadow: 0 0 8px #90ff90;
    font-family: 'Courier New', Courier, monospace;
}