
:root {
  --bg: #0a0f16;
  --card: #0f1722;
  --text: #e6f0ff;
  --muted: #8aa4c8;
  --accent: #00bfff;
  --accent2: #ff3b3b;
  --border: #1f2b3a;
}

* { box-sizing: border-box; }
body.rhm-dark { margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: var(--bg); color: var(--text); }
a { color: var(--accent); text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header & Nav */
.rhm-header .rhm-topbar { background: #0d131b; border-bottom: 1px solid var(--border); position: sticky; top:0; z-index: 50; }
.site-title a { display:block; font-weight: 700; font-size: 22px; padding: 14px 0; color: var(--text); letter-spacing: .5px; }
.rhm-topbar .container { display:flex; align-items:center; justify-content: space-between; gap: 20px; }
.rhm-nav .menu { list-style:none; display:flex; gap: 18px; padding:0; margin:0; }
.rhm-nav .menu li a { display:block; padding: 12px 8px; color: var(--text); opacity:.9; }
.rhm-nav .menu li a:hover { color: #fff; opacity: 1; }

/* Ticker */
.rhm-ticker { background: #0b1119; border-bottom:1px solid var(--border); }
.rhm-ticker .container { display:flex; align-items:center; gap: 12px; overflow:hidden; }
.rhm-ticker .label { font-size: 12px; color: var(--muted); padding: 8px 0; }
.rhm-ticker .marquee { overflow:hidden; white-space: nowrap; width:100%; }
.rhm-ticker ul { display:inline-flex; gap: 28px; list-style:none; margin:0; padding:0; animation: marquee 25s linear infinite; }
.rhm-ticker li a { color: var(--muted); }
@keyframes marquee { 0% {{ transform: translateX(0); }} 100% {{ transform: translateX(-50%); }} }

/* Hero player */
.hero {{ display:flex; justify-content:center; padding: 40px 0 10px; }}
.player-box { background: radial-gradient(1200px 300px at 50% -20%, rgba(0,191,255,.08), transparent), var(--card);
  border:1px solid var(--border); border-radius: 24px; padding: 28px; box-shadow: 0 0 0 1px rgba(255,255,255,.02), 0 20px 60px rgba(0,0,0,.35);
  width: min(540px, 95%); text-align:center; position:relative; }
.onair { position:absolute; top:14px; right:14px; display:flex; align-items:center; gap:8px; font-size: 12px; color:#bbb; }
.onair .dot { width:10px; height:10px; border-radius:50%; background: #555; box-shadow: 0 0 12px rgba(255,59,59,0); transition:.25s; }
.onair.active .dot { background: var(--accent2); box-shadow: 0 0 12px rgba(255,59,59,.8); }
.onair .txt {{ letter-spacing: .5px; }}
.onair.active .txt {{ color: #fff; }}
.title { font-size: 22px; margin: 18px 0 14px; font-weight: 600; }
.controls { display:flex; justify-content:center; gap: 10px; margin: 10px 0 6px; }
.btn { background: var(--accent); color:#001018; border:none; border-radius: 10px; padding:10px 16px; font-weight: 700; cursor:pointer; }
.btn:hover {{ filter: brightness(1.08); }}
.btn-muted {{ background: #182434; color:#cfe8ff; }}

.stream-url { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* Cards/posts */
.cards {{ display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 22px 0 34px; }}
.card {{ background: var(--card); border:1px solid var(--border); border-radius: 16px; padding: 16px; }}
.card h2 {{ font-size: 18px; margin: 0 0 8px; }}
.post, .page {{ background: var(--card); border:1px solid var(--border); border-radius: 16px; padding: 16px; margin: 16px 0; }}

/* Schedule */
.schedule {{ display:grid; gap: 10px; margin: 12px 0 24px; }}
.schedule .row {{ display:grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 12px; background:#0c1420; border:1px solid var(--border); border-radius: 10px; padding: 10px 12px; }}

/* Contact */
.notice {{ padding: 10px 12px; border-radius: 10px; margin-bottom: 12px; }}
.notice.success {{ background:#0d2a1a; color:#c9ffd6; border:1px solid #1f6a3a; }}
.notice.error {{ background:#2a0d12; color:#ffd6dc; border:1px solid #6a1f2e; }}
.contact-form label {{ display:block; font-size: 14px; color:#cfe8ff; margin: 8px 0 6px; }}
.contact-form input, .contact-form textarea {{ width:100%; background:#0d1520; border:1px solid var(--border); color:#e6f0ff; border-radius: 10px; padding: 10px; }}
.contact-form button {{ margin-top: 12px; }}

/* Footer */
.rhm-footer {{ border-top:1px solid var(--border); background:#0d131b; margin-top: 30px; }}
.rhm-footer .container {{ display:flex; align-items:center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 14px 0; }}
.rhm-footer .socials a {{ margin-right: 12px; color:#bcd7ff; }}
.rhm-footer .legal {{ color:#8aa4c8; font-size: 13px; }}
