:root {
  --bg: #08090b;
  --bg-soft: #101216;
  --panel: rgba(18, 20, 25, 0.86);
  --panel-strong: #15171c;
  --gold: #e0b84c;
  --gold-light: #f8d978;
  --gold-dark: #9d741e;
  --text: #f7f4ea;
  --muted: #aaa79f;
  --border: rgba(224, 184, 76, 0.18);
  --white-border: rgba(255,255,255,0.08);
  --shadow: 0 28px 80px rgba(0,0,0,0.45);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224,184,76,0.06), transparent 30%),
    linear-gradient(180deg, #08090b 0%, #0b0c0f 100%);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.background-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  opacity: .12;
  z-index: -1;
}
.background-glow-one { top: -180px; right: -160px; background: var(--gold); }
.background-glow-two { bottom: -260px; left: -220px; background: #624d16; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--white-border);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #111;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 10px 30px rgba(224,184,76,.18);
}
.brand strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  letter-spacing: -.02em;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .28em;
  font-weight: 700;
}
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a {
  color: #ccc8be;
  font-size: 14px;
  font-weight: 600;
  transition: .2s;
}
.main-nav > a:hover { color: var(--gold-light); }
.main-nav .nav-join {
  padding: 11px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(224,184,76,.07);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: 160px 0 95px;
  min-height: 760px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items: center;
}
.eyebrow, .section-label {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--gold);
  text-shadow: 0 0 40px rgba(224,184,76,.08);
}
.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b8b4aa;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 16px 40px rgba(224,184,76,.17);
}
.button-secondary {
  border: 1px solid var(--white-border);
  background: rgba(255,255,255,.035);
}
.button-secondary:hover { border-color: var(--border); background: rgba(224,184,76,.06); }
.hero-meta {
  display: flex;
  gap: 34px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--white-border);
}
.hero-meta div { display: flex; flex-direction: column; gap: 7px; }
.hero-meta strong { font-size: 14px; }
.hero-meta span { color: var(--muted); font-size: 12px; }

.server-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    rgba(11,12,15,.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.server-card::before {
  content:"";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -150px;
  right: -100px;
  border-radius: 50%;
  background: rgba(224,184,76,.18);
  filter: blur(70px);
}
.server-card-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c9c5bb;
  font-size: 12px;
  font-weight: 700;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #55d67e;
  box-shadow: 0 0 0 5px rgba(85,214,126,.1), 0 0 15px rgba(85,214,126,.6);
}
.city-mark {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 40px 0 32px;
}
.city-logo {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #101010;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}
.city-mark span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 12px; }
.city-mark strong { font-family: "Montserrat", sans-serif; font-size: 28px; }
.server-details {
  position: relative;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--white-border);
  border-radius: 16px;
  background: var(--white-border);
}
.server-details > div {
  padding: 14px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #101216;
}
.server-details span { color: var(--muted); font-size: 12px; }
.server-details strong { font-size: 12px; text-align: right; }
.server-card-button {
  position: relative;
  min-height: 52px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  border-radius: 14px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}
.hero-divider {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1160px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section { padding: 110px 0; }
.section-dark {
  border-block: 1px solid var(--white-border);
  background: rgba(255,255,255,.018);
}
.section-heading { max-width: 670px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 {
  margin: 12px 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.07;
  letter-spacing: -.04em;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.feature-grid, .role-grid { display: grid; gap: 18px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .role-card {
  border: 1px solid var(--white-border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
  transition: .22s ease;
}
.feature-card { padding: 30px; }
.feature-card:hover, .role-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  background: rgba(224,184,76,.035);
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(224,184,76,.07);
  font-size: 21px;
}
.feature-card h3, .role-card h3, .step h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}
.feature-card p, .role-card p, .step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.role-grid { grid-template-columns: repeat(2, 1fr); }
.role-card { position: relative; min-height: 240px; padding: 34px; overflow: hidden; }
.role-number {
  position: absolute;
  top: 15px;
  right: 24px;
  color: rgba(224,184,76,.12);
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  font-weight: 900;
}
.role-card h3 { margin-top: 90px; }
.role-card p { max-width: 440px; }

.steps {
  max-width: 820px;
  margin: 0 auto 70px;
  display: grid;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--white-border);
  border-radius: 18px;
  background: rgba(255,255,255,.022);
}
.step > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(224,184,76,.13), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.016));
}
.cta-card h2 {
  margin: 10px 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.04em;
}
.cta-card p { margin: 0; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; min-width: max-content; }

.rules-strip {
  padding: 30px 0;
  border-block: 1px solid var(--border);
  background: rgba(224,184,76,.045);
}
.rules-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.rules-strip-inner > div {
  text-align: center;
  border-right: 1px solid var(--border);
}
.rules-strip-inner > div:last-child { border-right: 0; }
.rules-strip strong { display: block; color: var(--gold-light); font-family: "Montserrat"; font-size: 16px; }
.rules-strip span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }

.site-footer { padding: 70px 0 28px; background: #07080a; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 60px;
}
.footer-brand p { max-width: 390px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.footer-grid h3 { margin: 0 0 18px; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light); }
.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: var(--muted);
  font-size: 13px;
}
.footer-grid a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--white-border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #77746e;
  font-size: 11px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #15171c;
  color: var(--text);
  box-shadow: var(--shadow);
  transform: translate(-50%, 25px);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav {
    position: fixed;
    inset: 82px 20px auto;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid var(--white-border);
    border-radius: 18px;
    background: rgba(13,14,17,.97);
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav > a { padding: 13px 14px; border-radius: 10px; }
  .main-nav .nav-join { text-align: center; }
  .hero { padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .server-card { max-width: 600px; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .cta-actions { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1160px); }
  .nav-wrap { height: 72px; }
  .main-nav { inset: 72px 13px auto; }
  .hero { min-height: auto; padding: 118px 0 70px; }
  .hero h1 { font-size: clamp(46px, 16vw, 68px); }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-meta { flex-direction: column; gap: 20px; }
  .server-card { padding: 18px; border-radius: 22px; }
  .city-logo { width: 70px; height: 70px; border-radius: 20px; }
  .city-mark strong { font-size: 23px; }
  .server-details > div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .server-details strong { text-align: left; word-break: break-all; }
  .section { padding: 80px 0; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card { min-height: 220px; padding: 26px; }
  .step { grid-template-columns: 1fr; align-items: flex-start; }
  .cta-card { padding: 28px; }
  .cta-actions { width: 100%; }
  .rules-strip-inner { grid-template-columns: 1fr; gap: 22px; }
  .rules-strip-inner > div { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}


/* GoudHaven logo */
.brand-logo-wrap {
  overflow: hidden;
  padding: 2px;
  background: rgba(224,184,76,.08);
}
.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.city-logo-image {
  padding: 7px;
  overflow: hidden;
  background: radial-gradient(circle, rgba(224,184,76,.22), rgba(10,10,12,.94));
}
.city-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.button-icon { font-size: 17px; line-height: 1; }

/* Belangrijke links */
.community-links { position: relative; }
.quick-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.quick-link-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 22px;
  border: 1px solid var(--white-border);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  transition: .22s ease;
}
.quick-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--border);
  background: rgba(224,184,76,.045);
}
.quick-link-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(224,184,76,.07);
  font-size: 23px;
}
.quick-link-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
}
.quick-link-card span:not(.quick-link-icon) {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.quick-link-card b {
  color: var(--gold-light);
  font-size: 25px;
}
.tebex-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 0%, rgba(224,184,76,.15), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.016));
}
.tebex-copy { max-width: 680px; }
.tebex-highlight h2 {
  margin: 10px 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px,4vw,42px);
  letter-spacing: -.04em;
}
.tebex-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 760px) {
  .quick-link-grid { grid-template-columns: 1fr; }
  .tebex-highlight { align-items: flex-start; flex-direction: column; padding: 28px; }
  .tebex-highlight .button { width: 100%; }
}
