/* ── Fonts ──────────────────────────────────────────── */
@font-face {
  font-family: 'Lazurski';
  src: url('assets/fonts/lazurski_regular.otf') format('opentype'),
       url('assets/fonts/lazurski_regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lazurski';
  src: url('assets/fonts/lazurski_bold.otf') format('opentype'),
       url('assets/fonts/lazurski_bold.ttf') format('truetype');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}
/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* ── Base ───────────────────────────────────────────── */
body {
  font-family: 'Lazurski', Georgia, serif;
  color: #fff;
  background: #23292b;
  line-height: 1.5;
  font-size: 18px;
}
a { color: #00aeff; text-decoration: none; }
a:hover { text-decoration: underline; }
/* ── Page wrapper (matches index.css .page) ─────────── */
.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
/* ── Navigation (matches index.css) ─────────────────── */
.nav-wrap {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  margin-bottom: 20px;
}
.nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid #3f4c55;
  border-radius: 20px;
  overflow: hidden;
}
.nav-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #1c2224;
  border-radius: 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}
.nav-item {
  position: relative;
  z-index: 1;
  cursor: pointer;
  white-space: nowrap;
  padding: 0 30px;
  height: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.nav-item:hover { color: #00aeff; text-decoration: none; }
.nav-item.active { color: #fff; }
/* ── Content container ──────────────────────────────── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  animation: fadeIn 0.3s ease;
}
.container.fade-out {
  opacity: 0;
  transition: opacity 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* ── Thoughts list ──────────────────────────────────── */
.thoughts-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.thought-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.thought-symbol {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  flex-shrink: 0;
  user-select: none;
}
.thought-text {
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
}
/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .page { padding: 0 24px; }
}
@media (max-width: 768px) {
  .page { padding: 0 16px; }
  .container { padding: 40px 20px 60px; }
  .thought-text { font-size: 16px; }
  .thought-symbol { font-size: 16px; }
}
@media (max-width: 480px) {
  .page { padding: 0 12px; }
  .container { padding: 32px 16px 48px; }
}