﻿/* ════════════════════════════════════════════════════════════
   ENDEK·LEARN Design System
   Editorial Heritage · Tenun Endek Klungkung
   ════════════════════════════════════════════════════════════ */

:root {
  /* palette */
  --cream:       #F5EFE3;
  --cream-light: #FAF6EC;
  --cream-dark:  #E8DFCB;
  --maroon:      #9B2C2C;
  --maroon-dark: #6B1F1F;
  --maroon-soft: #B8413F;
  --brown:       #5C3A21;
  --brown-soft:  #7A5538;
  --gold:        #C9A464;
  --gold-dark:   #A88846;
  --ink:         #1F1816;
  --ink-soft:    #2D241F;
  --muted:       #8B7864;
  --line:        #D9CDB9;
  --line-soft:   #E8DFCB;
  --white:       #FFFFFF;
  --success:     #3F6B3F;
  --danger:      #A82A2A;
  --warn:        #B47A2C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--brown);
  background: var(--cream);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: 1.5px solid transparent;
  background: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary { background: var(--maroon); color: var(--cream); }
.btn-primary:hover { background: var(--maroon-dark); }
.btn-ghost { border-color: var(--brown); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-dark); color: var(--cream); }
.btn-text { padding: 8px 0; color: var(--maroon); font-weight: 500; }
.btn-text:hover { color: var(--maroon-dark); }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; padding: 14px; font-size: 14px; }
.btn-icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
  color: var(--brown);
  border: 1px solid var(--line);
}
.btn-icon:hover { color: var(--maroon); border-color: var(--maroon); }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-weight: 500; font-size: 13px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--gold);
}
.text-link:hover { color: var(--maroon); border-color: var(--maroon); }

/* ═══════════ EYEBROW & SECTION HEADS ═══════════ */
.eyebrow {
  font-size: 10px; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--maroon); font-weight: 600;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--maroon);
}
.eyebrow-plain::before { display: none; }

/* ═══════════ FORM ═══════════ */
.field { margin-bottom: 18px; }
.field-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.field-input {
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  transition: border-color 0.2s;
}
.field-input:focus { border-color: var(--maroon); }
.field-input::placeholder { color: var(--muted); font-style: italic; font-weight: 300; }
.field-help {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  font-style: italic;
}
.field-boxed .field-input {
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  background: var(--cream-light);
}
.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1; }

/* ═══════════ APP SHELL ═══════════ */
.screen-canvas {
  background: #DDD3C0;
  padding: 60px 48px;
  min-height: 100vh;
}
.page-heading {
  font-size: 32px;
  margin-bottom: 8px;
}
.page-heading + .page-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}
.screen-section {
  margin-bottom: 60px;
}
.screen-section-label {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brown);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.screen-section-label .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--maroon);
  font-weight: 500;
}
.screen-section-sub {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 32px;
}
.screen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.screen-wrap { display: flex; flex-direction: column; gap: 12px; }
.screen-label {
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.screen-label .label-num { color: var(--maroon); }
.screen {
  width: 1440px;
  height: 900px;
  background: var(--cream);
  border: 1px solid var(--brown);
  overflow: hidden;
  position: relative;
  font-size: 14px;
}

/* ═══════════ TOP BAR (in-app) ═══════════ */
.appbar {
  height: 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
}
.appbar .brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.3px;
}
.appbar .brand .dot { color: var(--maroon); font-style: italic; font-weight: 600; font-family: 'Playfair Display', serif; }
.appbar .brand .badge-admin {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-left: 8px;
  padding: 3px 7px;
  border: 1px solid var(--gold-dark);
}
.appbar-search {
  flex: 1;
  max-width: 360px;
  margin: 0 24px;
  position: relative;
}
.appbar-search input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  font-size: 13px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  color: var(--ink);
}
.appbar-search input::placeholder { color: var(--muted); font-style: italic; }
.appbar-search .search-icon {
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--muted);
}
.appbar-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.appbar-actions .avatar {
  width: 36px; height: 36px;
  background: var(--brown);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
}

/* ═══════════ SIDEBAR ═══════════ */
.sidebar {
  position: absolute;
  left: 0; top: 64px;
  width: 240px;
  height: calc(100% - 64px);
  background: var(--cream-light);
  border-right: 1px solid var(--line);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.sidebar-group {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding: 16px 12px 8px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px;
  font-size: 13px;
  color: var(--brown);
  font-weight: 500;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.sidebar-item:hover { color: var(--ink); background: rgba(155,44,44,0.04); }
.sidebar-item.active {
  color: var(--maroon);
  border-left-color: var(--maroon);
  background: rgba(155,44,44,0.06);
  font-weight: 600;
}
.sidebar-item svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.sidebar-footer {
  margin-top: auto;
  padding: 16px 12px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}

/* ═══════════ MAIN ═══════════ */
.main {
  position: absolute;
  left: 240px; top: 64px;
  right: 0; bottom: 0;
  padding: 32px 40px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.main-no-sidebar {
  position: absolute;
  left: 0; top: 64px;
  right: 0; bottom: 0;
  padding: 32px 40px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.crumb {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.crumb .sep { margin: 0 8px; color: var(--gold); }
.crumb .here { color: var(--maroon); font-weight: 600; }
.h-title {
  font-size: 32px;
  margin-bottom: 6px;
}
.h-title em { font-style: italic; color: var(--maroon); }
.h-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}

/* ═══════════ CARDS ═══════════ */
.card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 20px;
}
.card-flat {
  background: transparent;
  border: 1px solid var(--line);
  padding: 20px;
}
.card-dark {
  background: var(--ink);
  color: var(--cream);
  padding: 24px;
}

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  padding: 18px 20px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  position: relative;
}
.stat .stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.stat .stat-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.stat .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
}
.stat .stat-trend {
  font-size: 10px;
  color: var(--brown-soft);
  margin-top: 8px;
  font-style: italic;
}

/* ═══════════ MODULE CARDS ═══════════ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s;
  cursor: pointer;
}
.module-card:hover { transform: translateY(-2px); }
.module-cover {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(91,44,44,0.85), rgba(31,24,22,0.92)),
    repeating-linear-gradient(45deg,
      rgba(201,164,100,0.08) 0,
      rgba(201,164,100,0.08) 1px,
      transparent 1px, transparent 12px);
  position: relative;
  color: var(--cream);
}
.module-cover-num {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.module-cover-name {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
}
.module-body { padding: 16px; }
.module-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.module-body .module-desc {
  font-size: 12px;
  color: var(--brown-soft);
  margin-bottom: 12px;
  line-height: 1.55;
}
.module-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.module-meta .dot { color: var(--gold); }
.bar {
  width: 100%; height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.bar .fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--maroon);
}

/* ═══════════ TAGS / BADGES ═══════════ */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--brown);
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}
.tag-maroon { border-color: var(--maroon); color: var(--maroon); }
.tag-gold { border-color: var(--gold-dark); color: var(--gold-dark); }
.tag-fill-maroon { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }
.tag-fill-ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.tag-success { border-color: var(--success); color: var(--success); }
.tag-warn { border-color: var(--warn); color: var(--warn); }
.tag-danger { border-color: var(--danger); color: var(--danger); }

/* ═══════════ TABLE ═══════════ */
.table-wrap {
  background: var(--cream-light);
  border: 1px solid var(--line);
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.table thead th {
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border-bottom: 1.5px solid var(--brown);
  color: var(--brown);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: rgba(201,164,100,0.04); }
.table .row-num {
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  font-size: 11px;
}
.table-actions { display: flex; gap: 6px; justify-content: flex-end; }
.table-actions a {
  font-size: 11px;
  color: var(--brown);
  padding: 4px 0;
  border-bottom: 1px solid var(--gold);
  transition: all 0.2s;
}
.table-actions a.danger { color: var(--danger); border-color: var(--danger); }
.table-actions a:hover { color: var(--ink); }

/* ═══════════ AUTH ═══════════ */
.auth-frame {
  background: var(--cream);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.auth-canvas {
  display: flex;
  min-height: 100%;
}
.auth-side {
  flex: 1.2;
  background: var(--ink);
  color: var(--cream);
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(201,164,100,0.05) 0,
      rgba(201,164,100,0.05) 1px,
      transparent 1px, transparent 14px),
    repeating-linear-gradient(-45deg,
      rgba(201,164,100,0.04) 0,
      rgba(201,164,100,0.04) 1px,
      transparent 1px, transparent 14px);
  opacity: 0.7;
}
.auth-side > * { position: relative; z-index: 1; }
.auth-side .brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.4px;
}
.auth-side .brand .dot { color: var(--gold); font-style: italic; font-weight: 600; font-family: 'Playfair Display', serif; }
.auth-side .auth-side-content { max-width: 440px; }
.auth-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 500;
}
.auth-side h2 em { color: var(--gold); font-style: italic; }
.auth-side .auth-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  font-style: italic;
  color: var(--cream);
  opacity: 0.85;
  font-size: 15px;
  line-height: 1.65;
}
.auth-side .auth-quote-source {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  font-style: normal;
  font-weight: 600;
}
.auth-side .auth-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
}

.auth-form-side {
  flex: 1;
  background: var(--cream);
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.auth-form-card { max-width: 400px; width: 100%; }
.auth-form-card .eyebrow { margin-bottom: 20px; }
.auth-form-card h1 {
  font-size: 38px;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
}
.auth-form-card h1 em { color: var(--maroon); font-style: italic; }
.auth-form-card .auth-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}
.auth-form-card .auth-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.auth-form-card .auth-foot a { color: var(--maroon); font-weight: 600; }
.auth-form-card .auth-extra {
  margin: 6px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.auth-form-card .auth-extra a { color: var(--maroon); }

/* ═══════════ VIDEO ═══════════ */
.video-card {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(91,44,44,0.92), rgba(15,12,10,0.95)),
    repeating-linear-gradient(45deg,
      rgba(201,164,100,0.08) 0,
      rgba(201,164,100,0.08) 1px,
      transparent 1px, transparent 12px);
  position: relative;
  color: var(--cream);
}
.video-card .video-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(31,24,22,0.4);
}
.video-card .video-play svg { color: var(--gold); margin-left: 4px; }
.video-card .video-corner {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.video-card .video-time {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cream);
  background: rgba(15,12,10,0.7);
  padding: 4px 10px;
  letter-spacing: 1px;
}
.video-card .video-caption {
  position: absolute;
  bottom: 14px; left: 14px;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
}

/* ═══════════ STEPPER (9 tahap) ═══════════ */
.stepper {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.step {
  flex: 1;
  min-width: 72px;
  padding: 8px 10px;
  background: var(--cream-light);
  border-bottom: 2px solid var(--line);
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}
.step .step-num {
  font-family: 'JetBrains Mono', monospace;
  display: block;
  font-size: 9px;
  color: var(--gold-dark);
  margin-bottom: 2px;
  letter-spacing: 1px;
}
.step.done {
  background: transparent;
  border-bottom-color: var(--brown-soft);
  color: var(--brown);
}
.step.done .step-num { color: var(--brown); }
.step.current {
  background: var(--maroon);
  color: var(--cream);
  border-bottom-color: var(--maroon);
}
.step.current .step-num { color: var(--gold); }

/* ═══════════ QUIZ ═══════════ */
.quiz-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 36px 44px;
}
.quiz-q {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
}
.quiz-opts { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-opt:hover { border-color: var(--brown); }
.quiz-opt.selected { border-color: var(--maroon); background: rgba(155,44,44,0.04); }
.quiz-opt .radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
}
.quiz-opt.selected .radio { border-color: var(--maroon); }
.quiz-opt.selected .radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--maroon);
  border-radius: 50%;
}
.quiz-opt .opt-letter {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 16px;
  font-weight: 600;
  margin-right: 4px;
}

/* ═══════════ UTILITIES ═══════════ */
.flex { display: flex; }
.between { display: flex; justify-content: space-between; align-items: center; }
.row-gap-12 { gap: 12px; }
.row-gap-16 { gap: 16px; }
.col { display: flex; flex-direction: column; }
.col-gap-12 { gap: 12px; }
.col-gap-16 { gap: 16px; }
.col-gap-24 { gap: 24px; }
.text-muted { color: var(--muted); }
.text-ink { color: var(--ink); }
.text-maroon { color: var(--maroon); }
.text-gold { color: var(--gold-dark); }
.text-serif { font-family: 'Playfair Display', serif; }
.text-mono { font-family: 'JetBrains Mono', monospace; }
.text-italic { font-style: italic; }
.fz-11 { font-size: 11px; } .fz-12 { font-size: 12px; } .fz-13 { font-size: 13px; }
.fz-14 { font-size: 14px; } .fz-16 { font-size: 16px; } .fz-18 { font-size: 18px; }
.fz-22 { font-size: 22px; } .fz-28 { font-size: 28px; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.divider { border-top: 1px solid var(--line); margin: 16px 0; }
.divider-gold { border-top: 1px solid var(--gold); margin: 16px 0; }
