body {
  background-color: #000;
  font-family: Arial, sans-serif;
  text-align: center;
}

.title, .subtitle, .footer {
  color: red;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff,
               -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.title {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: none;
}

#playerArea {
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #fff;
  text-shadow: none;
}

#channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.channel {
  width: 180px;
  text-align: center;
  cursor: pointer;
}

.channel-name {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}

.channel img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel img:hover,
.channel img:active {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}
