/* =============================================
   MistyStudios — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Dark theme — kleuren gebaseerd op MistyStudios logo */
  --bg: #060b14;
  --bg2: #0a1120;
  --bg3: #0f1929;
  --surface: #111f33;
  --surface2: #172840;
  --border: rgba(43,127,255,0.1);
  --border2: rgba(43,127,255,0.18);
  --text: #e8eef8;
  --text2: #7a9ac0;
  --text3: #3d5a7a;
  --accent: #2b7fff;
  --accent2: #f5a000;
  --accent-glow: rgba(43,127,255,0.28);
  --accent2-glow: rgba(245,160,0,0.18);
  --gradient: linear-gradient(135deg, #1a5fd4 0%, #2b7fff 60%, #38a0ff 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(43,127,255,0.1) 0%, rgba(43,127,255,0.04) 100%);
  --success: #3ecf8e;
  --warning: #f5a000;
  --danger: #ef4444;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.7);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="light"] {
  --bg: #f0f4fa;
  --bg2: #e4ecf7;
  --bg3: #d8e4f2;
  --surface: #ffffff;
  --surface2: #f5f8ff;
  --border: rgba(27,100,200,0.1);
  --border2: rgba(27,100,200,0.18);
  --text: #071428;
  --text2: #2d4d7a;
  --text3: #6888aa;
  --accent: #1a5fd4;
  --accent2: #e09200;
  --accent-glow: rgba(26,95,212,0.15);
  --accent2-glow: rgba(224,146,0,0.12);
  --gradient: linear-gradient(135deg, #1a5fd4 0%, #2b7fff 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(26,95,212,0.08) 0%, rgba(43,127,255,0.04) 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition-slow), color var(--transition-slow);
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent2); }

img { max-width: 100%; height: auto; display: block; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: -0.03em; }
.display-sm { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.5rem; }
.section-sub { color: var(--text2); font-size: 1.05rem; max-width: 540px; }
.label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent2); }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-slow);
}

#navbar.scrolled {
  background: rgba(var(--bg-raw, 8,10,15), 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

[data-theme="light"] #navbar.scrolled {
  background: rgba(244,245,249,0.85);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--gradient);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--surface);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--text2);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-icon:hover { color: var(--text); border-color: var(--accent); }

.lang-toggle {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  overflow: hidden;
}

.lang-toggle button {
  padding: 6px 10px;
  background: none;
  border: none;
  color: var(--text3);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}

.lang-toggle button.active {
  background: var(--accent);
  color: #fff;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
  color: #fff;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  background: var(--surface2);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); color: var(--text); border-color: var(--border2); }

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-slow);
}
.card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow); }

.card-sm { padding: 20px; border-radius: var(--radius); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #2b7fff 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1a5fd4 0%, transparent 70%);
  bottom: -100px; left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: rgba(43,127,255,0.08);
  border: 1px solid rgba(43,127,255,0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text2);
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
  width: 24px; height: 24px;
  background: var(--gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text2);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.2s both;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label { font-size: 0.82rem; color: var(--text2); margin-top: 2px; }

/* ---- Project Cards ---- */
.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
}

.project-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--accent-glow);
}

.project-card-header {
  padding: 32px;
  background: var(--gradient-subtle);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.project-icon {
  width: 56px; height: 56px;
  background: var(--gradient);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.project-card-body { padding: 28px 32px 32px; }

.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.project-stat-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}
.project-stat-key { font-size: 0.72rem; color: var(--text3); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}
.status-online { background: rgba(62,207,142,0.1); color: var(--success); }
.status-offline { background: rgba(239,68,68,0.1); color: var(--danger); }
.status-maintenance { background: rgba(245,166,35,0.1); color: var(--warning); }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-online .status-dot { animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- Team Grid ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-slow);
}
.team-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow); }

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.team-ceo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  background: linear-gradient(135deg, #f5a000, #ffca45);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #071428;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

/* ---- Status Grid ---- */
.status-grid { display: grid; gap: 12px; }

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.status-row:hover { border-color: var(--border2); }

.status-row-name { font-weight: 500; display: flex; align-items: center; gap: 10px; }
.status-row-type { font-size: 0.72rem; color: var(--text3); }
.status-uptime { font-size: 0.82rem; color: var(--text3); }

/* ---- Roadmap ---- */
.roadmap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .roadmap-grid { grid-template-columns: 1fr; } }

.roadmap-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}

.roadmap-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: all var(--transition);
}
.roadmap-item:hover { border-color: var(--border2); }

.roadmap-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.planned .roadmap-icon { background: rgba(43,127,255,0.08); }
.in_progress .roadmap-icon { background: rgba(43,127,255,0.15); }
.completed .roadmap-icon { background: rgba(62,207,142,0.12); }

.roadmap-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.planned .roadmap-label { color: var(--text2); }
.in_progress .roadmap-label { color: var(--accent); }
.completed .roadmap-label { color: var(--success); }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: var(--surface);
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--surface2); }
.faq-question.open { background: var(--surface2); }
.faq-chevron { transition: transform var(--transition); font-style: normal; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg2);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 16px 20px; color: var(--text2); font-size: 0.9rem; }

/* ---- Footer ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { color: var(--text2); font-size: 0.88rem; margin: 12px 0 20px; max-width: 260px; line-height: 1.7; }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text2); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { color: var(--text3); font-size: 0.82rem; }

.social-links { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--text2);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-glow); }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ---- Discord Widget ---- */
.discord-widget {
  background: #5865F2;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.discord-widget::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.discord-widget h3 { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.discord-widget p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 0.9rem; }
.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #5865F2;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.discord-btn:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); color: #5865F2; }

/* ---- Mobile Nav ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open a { padding: 12px 16px; }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
}
.page-hero .label { margin-bottom: 12px; display: block; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text2); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--accent); }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ---- Misc ---- */
.divider { height: 1px; background: var(--border); margin: 0; }
.tag {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--text2);
}
.tag-accent { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); }

/* Loading spinner */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(43,127,255,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(43,127,255,0.35); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text2); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.w-full { width: 100%; }

/* Print */
@media print { #navbar, footer { display: none !important; } }
