:root{
  --bg:#0B0B0F;
  --panel:#15151B;
  --panel2:#101015;
  --text:#E6E6EA;
  --muted:#9A9AA6;
  --gold:#C7A84B;
  --gold2:#9C7C2F;
  --border:rgba(255,255,255,0.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 24px;
  background:rgba(11,11,15,0.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}
.brand img{
  width:44px;
  height:44px;
  object-fit:contain;
}
.brand-name{
  letter-spacing:2px;
  font-weight:900;
  font-size:13px;
}
.brand-sub{
  color:var(--muted);
  font-size:12px;
  letter-spacing:1px;
}

.nav{display:flex; gap:10px; flex-wrap:wrap;}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
  transition: all .15s ease;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,0.05);
  border-color:rgba(255,255,255,0.06);
}
.nav a.active{
  color:var(--bg);
  background:var(--gold);
  border-color:rgba(199,168,75,0.55);
}

.hero{
  position: relative;
  border-bottom:1px solid var(--border);

  /* Show full banner */
  background:
    linear-gradient(180deg, rgba(11,11,15,0.25), rgba(11,11,15,0.55)),
    url("../img/rhg-banner.png");

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #0B0B0F;

  padding: 140px 20px;
  min-height: 520px;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(199,168,75,0.18), transparent 60%),
    linear-gradient(180deg, rgba(16,16,21,0.35), rgba(11,11,15,0.78));
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:1;
}
.hero-inner{
  max-width:1050px;
  margin:0 auto;
  text-align:center;
}
.kicker{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  color:var(--muted);
  letter-spacing:1px;
  font-size:12px;
}
.hero h1{
  margin:0 0 12px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:0.5px;
  text-shadow: 0 6px 22px rgba(0,0,0,0.55);
}
.hero p{
  margin:0 auto 26px;
  max-width:820px;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  text-shadow: 0 4px 18px rgba(0,0,0,0.55);
}

.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.btn{
  background:var(--gold);
  color:var(--bg);
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.4px;
  border:1px solid rgba(199,168,75,0.65);
}
.btn:hover{ filter:brightness(1.05); }

.btn-outline{
  border:1px solid rgba(199,168,75,0.55);
  color:var(--gold);
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.4px;
}
.btn-outline:hover{ background:rgba(199,168,75,0.08); }

.btn-outline.small{
  padding:10px 12px;
  border-radius:12px;
  font-size:12px;
}

.hero-badges{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.badge{
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.4px;
}

.container{
  max-width:1120px;
  margin:0 auto;
  padding:34px 20px 60px;
}

.page-title{ margin:0 0 8px; font-size:34px; letter-spacing:.5px; }
.muted{ color:var(--muted); }

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns:1fr; }
  .hero h1{ font-size:42px; }
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px 18px 16px;
}

.card.wide{ margin-top:16px; padding:18px; }

.card h2{ margin:0 0 10px; font-size:18px; letter-spacing:.4px; }

.link{
  display:inline-block;
  margin-top:8px;
  color:var(--gold);
  text-decoration:none;
  font-weight:800;
}
.link:hover{ text-decoration:underline; }

.embed{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
}

.site-footer{
  border-top:1px solid var(--border);
  padding:18px 20px;
  text-align:center;
  color:var(--muted);
}

/* Split card with watermark */
.split{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 980px){
  .split{ grid-template-columns:1fr; }
}
.watermark{
  border-radius:16px;
  border:1px solid var(--border);
  background:
    radial-gradient(700px 280px at 50% 10%, rgba(199,168,75,0.16), transparent 60%),
    url("../img/rhg-logo.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size: 220px;
  opacity:0.9;
  filter: saturate(0.95);
}

/* Live page */
.live-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:16px;
}
.live-badge{
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
  letter-spacing:.4px;
}

.live-layout{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:16px;
  align-items:start;
}
@media (max-width: 980px){
  .live-layout{ grid-template-columns:1fr; }
}

.live-sidebar .sidebar-title{
  font-weight:900;
  letter-spacing:.6px;
  margin-bottom:12px;
}
.member-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.member{
  width:100%;
  text-align:left;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.02);
  padding:12px 12px;
  border-radius:14px;
  cursor:pointer;
  color:var(--text);
}
.member:hover{ background:rgba(255,255,255,0.04); }
.member.active{
  border-color: rgba(199,168,75,0.55);
  background: rgba(199,168,75,0.10);
}
.member-name{ font-weight:900; letter-spacing:.3px; }
.member-channel{ font-size:12px; margin-top:4px; }

.sidebar-foot{
  margin-top:14px;
  font-size:12px;
}
.sidebar-foot code{ color:var(--gold); }

.live-now{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.now-dot{
  width:10px; height:10px;
  border-radius:999px;
  background:var(--gold);
  box-shadow:0 0 0 6px rgba(199,168,75,0.12);
}
.now-text{ flex:1; }
.now-label{ font-size:12px; }
.now-name{ font-weight:950; letter-spacing:.4px; }

.section-title{ margin:0 0 12px; font-size:18px; letter-spacing:.4px; }

/* Social link styling */
.nav .social {
  border: 1px solid rgba(199,168,75,0.55);
  color: var(--gold);
  border-radius: 12px;
  font-weight: 700;
}
.nav .social:hover {
  background: rgba(199,168,75,0.08);
}

/* Footer layout */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}
.footer-links a:hover {
  text-decoration: underline;
}
