
/* MalayalamNewsLive.com - Minimalist styles */
:root {
  --blue-700: #0b5fa5;
  --blue-500: #1976d2;
  --blue-100: #e3f2fd;
  --accent: #ff8f00; /* for subtle highlights */
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans Malayalam", sans-serif;
  color: var(--text);
  background: var(--bg);
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid #e5e7eb;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.brand {
  display: flex; align-items: center; gap: .75rem;
}
.brand img { height: 40px; width: auto; }
.site-title {
  font-weight: 700; font-size: 1.25rem; color: var(--blue-700);
}
.actions a {
  color: var(--blue-700);
  text-decoration: none; font-weight: 600;
}
.hero {
  background: linear-gradient(180deg, var(--blue-100), rgba(227,242,253,0));
}
.hero .container { padding: 2rem 1rem; }
.hero h1 { margin: 0 0 .5rem; font-size: 2rem; }
.hero p { margin: 0; color: var(--muted); }

.main { padding: 1.5rem 0 2rem; }
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .grid { grid-template-columns: 2fr 1fr; }
}
.player {
  aspect-ratio: 16/9;
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (min-width: 600px) {
  .channels { grid-template-columns: 1fr 1fr 1fr; }
}
.channel {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: .75rem;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
  background: #fff;
}
.channel:hover { border-color: var(--blue-500); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.channel h3 { margin: 0 0 .25rem; font-size: 1rem; color: var(--blue-700); }
.channel p { margin: 0; color: var(--muted); font-size: .9rem; }
.channel.active { outline: 2px solid var(--blue-500); }

.footer {
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0; color: var(--muted);
}
.small { font-size: .875rem; }
.badge { display: inline-block; padding: .25rem .5rem; background: var(--blue-100); color: var(--blue-700); border-radius: 999px; font-weight: 600; }
.visually-hidden { position: absolute !important; clip: rect(1px,1px,1px,1px); padding: 0 !important; border: 0 !important; height: 1px !important; width: 1px !important; overflow: hidden; }
