/* Kluent theme — Syne + DM Sans, dark + lime */
/* Base reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #080808;
  color: #F0EDE6;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #2a2a25; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #C8F524; }

/* Selection */
::selection { background: rgba(200, 245, 36, 0.25); color: #F0EDE6; }

/* Focus */
:focus-visible {
  outline: 2px solid #C8F524;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Images */
img { max-width: 100%; display: block; }

/* Links */
a { color: inherit; }

/* Selection color */
mark { background: rgba(200, 245, 36, 0.3); color: inherit; }

/* Responsive helpers */
@media (max-width: 600px) {
  .hide-mobile { display: none !important; }
}
