:root {
  --tv-bg-color: #0e0f12;
  --tv-text-color: #e8e8ea;
  --tv-muted-color: #a4a7ae;
  --tv-accent-color: #ff3b3b;
  --tv-card-bg: #151821;
  --tv-border-color: #242937;
}

.tv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  background: #000;;
  color: var(--tv-text-color);
  font-family: Arial, sans-serif;
}

.tv-card {
  display: flex;
  align-items: center;
  border: 1px solid #121212;;
  border-radius: 12px;
  overflow: hidden;
  background: #121212;;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin-bottom: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.35);
}

.tv-logo {
  flex-shrink: 0;
  width: 400px;
  height: 200px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tv-info {
  flex: 1;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tv-info h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--tv-accent-color);
}

.tv-info p {
  color: var(--tv-muted-color);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .tv-card {
    flex-direction: column;
    text-align: center;
  }
  .tv-logo {
    width: 100%;
    height: 200px;
  }
  .tv-info {
    padding: 16px;
  }
}
