/* aromatv.online — IPTV guide.
   Warm crimson editorial treatment, deliberately unlike iptv.chat (dark
   technical) and iptv.ad (light serif). Self-hosted styles only: no CDN, no
   external font, nothing for a third party to log. */

:root {
  --bg: #14090b;
  --bg-2: #1d0e11;
  --panel: #23151a;
  --line: #3a2229;
  --ink: #f6ecec;
  --muted: #b39a9f;
  --brand: #e23744;
  --brand-hot: #ff5a63;
  --brand-deep: #9b1c26;
  --accent: #f0a93b;
  --radius: 8px;
  --wrap: 1120px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.75 var(--sans);
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

a { color: var(--brand-hot); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip { position: absolute; left: -9999px; background: var(--brand); color: #fff; padding: 10px 16px; z-index: 100; }
.skip:focus { left: 0; }

/* ---------------------------------------------------------------- header */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(20, 9, 11, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; gap: 24px; min-height: 64px; flex-wrap: wrap; padding: 8px 0; }
.logo { font-weight: 800; font-size: 20px; letter-spacing: -.4px; color: var(--ink); }
.logo em { font-style: normal; color: var(--brand-hot); }
nav.main { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }
nav.main a { color: var(--muted); font-size: 14.5px; }
nav.main a:hover { color: var(--ink); text-decoration: none; }

/* ------------------------------------------------------------------ hero */
.hero {
  padding: 70px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(760px 380px at 12% -10%, rgba(226, 55, 68, .20), transparent 62%),
    radial-gradient(620px 320px at 88% 8%, rgba(240, 169, 59, .10), transparent 60%);
}
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--accent); margin: 0 0 15px;
}
h1 { font-size: clamp(31px, 5.2vw, 52px); line-height: 1.12; margin: 0 0 20px; letter-spacing: -1.1px; }
h1 span { color: var(--brand-hot); }
.lede { font-size: 19px; color: var(--muted); max-width: 66ch; margin: 0 0 26px; }

/* -------------------------------------------------------------- sections */
section { padding: 58px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: 0; }
section.alt { background: var(--bg-2); }
h2 { font-size: clamp(24px, 3.3vw, 32px); margin: 0 0 14px; letter-spacing: -.6px; line-height: 1.22; }
h3 { font-size: 19px; margin: 30px 0 10px; }
p { margin: 0 0 17px; max-width: 74ch; }
.muted { color: var(--muted); }
.small { font-size: 14.5px; }

/* ----------------------------------------------------------------- cards */
.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { margin-top: 0; font-size: 17.5px; }
.card p:last-child { margin-bottom: 0; }
.card .tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px;
}

/* -------------------------------------------------------- brand sections */
.brand-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 18px;
}
.brand-block h3 { margin-top: 0; font-size: 20px; }
.brand-block .host { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.brand-block p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------- table */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; min-width: 540px; font-size: 15px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--bg-2); font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
tr:last-child td { border-bottom: 0; }
code {
  font-family: var(--mono); font-size: .9em; background: var(--bg-2);
  border: 1px solid var(--line); padding: 2px 7px; border-radius: 4px; color: var(--accent);
}

ul.clean { list-style: none; padding: 0; margin: 0 0 17px; }
ul.clean li { padding-left: 24px; position: relative; margin-bottom: 10px; color: var(--muted); }
ul.clean li::before { content: "▸"; position: absolute; left: 3px; color: var(--brand-hot); }

.note {
  border-left: 3px solid var(--accent);
  background: var(--bg-2);
  padding: 17px 19px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0;
}
.note p:last-child { margin-bottom: 0; }
.note strong { color: var(--ink); }

.btn {
  display: inline-block; background: var(--brand); color: #fff; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius); font-size: 15.5px;
}
.btn:hover { text-decoration: none; background: var(--brand-hot); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }

details {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 15px 18px; margin-bottom: 11px; background: var(--panel);
}
details summary { cursor: pointer; font-weight: 600; }
details p { margin: 12px 0 0; color: var(--muted); }

/* ---------------------------------------------------------------- footer */
footer.site { padding: 44px 0 92px; color: var(--muted); font-size: 14.5px; border-top: 1px solid var(--line); background: var(--bg-2); }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--brand-hot); }
.fgrid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-bottom: 28px; }
.fgrid h4 { color: var(--ink); font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 12px; }
.fgrid ul { list-style: none; padding: 0; margin: 0; }
.fgrid li { margin-bottom: 8px; }

/* ------------------------------------------------------- whatsapp button */
.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 12px;
  background: #25d366; color: #06281a; border-radius: 999px;
  padding: 13px 20px 13px 15px; font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .34);
}
.wa:hover { text-decoration: none; }
.wa svg { width: 25px; height: 25px; flex: none; }
.wa .lab { display: flex; flex-direction: column; line-height: 1.24; }
.wa .lab i { font-style: normal; font-size: 11.5px; font-weight: 500; opacity: .82; }
.wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid #25d366; animation: wa-ring 2.4s ease-out infinite;
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: .75; }
  70% { transform: scale(1.32); opacity: 0; }
  100% { transform: scale(1.32); opacity: 0; }
}
@media (max-width: 560px) { .wa .lab { display: none; } .wa { padding: 15px; border-radius: 50%; } }
@media (prefers-reduced-motion: reduce) { .wa::before { animation: none; } html { scroll-behavior: auto; } }
