﻿/* RiskMode — riskmode.bet brand styles */
:root {
  --bg: #0c0c0e;
  --panel: #17171a;
  --panel2: #1e1e22;
  --line: #2a2a30;
  --text: #f2f2f2;
  --muted: #9a9aa2;
  --green: #7ed321;
  --green-dim: #5da317;
  --orange: #f5a623;
  --red: #e5484d;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 860px; margin: 0 auto; padding: 0 18px; }

/* header */
header {
  border-bottom: 1px solid var(--line);
  background: #0a0a0b;
  position: sticky; top: 0; z-index: 10;
}
.nav {
  display: flex; align-items: center; gap: 22px;
  padding: 12px 0;
}
.nav img { height: 40px; display: block; }
.nav .links { margin-left: auto; display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.nav a { color: var(--text); font-weight: 600; font-size: 15px; }
.nav a.active, .nav a:hover { color: var(--green); text-decoration: none; }

/* hero */
.hero { padding: 34px 0 10px; }
.hero h1 { font-size: 30px; font-weight: 800; letter-spacing: .3px; }
.hero h1 .rm { color: #fff; }
.hero h1 .mode { color: var(--green); }
.tagline { color: var(--orange); font-weight: 700; letter-spacing: 1.5px; font-size: 13px; text-transform: uppercase; margin-top: 2px; }
.sub { color: var(--muted); margin-top: 10px; font-size: 15px; }

/* stat chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 6px; }
.chip {
  background: var(--panel); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 16px; text-align: center; min-width: 108px;
}
.chip b { display: block; font-size: 20px; color: var(--green); }
.chip span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; }

/* sections */
section { margin: 30px 0; }
h2 { font-size: 20px; margin-bottom: 12px; color: #fff; }
h2 .accent { color: var(--green); }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.note { color: var(--muted); font-size: 13.5px; }

/* board table */
.board { width: 100%; border-collapse: collapse; }
.board th {
  text-align: left; font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: .6px; padding: 8px 10px; border-bottom: 1px solid var(--line);
}
.board td { padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 15px; }
.board tr:last-child td { border-bottom: none; }
.board .odds { color: var(--green); font-weight: 700; white-space: nowrap; }
.board .num { color: var(--muted); width: 30px; }
.board .player { font-weight: 700; }
.board .mkt { color: var(--muted); }
.dinger-tag { color: var(--orange); font-weight: 800; font-size: 12px; letter-spacing: .8px; }
.win { color: var(--green); font-weight: 700; }
.loss { color: var(--red); font-weight: 700; }
.void { color: var(--muted); font-weight: 700; }

/* writeup */
.writeup p { margin: 12px 0; font-size: 15.5px; }
.writeup .lead { font-size: 16.5px; }

/* buttons */
.btn {
  display: inline-block; background: var(--green); color: #0a0a0b; font-weight: 800;
  padding: 12px 22px; border-radius: 10px; font-size: 15px;
}
.btn:hover { background: var(--green-dim); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--green); border: 1px solid var(--green); }

/* footer */
footer {
  border-top: 1px solid var(--line); margin-top: 44px; padding: 26px 0 40px;
  color: var(--muted); font-size: 13px;
}
footer .social a { margin-right: 16px; font-weight: 600; }
.disclaimer { margin-top: 10px; }
@media (max-width: 560px) {
  .nav .links { gap: 12px; }
  .nav a { font-size: 12.5px; }
  .nav .links { gap: 8px; }
  .board td, .board th { padding: 8px 6px; font-size: 13.5px; }
  .hero h1 { font-size: 24px; }
}

/* DFS lineup cards */
.lugrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-top: 14px; }
.lineup { background: var(--panel2); border: 1px solid var(--line); border-radius: 10px; padding: 12px; font-size: 13.5px; }
.lineup h3 { font-size: 13px; color: var(--green); letter-spacing: .6px; margin-bottom: 8px; text-transform: uppercase; }
.lineup h3 .sal { color: var(--muted); float: right; font-weight: 400; }
.lineup .pl { display: flex; justify-content: space-between; padding: 2px 0; }
.lineup .pos { color: var(--muted); width: 40px; flex-shrink: 0; }
.lineup .nm { flex-grow: 1; }
.lineup .s { color: var(--muted); }
.sitehead { margin: 22px 0 4px; font-size: 17px; color: #fff; }

/* affiliate side rails (desktop only) */
.rail { display: none; position: fixed; top: 110px; width: 172px; z-index: 5; }
.rail-l { left: calc(50% - 430px - 196px); }
.rail-r { right: calc(50% - 430px - 196px); }
@media (min-width: 1280px) { .rail { display: block; } }
.railcard { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-bottom: 14px; text-align: center; }
.railcard .tag { font-size: 10px; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
.railcard h4 { font-size: 15px; color: #fff; margin: 6px 0 8px; }
.railcard p { font-size: 12.5px; color: var(--muted); margin-bottom: 10px; }
.railcard .btn { padding: 8px 14px; font-size: 13px; display: block; }
.rail .disclose { font-size: 10.5px; color: var(--muted); text-align: center; }
.railmark { width: 52px; height: 52px; border-radius: 12px; margin: 8px auto 2px; display: block; }
.sbtn { display: inline-flex; align-items: center; gap: 9px; margin: 4px 8px 4px 0; }
.sbtn img { width: 20px; height: 20px; border-radius: 4px; display: block; }
.ficon { width: 15px; height: 15px; border-radius: 3px; vertical-align: -2px; margin-right: 6px; }
