/* ============================================================
   BRUNSSUM ROLEPLAY — Eigen stijl
   Donker navy/slate base · cyaan accenten · Inter font
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0c0e13;
  --bg-raised:   #111420;
  --bg-card:     #141720;
  --bg-hover:    #191d28;
  --cyan:        #00d4ff;
  --cyan-soft:   rgba(0, 212, 255, 0.12);
  --cyan-border: rgba(0, 212, 255, 0.22);
  --text:        #c9d1e0;
  --text-dim:    rgba(180,192,215,0.5);
  --text-faint:  rgba(180,192,215,0.25);
  --border:      rgba(255,255,255,0.06);
  --border-md:   rgba(255,255,255,0.1);
  --white:       #ffffff;
  --green:       #34d399;
  --red:         #f87171;
  --orange:      #fb923c;
  --yellow:      #fbbf24;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
ul { list-style: none; }

/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, #003d57 0%, #005f80 40%, #007ea8 100%);
  color: #e0f7ff;
  padding: 8px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: filter 0.2s;
  border-bottom: 1px solid rgba(0,212,255,0.15);
}
.topbar:hover { filter: brightness(1.1); }
@media (min-width: 640px) { .topbar { display: flex; } }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12, 14, 19, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) { .navbar-inner { padding: 0 40px; } }

.navbar-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-brand img {
  width: 34px; height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.5));
}
.brand-text { display: none; flex-direction: column; line-height: 1.1; }
@media (min-width: 560px) { .brand-text { display: flex; } }
.brand-name { font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.brand-name span { color: var(--cyan); }
.brand-tag { font-size: 9.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

.navbar-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); border-color: var(--border); }
.nav-link.active { color: var(--cyan); background: var(--cyan-soft); border-color: var(--cyan-border); }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 58px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12,14,19,0.92) 0%, rgba(12,14,19,0.60) 45%, rgba(12,14,19,0.15) 100%),
    linear-gradient(to top, rgba(12,14,19,0.85) 0%, transparent 45%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,212,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: linear-gradient(to right, black 30%, transparent 80%);
  -webkit-mask-image: linear-gradient(to right, black 30%, transparent 80%);
}
.hero-bloom {
  position: absolute;
  bottom: -100px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 28px;
}
@media (min-width: 768px)  { .hero-content { padding: 80px 48px; } }
@media (min-width: 1024px) { .hero-content { padding: 80px 80px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--cyan-border);
  border-radius: 100px;
  padding: 4px 14px 4px 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 680px;
}
.hero-title .accent { color: var(--cyan); text-shadow: 0 0 48px rgba(0,212,255,0.4); }

.hero-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 32px;
}
.stat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: var(--cyan); color: #06090f;
  font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 8px; border: none; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 28px rgba(0,212,255,0.3);
}
.btn-primary:hover { background: #33ddff; box-shadow: 0 0 44px rgba(0,212,255,0.5); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  background: transparent; color: var(--text);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 8px; border: 1px solid var(--border-md);
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); color: var(--white); }

.btn-cyan-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: var(--cyan-soft); color: var(--cyan);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 6px; border: 1px solid var(--cyan-border);
  cursor: pointer; transition: all 0.15s;
}
.btn-cyan-ghost:hover { background: rgba(0,212,255,0.18); color: var(--white); }

/* PAGE HEADER */
.page-header {
  position: relative;
  border-bottom: 1px solid var(--border);
  padding: 44px 0 36px;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -80px; left: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 28px; position: relative;
}
@media (min-width: 768px) { .page-header-inner { padding: 0 48px; } }

.page-header-eyebrow {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.page-header-eyebrow::before {
  content: ''; display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--cyan); border-radius: 2px;
}
.page-header h1 {
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.025em; margin-bottom: 8px;
}
.page-header p { font-size: 14px; color: var(--text-dim); max-width: 520px; line-height: 1.75; }

/* MAIN WRAPPER */
.main-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 36px 28px 88px; width: 100%;
}
@media (min-width: 768px) { .main-wrap { padding: 40px 48px 88px; } }

/* SEARCH */
.search-wrap { position: relative; margin-bottom: 20px; }
.search-icon {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint); pointer-events: none; display: flex;
}
.search-input {
  width: 100%; background: var(--bg-card);
  border: 1px solid var(--border-md); border-radius: 8px;
  padding: 11px 16px 11px 42px;
  color: var(--text); font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input::placeholder { color: var(--text-faint); }
.search-input:focus { border-color: var(--cyan-border); box-shadow: 0 0 0 3px rgba(0,212,255,0.07); }

/* NOTICE */
.notice {
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(0,212,255,0.02));
  border: 1px solid var(--cyan-border);
  border-radius: 10px; padding: 16px 20px;
  font-size: 13.5px; color: var(--text-dim); line-height: 1.75; margin-bottom: 28px;
}
.notice strong {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 5px;
}

/* ARTICLE CARDS */
.article-list { display: flex; flex-direction: column; gap: 5px; }
.article-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; transition: border-color 0.18s;
}
.article-card:hover { border-color: var(--border-md); }
.article-card[open] { border-color: var(--cyan-border); }
.article-summary {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px; cursor: pointer; list-style: none;
  user-select: none; transition: background 0.15s;
}
.article-summary::-webkit-details-marker { display: none; }
.article-summary::marker { display: none; }
.article-summary:hover { background: var(--bg-hover); }
.article-card[open] .article-summary { background: rgba(0,212,255,0.04); }

.article-num {
  flex-shrink: 0; width: 30px; height: 30px;
  border-radius: 6px; background: var(--bg-raised);
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700; color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
}
.article-meta { flex: 1; min-width: 0; }
.article-name { font-size: 14px; font-weight: 600; color: var(--white); display: block; margin-bottom: 1px; }
.article-cat { font-size: 11px; font-style: italic; color: var(--text-faint); }
.article-chevron { flex-shrink: 0; color: var(--text-faint); display: flex; transition: transform 0.2s, color 0.2s; }
.article-card[open] .article-chevron { transform: rotate(180deg); color: var(--cyan); }

.article-body {
  padding: 16px 18px 18px 62px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.15);
}
.article-body p { font-size: 13.5px; color: rgba(201,209,224,0.65); line-height: 1.75; margin-bottom: 8px; }
.article-body h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim); margin: 12px 0 6px;
}
.article-body ul { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
.article-body ul li {
  font-size: 13.5px; color: rgba(201,209,224,0.6);
  padding-left: 16px; line-height: 1.65; position: relative;
}
.article-body ul li::before {
  content: '›'; position: absolute; left: 2px;
  color: var(--cyan); font-size: 14px; line-height: 1.4;
}
.article-card.hidden { display: none !important; }

/* STRAFFEN */
.straffen-grid { display: grid; gap: 8px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .straffen-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .straffen-grid { grid-template-columns: repeat(3,1fr); } }

.straf-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 22px 20px 20px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.straf-card:hover { transform: translateY(-2px); border-color: var(--border-md); }
.straf-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--cyan); border-radius: 10px 10px 0 0;
}
.straf-card.safe::after   { background: var(--green); }
.straf-card.warn::after   { background: var(--yellow); }
.straf-card.danger::after { background: var(--orange); }
.straf-card.extreme::after{ background: var(--red); }

.straf-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.straf-cat-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); background: var(--cyan-soft);
  border: 1px solid var(--cyan-border); border-radius: 4px; padding: 2px 8px;
}
.straf-card.safe   .straf-cat-badge { color:var(--green);  background:rgba(52,211,153,0.08);  border-color:rgba(52,211,153,0.2); }
.straf-card.warn   .straf-cat-badge { color:var(--yellow); background:rgba(251,191,36,0.08);  border-color:rgba(251,191,36,0.2); }
.straf-card.danger .straf-cat-badge { color:var(--orange); background:rgba(251,146,60,0.08);  border-color:rgba(251,146,60,0.2); }
.straf-card.extreme .straf-cat-badge{ color:var(--red);    background:rgba(248,113,113,0.08); border-color:rgba(248,113,113,0.2); }

.straf-label { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.straf-desc { font-size: 12.5px; color: var(--text-dim); line-height: 1.65; }

/* ITEMS */
.cat-bar { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.cat-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--text-dim); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer; font-family: inherit; transition: all 0.15s; white-space: nowrap;
}
.cat-btn:hover { color: var(--white); border-color: var(--border-md); background: var(--bg-hover); }
.cat-btn.active { background: var(--cyan-soft); border-color: var(--cyan-border); color: var(--cyan); }
.cat-count { background: rgba(0,0,0,0.4); border-radius: 100px; padding: 0 5px; font-size: 9.5px; }
.items-meta { font-size: 11.5px; color: var(--text-faint); margin-bottom: 12px; }

.items-grid { display: grid; gap: 6px; grid-template-columns: repeat(auto-fill, minmax(115px, 1fr)); }
@media (min-width: 640px)  { .items-grid { grid-template-columns: repeat(auto-fill, minmax(128px,1fr)); gap:7px; } }
@media (min-width: 1024px) { .items-grid { grid-template-columns: repeat(auto-fill, minmax(138px,1fr)); gap:8px; } }

.item-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  transition: border-color 0.15s, transform 0.18s; cursor: default;
}
.item-card:hover { border-color: var(--cyan-border); transform: translateY(-2px); }
.item-img {
  background: var(--bg-raised); height: 92px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px; border-bottom: 1px solid var(--border);
}
.item-img img { max-width: 100%; max-height: 68px; object-fit: contain; transition: transform 0.2s; }
.item-card:hover .item-img img { transform: scale(1.09); }
.item-info { padding: 8px 10px 10px; }
.item-name { font-size: 11.5px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 3px; }
.item-key {
  font-size: 9.5px; color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; opacity: 0.65;
}
.item-card.hidden { display: none !important; }

/* INFO CARDS */
.section-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan);
  margin: 36px 0 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 24px; margin-bottom: 7px;
  transition: border-color 0.18s, background 0.18s;
}
.info-card:hover { background: var(--bg-hover); border-color: var(--border-md); }

/* FOOTER */
footer {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding: 52px 0 0;
  margin-top: auto;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 28px 48px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 40px;
}
@media (min-width: 768px) { .footer-inner { padding: 0 48px 48px; } }

.footer-brand { max-width: 260px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-row img {
  width: 30px; height: 30px; object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(0,212,255,0.35));
}
.footer-logo-row strong { font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.footer-logo-row strong span { color: var(--cyan); }
.footer-brand p { font-size: 12.5px; color: var(--text-dim); line-height: 1.7; }

.footer-cols { display: none; gap: 52px; }
@media (min-width: 768px) { .footer-cols { display: flex; } }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--text-dim); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 28px;
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
@media (min-width: 768px) { .footer-bottom { padding: 16px 48px; } }
.footer-bottom p { font-size: 11.5px; color: var(--text-faint); }

/* 404 */
.notfound {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px; gap: 14px;
}
.notfound-num {
  font-size: 130px; font-weight: 900; line-height: 1;
  letter-spacing: -0.05em; color: var(--cyan);
  text-shadow: 0 0 100px rgba(0,212,255,0.3);
}
.notfound h2 { font-size: 22px; font-weight: 700; color: var(--white); }
.notfound p  { font-size: 14px; color: var(--text-dim); }
.notfound-actions { display: flex; gap: 12px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
