@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --lr-bg: #0d0a08;
  --lr-surface: #1a1512;
  --lr-panel: #221c18;
  --lr-primary: #c9a227;
  --lr-primary-light: #e5c158;
  --lr-secondary: #8b4513;
  --lr-accent: #b8860b;
  --lr-text: #f5f0e6;
  --lr-muted: #a89f94;
  --lr-border: #3d352b;
  --lr-gold-border: rgba(201, 162, 39, 0.4);
  --lr-gradient: linear-gradient(135deg, #c9a227 0%, #b8860b 50%, #8b6914 100%);
  --lr-shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.15);
  --lr-card-bg: rgba(26, 21, 18, 0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--lr-bg);
  color: var(--lr-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lr-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--lr-secondary); }

/* ========== LR-HEADER ========== */
.lr-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 10, 8, 0.92);
  border-bottom: 2px solid var(--lr-gold-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease;
}

.lr-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.lr-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lr-header__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--lr-gold-border);
}

.lr-header__logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lr-primary-light);
  letter-spacing: 0.08em;
}

.lr-nav { display: flex; align-items: center; gap: 2.25rem; }

.lr-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lr-muted);
  transition: color 0.25s ease;
  position: relative;
  letter-spacing: 0.03em;
}

.lr-nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lr-primary);
  transition: width 0.3s ease;
}

.lr-nav__link:hover { color: var(--lr-primary-light); }
.lr-nav__link:hover::after { width: 100%; }

.lr-nav__link--active {
  color: var(--lr-primary-light);
}
.lr-nav__link--active::after { width: 100%; }

.lr-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--lr-primary);
  color: #0d0a08;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  border: 1px solid var(--lr-primary-light);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.lr-nav__cta:hover {
  background: var(--lr-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--lr-shadow-gold);
  color: #0d0a08;
}

/* Burger */
.lr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 4px;
}

.lr-burger__line {
  width: 26px;
  height: 2px;
  background: var(--lr-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lr-burger--open .lr-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lr-burger--open .lr-burger__line:nth-child(2) { opacity: 0; }
.lr-burger--open .lr-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.lr-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 10, 8, 0.98);
  border-left: 2px solid var(--lr-gold-border);
  z-index: 990;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.lr-mobile-menu--open { display: flex; }

.lr-mobile-menu__link {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--lr-muted);
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.lr-mobile-menu__link:hover { color: var(--lr-primary-light); }

/* ========== LR-HERO ========== */
.lr-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 10, 8, 0.92) 0%,
    rgba(13, 10, 8, 0.75) 45%,
    rgba(13, 10, 8, 0.5) 100%
  );
  z-index: 1;
}

.lr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}

.lr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--lr-gold-border);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lr-primary-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.lr-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.lr-hero__title-accent {
  color: var(--lr-primary-light);
  font-weight: 700;
}

.lr-hero__desc {
  font-size: 1.1rem;
  color: var(--lr-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lr-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== LR-BTN ========== */
.lr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.lr-btn--primary {
  background: var(--lr-primary);
  color: #0d0a08;
  border-color: var(--lr-primary-light);
}
.lr-btn--primary:hover {
  background: var(--lr-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--lr-shadow-gold);
  color: #0d0a08;
}

.lr-btn--outline {
  background: transparent;
  color: var(--lr-text);
  border: 1px solid var(--lr-border);
}
.lr-btn--outline:hover {
  border-color: var(--lr-primary);
  color: var(--lr-primary-light);
  transform: translateY(-2px);
}

.lr-btn--small {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* ========== LR-SECTION ========== */
.lr-section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.lr-section--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.lr-section--wide {
  max-width: 1520px;
}

.lr-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.lr-section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lr-primary);
  margin-bottom: 0.75rem;
}

.lr-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.lr-section__title-accent {
  color: var(--lr-primary-light);
  font-weight: 700;
}

.lr-section__desc {
  font-size: 1rem;
  color: var(--lr-muted);
  line-height: 1.7;
}

/* ========== LR-CARD ========== */
.lr-card {
  background: var(--lr-panel);
  border: 1px solid var(--lr-border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lr-card:hover {
  transform: translateY(-3px);
  border-color: var(--lr-gold-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), var(--lr-shadow-gold);
}

.lr-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--lr-gold-border);
  color: var(--lr-primary);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.lr-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Cinzel', serif;
  color: var(--lr-primary-light);
}

.lr-card__text {
  font-size: 0.9rem;
  color: var(--lr-muted);
  line-height: 1.6;
}

.lr-card__media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
  aspect-ratio: 2 / 1;
  background: var(--lr-border);
}

.lr-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lr-card:hover .lr-card__media img {
  transform: scale(1.05);
}

/* ========== LR-SPLIT (zigzag layout) ========== */
.lr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}

.lr-split--reverse { direction: rtl; }
.lr-split--reverse > * { direction: ltr; }

.lr-split__media {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--lr-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.lr-split__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lr-split__media:hover img { transform: scale(1.03); }

.lr-split__content { padding: 1rem 0; }

.lr-split__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.lr-split__text {
  font-size: 1rem;
  color: var(--lr-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ========== LR-GRID ========== */
.lr-grid {
  display: grid;
  gap: 1.5rem;
}

.lr-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lr-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ========== LR-GALLERY ========== */
.lr-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lr-gallery__item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--lr-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lr-gallery__item:hover {
  transform: scale(1.02);
  border-color: var(--lr-gold-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), var(--lr-shadow-gold);
}

.lr-gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ========== LR-AWARDS ========== */
.lr-award {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--lr-panel);
  border: 1px solid var(--lr-border);
  border-radius: 8px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lr-award:hover {
  border-color: var(--lr-gold-border);
  box-shadow: var(--lr-shadow-gold);
}

.lr-award__icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--lr-gold-border);
  color: var(--lr-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.lr-award__info { flex: 1; }

.lr-award__title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--lr-text);
}

.lr-award__desc {
  font-size: 0.85rem;
  color: var(--lr-muted);
}

/* ========== LR-CTA ========== */
.lr-cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.06) 0%, var(--lr-surface) 100%);
  border-top: 2px solid var(--lr-gold-border);
  border-bottom: 1px solid var(--lr-border);
}

.lr-cta__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.lr-cta__text {
  color: var(--lr-muted);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ========== LR-FOOTER ========== */
.lr-footer {
  background: var(--lr-surface);
  border-top: 2px solid var(--lr-gold-border);
  padding: 4rem 1.5rem 2rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.lr-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.lr-footer__brand-desc {
  font-size: 0.9rem;
  color: var(--lr-muted);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

.lr-footer__col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--lr-primary-light);
  letter-spacing: 0.05em;
}

.lr-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lr-footer__link {
  font-size: 0.875rem;
  color: var(--lr-muted);
  transition: color 0.3s ease;
}

.lr-footer__link:hover { color: var(--lr-primary-light); }

.lr-footer__bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--lr-muted);
}

/* ========== LR-REVIEW ========== */
.lr-review {
  background: var(--lr-panel);
  border: 1px solid var(--lr-border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lr-review:hover {
  transform: translateY(-3px);
  border-color: var(--lr-gold-border);
  box-shadow: var(--lr-shadow-gold);
}

.lr-review__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lr-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--lr-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--lr-primary-light);
}

.lr-review__author {
  font-weight: 600;
  font-size: 0.95rem;
}

.lr-review__stars {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.lr-review__text {
  font-size: 0.9rem;
  color: var(--lr-muted);
  line-height: 1.6;
}

/* ========== LR-STAT ========== */
.lr-stat {
  text-align: center;
  padding: 1.5rem;
}

.lr-stat__number {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lr-primary-light);
  margin-bottom: 0.25rem;
}

.lr-stat__label {
  font-size: 0.9rem;
  color: var(--lr-muted);
}

/* ========== LR-WAVE-DIVIDER ========== */
.lr-wave {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.lr-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.lr-wave path { fill: var(--lr-surface); }

/* ========== LR-FEATURE-LIST ========== */
.lr-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lr-feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--lr-muted);
}

.lr-feature-list__item i {
  color: var(--lr-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ========== LR-COOKIE-BANNER ========== */
.lr-cookie {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--lr-panel);
  border-top: 2px solid var(--lr-gold-border);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.lr-cookie__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lr-cookie__text {
  font-size: 0.875rem;
  color: var(--lr-muted);
  flex: 1;
}

.lr-cookie__text a { color: var(--lr-primary); text-decoration: underline; }

.lr-cookie__actions { display: flex; gap: 0.75rem; }

/* ========== LR-LEGAL ========== */
.lr-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

.lr-legal__title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.lr-legal__updated {
  font-size: 0.85rem;
  color: var(--lr-muted);
  margin-bottom: 2.5rem;
}

.lr-legal__section {
  margin-bottom: 2rem;
}

.lr-legal__heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--lr-primary-light);
  font-family: 'Cinzel', serif;
}

.lr-legal__text {
  font-size: 0.95rem;
  color: var(--lr-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.lr-legal__text ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.lr-legal__text li {
  margin-bottom: 0.4rem;
}

/* ========== LR-PAGE-HERO ========== */
.lr-page-hero {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--lr-border);
}

.lr-page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.lr-page-hero__desc {
  font-size: 1.05rem;
  color: var(--lr-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== LR-RATING-BOX ========== */
.lr-rating {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--lr-panel);
  border: 1px solid var(--lr-gold-border);
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto 3rem;
  box-shadow: var(--lr-shadow-gold);
}

.lr-rating__score {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--lr-primary-light);
}

.lr-rating__stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.lr-rating__count {
  font-size: 0.95rem;
  color: var(--lr-muted);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.1); }
  50% { box-shadow: 0 0 28px rgba(201, 162, 39, 0.18); }
}

.lr-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lr-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .lr-footer__inner { grid-template-columns: 1fr 1fr; }
  .lr-split { grid-template-columns: 1fr; gap: 2rem; }
  .lr-split--reverse { direction: ltr; }
  .lr-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lr-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .lr-nav { display: none; }
  .lr-burger { display: flex; }

  .lr-hero__content { padding: 7rem 1.25rem 3rem; }
  .lr-section { padding: 3.5rem 1.25rem; }
  .lr-grid--2,
  .lr-grid--3,
  .lr-grid--4 { grid-template-columns: 1fr; }
  .lr-gallery { grid-template-columns: 1fr; }
  .lr-gallery__item img { height: 200px; }

  .lr-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .lr-footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .lr-cookie__inner { flex-direction: column; text-align: center; }
  .lr-cookie__actions { justify-content: center; }

  .lr-award { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .lr-hero__title { font-size: 2rem; }
  .lr-hero__actions { flex-direction: column; width: 100%; }
  .lr-btn { width: 100%; justify-content: center; }
  .lr-header__inner { height: 60px; }
  .lr-header__logo-img { width: 32px; height: 32px; }
  .lr-header__logo-text { font-size: 1.05rem; }
}

/* ========== SELECTION ========== */
::selection {
  background: rgba(201, 162, 39, 0.35);
  color: #0d0a08;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lr-bg); }
::-webkit-scrollbar-thumb {
  background: var(--lr-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--lr-primary); }
