
:root {
  --bg: #090b12;
  --panel: #171b27;
  --panel-soft: #22283a;
  --text: #f8fafc;
  --muted: #a8b0c2;
  --gold: #ffe600;
  --gold-2: #ffb800;
  --green: #ffe600;
  --deep: #0f1420;
  --line: rgba(255, 255, 255, .1);
  --content: #171b27;
  --body: #e7ebf5;
  --max: 1360px;
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--body);
  background: #090b12;
  line-height: 1.65;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 230, 0, .12), transparent 30%),
    linear-gradient(315deg, rgba(42, 111, 255, .16), transparent 42%),
    radial-gradient(circle at 52% 0, rgba(52, 116, 255, .22), transparent 32%),
    #090b12;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.rlsn-site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(15, 20, 32, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
}
.rlsn-header-inner {
  min-height: 78px; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.rlsn-logo { flex: 0 0 auto; }
.rlsn-logo img { width: 150px; max-height: 64px; object-fit: contain; }
.rlsn-site-nav { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; text-transform: uppercase; color: #fff; flex: 1 1 auto; flex-wrap: nowrap; justify-content: center; min-width: 0; }
.rlsn-site-nav a { text-decoration: none; white-space: nowrap; padding: 7px 9px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.rlsn-site-nav a:hover { background: rgba(255,230,0,.16); color: #fff7a8; }
.rlsn-header-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.rlsn-btn, .rlsn-header-actions a {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 20px;
  border-radius: 8px; border: 1px solid rgba(255,255,255,.18); background: linear-gradient(180deg, #fff45a, #ffe600 45%, #ffb800);
  color: #0d111a; font-weight: 900; line-height: 1; text-decoration: none; box-shadow: 0 12px 26px rgba(255,230,0,.24);
}
.rlsn-btn-dark { background: #252c40 !important; color: #fff !important; border-color: rgba(255,255,255,.18) !important; box-shadow: none !important; }
.rlsn-menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 8px; background: #252c40; color: #fff; }
.rlsn-menu-toggle span { display: block; height: 3px; margin: 7px 6px; background: currentColor; }
.rlsn-hero { color: #fff; border-bottom: 1px solid var(--line); background: #0f1420; background-size: cover; background-position: center; }
.rlsn-hero-inner { min-height: 430px; padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 70px; display: grid; grid-template-columns: minmax(300px, 590px) 1fr; align-items: center; gap: 30px; background: linear-gradient(90deg, rgba(9,11,18,.92), rgba(18,31,68,.74) 48%, rgba(255,230,0,.08)); }
.rlsn-hero-kicker { color: #ffe600; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; }
h1,h2,h3 { margin: 0 0 18px; color: var(--text); line-height: 1.15; }
.rlsn-hero h1 { color: #fff; font-size: clamp(34px, 3vw, 54px); max-width: 720px; text-shadow: 0 3px 18px rgba(0,0,0,.75); }
.rlsn-hero p { max-width: 640px; margin: 0 0 26px; color: rgba(255,255,255,.9); font-size: 18px; }
.rlsn-section { padding: 64px 20px; }
.rlsn-container { width: 100%; max-width: var(--max); margin: 0 auto; }
.rlsn-content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 28px; align-items: start; }
.rlsn-review-content, .rlsn-side-box { background: rgba(23,27,39,.96); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.rlsn-review-content { padding: 30px; min-width: 0; }
.rlsn-review-content p { margin: 0 0 18px; }
.rlsn-review-content h2 { margin-top: 34px; font-size: 28px; color: var(--gold); }
.rlsn-review-content h3 { margin-top: 24px; font-size: 21px; color: #ffffff; }
.rlsn-review-content ul, .rlsn-review-content ol { padding-left: 22px; margin: 0 0 22px; }
.rlsn-review-content li { margin: 7px 0; }
.rlsn-review-content table { display: block; width: 100%; max-width: 100%; border-collapse: collapse; margin: 22px 0; overflow-x: auto; border-radius: 8px; }
.rlsn-review-content thead, .rlsn-review-content tbody { display: table; width: 100%; min-width: 620px; table-layout: fixed; }
.rlsn-review-content th, .rlsn-review-content td { border: 1px solid rgba(255,255,255,.1); padding: 11px 12px; vertical-align: top; }
.rlsn-review-content th { background: #252c40; color: #fff; text-align: left; }
.rlsn-review-content tr:nth-child(even) td { background: rgba(255,255,255,.035); }
.rlsn-article-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.rlsn-article-meta span { background: rgba(255,230,0,.1); border: 1px solid rgba(255,230,0,.2); padding: 7px 10px; border-radius: 999px; }
.rlsn-article-figure { margin: 26px 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #111622; }
.rlsn-article-figure img { width: 100%; aspect-ratio: 16/7.5; object-fit: cover; }
.rlsn-article-figure figcaption { padding: 10px 12px; color: var(--muted); font-size: 13px; }
.rlsn-author-box { display: grid; grid-template-columns: 96px 1fr; gap: 18px; margin-top: 34px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #111622; }
.rlsn-author-avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: contain; background: #090b12 url('/assets/img/reelson-fav.webp') center / 70% no-repeat; border: 2px solid var(--gold); }
.rlsn-author-body p { margin: 6px 0 10px; color: var(--muted); }
.rlsn-author-body strong { color: var(--gold); font-size: 18px; }
.rlsn-author-links { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 13px; }
.rlsn-sidebar { position: sticky; top: 84px; }
.rlsn-side-box { padding: 18px; }
.rlsn-side-box strong { display: block; margin-bottom: 12px; color: var(--gold); font-size: 18px; }
.rlsn-toc-nav { display: grid; gap: 6px; margin-bottom: 18px; max-height: 62vh; overflow: auto; padding-right: 4px; }
.rlsn-toc-nav a { text-decoration: none; padding: 8px 9px; border-radius: 8px; background: rgba(255,255,255,.06); color: var(--body); font-size: 13px; line-height: 1.25; }
.rlsn-toc-nav a:hover { background: rgba(255,230,0,.16); color: #fff; }
.rlsn-toc-sub { margin-left: 12px; opacity: .9; }
.rlsn-site-footer { background: #0f1420; border-top: 1px solid rgba(255,255,255,.14); }
.rlsn-footer-main { padding: 38px 20px; display: grid; grid-template-columns: minmax(180px, .8fr) minmax(260px, 1.2fr) minmax(260px, 1.2fr) minmax(170px, .7fr); gap: 24px; align-items: start; }
.rlsn-footer-badges { display: grid; gap: 14px; align-content: start; justify-items: start; }
.rlsn-footer-badge { display: flex; gap: 10px; align-items: center; color: #fff; }
.rlsn-footer-badge img { max-width: 160px; object-fit: contain; }
.rlsn-footer-badge-text { width: 76px; height: 54px; border-radius: 8px; border: 1px solid rgba(255,255,255,.24); justify-content: center; flex-direction: column; font-weight: 900; color: #ffcf75; }
.rlsn-footer-badge-text small { color: rgba(255,255,255,.74); font-size: 10px; }
.rlsn-footer-copy-block p { margin: 0 0 16px; color: rgba(255,255,255,.78); }
.rlsn-footer-menu { display: grid; gap: 10px; align-content: start; }
.rlsn-footer-menu a { color: #ffe600; text-decoration: none; }
.rlsn-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 20px; }
.rlsn-footer-bottom .rlsn-container { display: flex; justify-content: space-between; gap: 20px; color: #fff; }
@media (max-width: 1100px) {
  .rlsn-header-inner { flex-wrap: wrap; padding: 10px 16px; }
  .rlsn-site-nav { order: 3; width: 100%; flex-basis: 100%; flex-wrap: wrap; justify-content: flex-start; }
  .rlsn-content-layout, .rlsn-footer-main { grid-template-columns: 1fr; }
  .rlsn-sidebar { position: static; width: min(100%, 520px); }
}
@media (max-width: 760px) {
  .rlsn-menu-toggle { display: block; }
  .rlsn-site-nav { display: none; }
  .rlsn-site-nav.rlsn-is-open { display: grid; grid-template-columns: 1fr 1fr; }
  .rlsn-header-actions { width: 100%; }
  .rlsn-header-actions a { flex: 1; }
  .rlsn-hero-inner { min-height: 360px; grid-template-columns: 1fr; padding: 54px 20px; }
  .rlsn-review-content { padding: 20px; }
  .rlsn-author-box { grid-template-columns: 1fr; }
  .rlsn-footer-bottom .rlsn-container { flex-direction: column; }
}
