/* Horizons Roleplay shared shell: Prodigy-style structure, Horizons azure theme. */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #0B0E15;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  display: flex; flex-direction: column; min-height: 100vh;
}
a { color: #4197FF; text-decoration: none; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.disp { font-family: "Oswald", "Segoe UI", Arial, sans-serif; text-transform: uppercase; }

/* ---- centered masthead + tab bar below it ---- */
/* single top nav: horizontal banner left, tabs inline beside it */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.97), rgba(8, 10, 16, 0.94));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
/* logo pinned to the far left of the screen, not the content column */
.navbar .wrap { max-width: none; padding: 0 28px; }
.navbar .bar { display: flex; align-items: center; gap: 44px; height: 78px; }
.navbrand { display: flex; align-items: center; }
.navbrand img {
  height: 48px; width: auto; display: block;
  transition: filter .25s ease, opacity .45s ease;
}
.navbrand:hover img { filter: drop-shadow(0 0 14px rgba(46, 140, 255, 0.45)); }
.navtabs { display: flex; align-items: center; gap: 28px; }
.navtabs a {
  font-size: 15px; font-weight: 600;
  color: #C0C7D4; padding: 22px 2px 20px; position: relative;
  transition: color .2s ease;
}
.navtabs a:hover { color: #FFFFFF; text-decoration: none; }
.navtabs a.active { color: #FFFFFF; }
.navtabs a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 14px; height: 3px;
  border-radius: 2px; background: #2E8CFF;
  box-shadow: 0 0 10px rgba(46, 140, 255, 0.8);
}
@media (max-width: 640px) {
  .navbar .wrap { padding: 0 16px; }
  .navbar .bar { gap: 20px; height: 62px; }
  .navtabs { gap: 18px; }
  .navbrand img { height: 32px; }
}

/* ---- buttons ---- */
.btnrow { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 34px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: #FFFFFF; background: #0D6BE8; border-radius: 3px;
  transition: background-color .2s ease;
}
.btn:hover { background: #0A5CCB; text-decoration: none; }
.btn.ghost { background: transparent; border: 1px solid rgba(255, 255, 255, 0.28); }
.btn.ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* ---- headings ---- */
h2.big {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(30px, 4.6vw, 46px); font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-align: center; line-height: 1.08; margin: 0 0 12px;
}
h2.big span { color: #2E8CFF; display: block; }
h2.big.inline span { display: inline; }
p.lede { color: #A9B0BF; text-align: center; max-width: 640px; margin: 0 auto 40px; font-size: 16.5px; line-height: 1.6; }

/* ---- notched cards ---- */
.notch {
  background: #121722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  padding: 28px 30px;
}
.cards3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.notch h3 { margin: 0 0 10px; font-family: "Oswald", Arial, sans-serif; font-size: 19px; letter-spacing: 1px; text-transform: uppercase; }
.notch p { margin: 0; color: #B4BBCA; font-size: 15px; line-height: 1.65; }
.notch p b { color: #FFFFFF; }

/* ---- stats ---- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.stat {
  background: #121722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  padding: 30px 20px; text-align: center;
}
.stat .num { font-family: "Oswald", Arial, sans-serif; font-size: 40px; font-weight: 700; }
.stat .num em { font-style: normal; color: #2E8CFF; font-size: 22px; margin-left: 4px; }
.stat .lbl { color: #8B93A5; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; margin-top: 8px; }

/* ---- sections/footer ---- */
section { padding: 70px 0; }
section.alt { background: #0E121B; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
footer {
  margin-top: auto;
  padding: 26px 0 30px; text-align: center; color: #6E7688; font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 760px) {
  nav .links { gap: 14px; overflow-x: auto; }
  .brand { font-size: 17px; }
}
