:root{
  --bg:#0b0c0f;
  --bg2:#07080a;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --text:#f5f6f8;
  --muted: rgba(245,246,248,.70);
  --gold:#ffdf87;
  --gold2:#f6c85b;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --wrap: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 70% -20%, rgba(255,223,135,.18), transparent 60%),
              radial-gradient(900px 700px at 15% 10%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x:hidden;
}

a{ color: inherit; text-decoration:none; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

.wrap{
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.top-glow{
  position: fixed;
  inset: -200px -200px auto -200px;
  height: 260px;
  background: radial-gradient(closest-side, rgba(255,223,135,.18), transparent 65%);
  pointer-events:none;
  filter: blur(8px);
  z-index: 0;
}

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5,6,8,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner{
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
  height: 74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.brand{ display:flex; align-items:center; gap: 10px; min-width: 180px; }
.brand__mark{ width: 34px; height: 34px; object-fit:contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,.5)); }
.brand__word{ height: 22px; object-fit:contain; opacity:.95; }

.nav__links{ display:flex; gap: 14px; flex-wrap:wrap; justify-content:flex-end; }
.nav__links a{
  font-weight: 700;
  font-size: 13px;
  opacity: .86;
  padding: 10px 8px;
  border-radius: 10px;
  transition: .2s ease;
}
.nav__links a:hover{ opacity: 1; background: rgba(255,255,255,.06); }

.nav__burger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  cursor:pointer;
}
.nav__burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.85);
  margin: 4px auto;
  border-radius: 3px;
}

.nav__mobile{
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.nav__mobile a{
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}
.nav__mobile-ctas{ display:flex; gap: 10px; margin-top: 6px; flex-wrap:wrap; }

/* HERO */
.hero{
  position: relative;
  padding: 74px 0 38px;
  z-index: 1;
}
.hero__bg{
  position:absolute;
  inset: 0;
  background-image: url("assets/fivem-banner.gif");
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(1.1) contrast(1.05);
}
.hero__overlay{
  position:absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 70% 10%, rgba(255,223,135,.20), transparent 60%),
              linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.78));
}
.hero__content{
  position: relative;
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 22px;
  align-items: start;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 700;
}
.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255,223,135,.14);
}

h1{
  margin: 14px 0 10px;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: .5px;
}
.h1__brand{
  display:block;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 900;
  line-height: 1.02;
}
.h1__sub{
  display:block;
  margin-top: 8px;
  font-size: clamp(14px, 2.1vw, 18px);
  font-weight: 700;
  opacity: .78;
}

.lead{
  margin: 0 0 18px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight: 800;
  font-size: 13px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  box-shadow: 0 14px 45px rgba(0,0,0,.25);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); }
.btn--gold{
  background: linear-gradient(135deg, rgba(255,223,135,.28), rgba(255,223,135,.12));
  border-color: rgba(255,223,135,.35);
}
.btn--gold:hover{ background: linear-gradient(135deg, rgba(255,223,135,.34), rgba(255,223,135,.14)); }
.btn--ghost{ background: rgba(255,255,255,.03); }
.btn--soft{
  background: rgba(255,223,135,.08);
  border-color: rgba(255,223,135,.18);
}
.btn--status{
  background: rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.12);
}
.status-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #777;
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}
.btn--status.is-online .status-dot{ background: #3dff7a; box-shadow: 0 0 0 4px rgba(61,255,122,.15); }
.btn--status.is-offline .status-dot{ background: #ff4d4d; box-shadow: 0 0 0 4px rgba(255,77,77,.15); }

.hero__mini{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.mini-card{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.mini-card__title{ font-weight: 900; font-size: 13px; letter-spacing:.2px; }
.mini-card__sub{ margin-top: 4px; font-size: 12px; color: var(--muted); }
.mini-card--accent{
  border-color: rgba(255,223,135,.20);
  background: rgba(255,223,135,.06);
}

.hero-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card__top{
  padding: 18px 18px 10px;
  display:flex;
  gap: 12px;
  align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.crown{
  width: 54px; height: 54px; object-fit:contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
}
.hero-card__kicker{ font-size: 12px; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-card__name{ font-size: 18px; font-weight: 900; letter-spacing: .3px; }
.hero-card__stats{
  padding: 14px 18px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.stat{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.stat__label{ font-size: 11px; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.stat__value{ margin-top: 6px; font-weight: 900; font-size: 13px; }
.hero-card__note{
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* SECTIONS */
.section{ padding: 58px 0; position:relative; z-index: 1; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{ margin-bottom: 18px; }
.section__head h2{
  margin: 0 0 8px;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-size: 26px;
  letter-spacing: .3px;
}
.section__head p{ margin: 0; color: var(--muted); line-height: 1.6; }
.section__head.center{ text-align:center; }

.kicker{
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 42px;
  line-height: 1;
  color: var(--gold);
}

.muted{ color: var(--muted); line-height: 1.6; font-size: 14px; margin: 0; }
.muted.max{ max-width: 82ch; margin: 0 auto; }

/* About split */
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items:start;
}
.about{ margin: 14px 0 18px; color: rgba(245,246,248,.80); line-height: 1.75; max-width: 62ch; }
.about__buttons{ display:flex; gap: 10px; flex-wrap:wrap; }

.collage{
  position: relative;
  height: 380px;
  border-radius: var(--radius2);
}
.hex{
  position:absolute;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  background-size: cover;
  background-position: center;
  clip-path: polygon(7% 0%, 93% 0%, 100% 12%, 100% 88%, 93% 100%, 7% 100%, 0% 88%, 0% 12%);
}
.hex__shade{ position:absolute; inset:0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.45)); }

/* PLACEHOLDER IMAGES
   Replace these with your own screenshots later.
   Example: url("assets/screens/1.jpg")
*/
.hex--a{ left: 0; top: 0; width: 42%; height: 52%; background-image: url("assets/fivem-banner.gif"); }
.hex--b{ right: 0; top: 0; width: 56%; height: 62%; background-image: url("assets/fivem-banner.gif"); transform: skewX(-2deg); }
.hex--c{ left: 10%; bottom: 0; width: 56%; height: 46%; background-image: url("assets/fivem-banner.gif"); }
.hex--d{ right: 10%; bottom: 6%; width: 34%; height: 38%; background-image: url("assets/fivem-banner.gif"); }

.hint{ margin-top: 10px; font-size: 12px; color: var(--muted); }

/* Jobs */
.jobs{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.job{
  position: relative;
  height: 340px;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
  transition: transform .2s ease, border-color .2s ease;
}
.job:hover{ transform: translateY(-3px); border-color: rgba(255,223,135,.22); }
.job__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position:center;
  filter: saturate(1.08) contrast(1.05);
}
.job__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.70));
}
/* Replace these later with screenshots */
.job__bg--pd{ background-image: url("assets/fivem-banner.gif"); }
.job__bg--ems{ background-image: url("assets/fivem-banner.gif"); }
.job__bg--law{ background-image: url("assets/fivem-banner.gif"); }

.job__label{
  position:absolute;
  left: 18px;
  bottom: 18px;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 34px;
  text-transform: uppercase;
}

.center{ display:flex; justify-content:center; }

/* Tabs + streams */
.tabs{ display:flex; gap: 10px; }
.tab{
  appearance:none;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor:pointer;
}
.tab.is-active{
  border-color: rgba(255,223,135,.28);
  background: rgba(255,223,135,.10);
  color: rgba(255,223,135,.95);
}

.stream-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stream{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}
.stream__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stream__name{ font-weight: 900; letter-spacing:.2px; }
.stream__badge{ font-size: 12px; color: var(--muted); font-weight: 800; }
.stream__frame{ width: 100%; aspect-ratio: 16/9; background: rgba(255,255,255,.03); }
.stream__frame iframe{ width: 100%; height: 100%; border: 0; }

/* Rules */
.rules{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rule{
  display:flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
}
.rule__num{
  width: 44px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  background: rgba(255,223,135,.10);
  border: 1px solid rgba(255,223,135,.18);
  font-weight: 900;
}
.rule__title{ font-weight: 900; margin-bottom: 6px; }
.rule__text{ color: var(--muted); font-size: 14px; line-height: 1.6; }
.rules__footer{ margin-top: 14px; }

/* Updates */
.updates{ display:grid; grid-template-columns: 1.35fr .65fr; gap: 14px; align-items: start; }
.updates__frame{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.updates__header{
  padding: 14px 16px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.updates__title{ font-weight: 900; letter-spacing: .2px; }
.updates__hint{ font-size: 12px; color: var(--muted); }
.updates__list{ padding: 14px 16px 16px; max-height: 340px; overflow:auto; }
.updates__loading{ color: var(--muted); padding: 10px 0; }
.update{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}
.update__top{ display:flex; align-items:center; justify-content:space-between; gap: 10px; }
.update__tag{ font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,223,135,.95); }
.update__date{ font-size: 12px; color: var(--muted); }
.update__title{ margin: 8px 0 6px; font-weight: 900; }
.update__text{ margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px; }

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  padding: 18px;
}
.card h3{ margin: 0 0 8px; font-size: 16px; font-weight: 900; letter-spacing:.2px; }

.howto{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }

/* Links */
.grid-2{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.biglink{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,223,135,.18);
  background: linear-gradient(135deg, rgba(255,223,135,.10), rgba(255,255,255,.03));
  padding: 18px;
  transition: transform .18s ease, border-color .18s ease;
}
.biglink:hover{ transform: translateY(-2px); border-color: rgba(255,223,135,.30); }
.biglink__title{ font-weight: 900; font-size: 18px; }
.biglink__sub{ margin-top: 6px; color: var(--muted); }
.biglink--static{ border-color: rgba(255,255,255,.10); background: rgba(255,255,255,.03); }
.gold{ color: var(--gold); font-weight: 900; }

/* Footer */
.footer{ padding: 30px 0 44px; border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner{ display:flex; align-items:center; justify-content:space-between; gap: 16px; }
.footer__left{ display:flex; align-items:center; gap: 12px; }
.footer__mark{ width: 34px; height: 34px; object-fit:contain; opacity: .95; }
.footer__name{ font-weight: 900; }
.footer__copy{ color: var(--muted); font-size: 13px; margin-top: 4px; }
.footer__right{ display:flex; gap: 14px; color: rgba(255,255,255,.80); }
.footer__right a{ padding: 10px 8px; border-radius: 12px; }
.footer__right a:hover{ background: rgba(255,255,255,.05); }

/* Reveal */
.reveal{ opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px){
  .hero__content{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .updates{ grid-template-columns: 1fr; }
  .jobs{ grid-template-columns: 1fr; height: auto; }
  .rules{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .stream-grid{ grid-template-columns: 1fr; }
  .nav__links{ display:none; }
  .nav__burger{ display:block; }
  .footer__inner{ flex-direction: column; align-items:flex-start; }
  .kicker{ font-size: 36px; }
}
