:root {
    --brand: #d35400;
    --brand-ink: #a04000;
    --brand-soft: #fdebd8;
    --ink: #1c1917;
    --ink-2: #44403c;
    --muted: #78716c;
    --line: #e7e5e4;
    --line-soft: #f5f5f4;
    --surface: #fff;
    --canvas: #f5f0ea;
    --radius-lg: 16px;
    --radius: 12px;
    --gutter: 16px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--canvas);
    font: 16px/1.45 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
h1 { font-size: 2rem; letter-spacing: -.03em; }
h2 { margin: 28px 0 12px; font-size: 1.15rem; }
h3.region { margin: 20px 0 8px; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
ul { margin: 0; padding: 0; list-style: none; }
.site-header {
    position: sticky; top: 0; z-index: 20;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}
.site-header__inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 58px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 800; letter-spacing: -.03em; }
.brand__word { font-size: 1.15rem; }
.main-nav { display: flex; gap: 14px; margin-left: 12px; font-weight: 600; font-size: .92rem; }
.main-nav a { text-decoration: none; color: var(--ink-2); }
.main-nav .is-active { color: var(--brand-ink); }
.locale-pill {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-ink);
    font-size: .78rem;
    font-weight: 700;
}
.shell { width: min(1120px, 100%); margin: 0 auto; padding: 20px var(--gutter) 48px; }
.hero--home {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    color: #fff;
    background: linear-gradient(125deg, #1c1917 0%, #7f2d00 55%, #d35400 100%);
    margin-bottom: 28px;
}
.hero--home h1 { font-size: 2.6rem; }
.eyebrow { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero--home .eyebrow { color: #f1c40f; }
.lead { margin-top: 10px; max-width: 40rem; opacity: .92; }
.page-head { margin-bottom: 18px; }
.page-head .eyebrow a { color: var(--brand-ink); }
.page-head p { margin-top: 6px; color: var(--muted); }
.country-grid, .platform-grid, .now-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.country-card, .platform-card, .now-card a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    text-decoration: none;
    min-height: 88px;
}
.country-card:hover, .platform-card:hover, .now-card a:hover { border-color: var(--brand); }
.country-card__iso { font-size: .72rem; font-weight: 800; color: var(--brand); letter-spacing: .06em; }
.country-card__name { font-weight: 700; }
.country-card__meta, .platform-card span, .now-card time { color: var(--muted); font-size: .8rem; }
.country-list { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 8px; }
.country-list a { color: var(--ink-2); }
.now-card__ch { font-size: .75rem; font-weight: 700; color: var(--brand-ink); }
.now-card__title { font-weight: 650; }
.prog-list { display: flex; flex-direction: column; gap: 2px; }
.prog {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--surface);
}
.prog--now { background: var(--brand-soft); }
.prog__time { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink-2); }
.prog__kicker { display: block; color: var(--muted); font-size: .75rem; font-weight: 700; }
.prog__title { font-weight: 650; }
.prog__badge {
    display: inline-block;
    margin-bottom: 2px;
    padding: 1px 7px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.channel-inline { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.channel-inline a { color: var(--brand-ink); }
.title-list a, .offer-list a, .offer-list span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    text-decoration: none;
}
.title-list span { color: var(--muted); font-size: .85rem; }
.empty { padding: 16px; border-radius: var(--radius); background: var(--surface); color: var(--muted); }
.site-footer {
    padding: 24px var(--gutter) 40px;
    color: var(--muted);
    font-size: .82rem;
    text-align: center;
}
.site-footer a { color: var(--brand-ink); }
@media (min-width: 800px) {
    .now-grid { grid-template-columns: repeat(3, 1fr); }
    .country-grid { grid-template-columns: repeat(4, 1fr); }
}
