/* ===========================
   ReraGuruji Certificate Platform
   Main Stylesheet
=========================== */

:root {
  --gold: #C9932E;
  --gold-light: #F0C96B;
  --gold-dark: #9A6E1A;
  --navy: #0D1B2A;
  --navy-mid: #1A2E45;
  --navy-light: #243B55;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE0;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --accent: #E84545;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201,147,46,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,147,46,0.2);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo {
  width: 40px; height: 40px; background: var(--gold);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 900; color: var(--white);
  font-size: 14px; letter-spacing: 1px;
}
.nav__name { color: var(--white); font-weight: 500; font-size: 15px; }
.accent { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav__links a:hover { color: var(--gold); }

.nav__cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 10px 24px; border-radius: 8px; font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav__cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn--primary { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,147,46,0.4); }
.btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy-light); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--lg { padding: 18px 40px; font-size: 17px; }
.btn--white { background: var(--white); color: var(--navy); }
.btn--danger { background: #dc2626; color: var(--white); }
.btn--danger:hover { background: #b91c1c; }
.btn--success { background: #16a34a; color: var(--white); }
.btn--success:hover { background: #15803d; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  padding-top: 70px;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.hero__orb--1 {
  width: 600px; height: 600px; background: var(--gold);
  top: -200px; right: -200px;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px; background: #3B82F6;
  bottom: -100px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,147,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,147,46,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero__content {
  position: relative; z-index: 1;
  padding: 80px 24px 40px;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(201,147,46,0.15); border: 1px solid rgba(201,147,46,0.3);
  color: var(--gold-light); padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 72px); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero__highlight {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-dark);
  text-underline-offset: 6px;
}

.hero__desc {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 600px; margin: 0 auto 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero__stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  animation: fadeUp 0.6s ease 0.4s both;
}
.stat { text-align: center; }
.stat__num { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.stat__label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ===== HERO PREVIEW ===== */
.hero__preview {
  position: relative; z-index: 1;
  padding: 40px 24px 80px;
  display: flex; justify-content: center;
}

.preview__card {
  position: relative;
  animation: fadeUp 0.8s ease 0.5s both;
}

.preview__cert {
  background: var(--white);
  border-radius: var(--radius);
  padding: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,147,46,0.3);
  max-width: 680px; width: 100%;
  transform: perspective(1000px) rotateX(2deg);
}

.preview__cert-inner {
  border: 3px solid var(--gold);
  border-radius: 12px;
  padding: 40px 50px;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #FAF7F2 100%);
  position: relative;
}

.preview__border {
  position: absolute; inset: 8px;
  border: 1px solid rgba(201,147,46,0.3);
  border-radius: 8px;
  pointer-events: none;
}

.preview__logo { font-size: 32px; margin-bottom: 8px; }
.preview__sub { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.preview__name { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.preview__course { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.preview__title-cert { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold-dark); margin-bottom: 20px; }
.preview__line { width: 120px; height: 2px; background: var(--gold); margin: 0 auto 12px; }
.preview__date { font-size: 13px; color: var(--text-muted); }

.preview__badge-float {
  position: absolute; top: -12px; right: -12px;
  background: #16a34a; color: var(--white);
  padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(22,163,74,0.4);
}

/* ===== SECTION HEADERS ===== */
.section__header { text-align: center; margin-bottom: 60px; }
.section__tag {
  display: inline-block; background: rgba(201,147,46,0.1);
  border: 1px solid rgba(201,147,46,0.3); color: var(--gold-dark);
  padding: 6px 16px; border-radius: 50px; font-size: 12px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section__title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--navy); }

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: var(--cream); }

.features__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature__card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.feature__card--accent { background: var(--navy); color: var(--white); }
.feature__card--accent h3, .feature__card--accent p { color: rgba(255,255,255,0.9); }

.feature__icon { font-size: 36px; margin-bottom: 16px; display: block; }
.feature__card h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 10px; color: var(--navy); }
.feature__card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: var(--navy); }
.how-it-works .section__title { color: var(--white); }

.steps {
  display: flex; align-items: flex-start; gap: 20px;
  justify-content: center; margin-bottom: 60px; flex-wrap: wrap;
}

.step {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,147,46,0.2);
  border-radius: var(--radius); padding: 32px 28px;
  max-width: 280px; flex: 1; min-width: 220px;
}
.step__num {
  font-family: 'Playfair Display', serif; font-size: 48px;
  color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 12px;
  font-weight: 900;
}
.step h3 { color: var(--white); margin-bottom: 10px; font-size: 17px; }
.step p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }
.step__arrow { color: var(--gold); font-size: 28px; margin-top: 40px; opacity: 0.5; }

.cta__center { text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: #080F18; padding: 32px 0;
  border-top: 1px solid rgba(201,147,46,0.15);
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 14px; }
.footer__copy { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ===== GENERATE PAGE ===== */
.generate-page { min-height: 100vh; padding-top: 70px; background: var(--cream); }
.generate-header { background: var(--navy); padding: 48px 0; margin-bottom: 48px; }
.generate-header h1 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--white); }
.generate-header p { color: rgba(255,255,255,0.6); margin-top: 8px; }

.generate-layout { display: grid; grid-template-columns: 380px 1fr; gap: 32px; align-items: start; padding-bottom: 80px; }

/* ===== PANELS ===== */
.panel {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.panel__header {
  padding: 20px 24px; background: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.panel__header h3 { color: var(--white); font-size: 15px; font-weight: 600; }
.panel__icon { font-size: 18px; }
.panel__body { padding: 24px; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm); font-size: 14px; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s; background: var(--white);
  color: var(--text);
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,147,46,0.12); }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ===== TEMPLATE SELECTOR ===== */
.templates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.template-option { position: relative; cursor: pointer; }
.template-option input { position: absolute; opacity: 0; }
.template-thumb {
  border: 2px solid #E5E7EB; border-radius: var(--radius-sm); padding: 10px;
  text-align: center; transition: all 0.2s; font-size: 11px; font-weight: 600;
  background: var(--white);
}
.template-thumb .tmpl-preview {
  height: 60px; border-radius: 4px; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.template-option input:checked + .template-thumb { border-color: var(--gold); background: rgba(201,147,46,0.05); }
.tmpl-classic { background: linear-gradient(135deg, #f8f1e7, #e8dcc8); }
.tmpl-modern { background: linear-gradient(135deg, #0D1B2A, #1A2E45); }
.tmpl-elegant { background: linear-gradient(135deg, #1a0533, #3d1065); }
.tmpl-minimal { background: linear-gradient(135deg, #f9f9f9, #e8e8e8); }

/* ===== NAME ENTRY ===== */
.names-tabs { display: flex; border-bottom: 1px solid #E5E7EB; margin-bottom: 16px; }
.names-tab {
  padding: 10px 16px; font-size: 13px; font-weight: 600;
  cursor: pointer; border-bottom: 2px solid transparent;
  color: var(--text-muted); transition: all 0.2s; background: none; border-left: none; border-right: none; border-top: none;
}
.names-tab.active { color: var(--gold-dark); border-bottom-color: var(--gold); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.upload-zone {
  border: 2px dashed #D1D5DB; border-radius: var(--radius-sm);
  padding: 32px; text-align: center; cursor: pointer;
  transition: all 0.2s; background: #F9FAFB;
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--gold); background: rgba(201,147,46,0.04); }
.upload-zone__icon { font-size: 32px; margin-bottom: 8px; }
.upload-zone__text { font-size: 14px; font-weight: 600; color: var(--text); }
.upload-zone__sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.names-list {
  background: #F9FAFB; border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm); padding: 12px;
  max-height: 200px; overflow-y: auto;
  font-size: 13px;
}
.name-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 8px; border-radius: 4px; transition: background 0.1s;
}
.name-item:hover { background: #F3F4F6; }
.name-item__num { color: var(--text-muted); font-size: 11px; min-width: 24px; }
.name-item__name { flex: 1; font-weight: 500; }
.name-item__remove { color: #dc2626; cursor: pointer; background: none; border: none; font-size: 16px; padding: 0 4px; }

/* ===== PREVIEW AREA ===== */
.preview-area { position: sticky; top: 90px; }

.preview-controls {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px;
}

.cert-preview-wrap {
  background: #374151; border-radius: var(--radius);
  padding: 24px; display: flex; justify-content: center;
  min-height: 400px; align-items: center;
}

/* ===== CERTIFICATE TEMPLATES ===== */
.certificate {
  width: 794px; max-width: 100%;
  aspect-ratio: 1.414; /* A4 landscape */
  position: relative; font-family: 'DM Sans', sans-serif;
  overflow: hidden; transform-origin: top center;
}

/* Classic Template */
.cert-classic {
  background: linear-gradient(135deg, #FFF8EC 0%, #FFF0D0 100%);
  border: 1px solid #e0c87a;
}
.cert-classic .cert-outer-border {
  position: absolute; inset: 10px;
  border: 3px solid var(--gold);
}
.cert-classic .cert-inner-border {
  position: absolute; inset: 18px;
  border: 1px solid rgba(201,147,46,0.4);
}
.cert-classic .cert-content {
  position: absolute; inset: 30px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: 0;
}

/* Modern Dark Template */
.cert-modern {
  background: linear-gradient(135deg, #0D1B2A 0%, #1A2E45 100%);
  color: var(--white);
}
.cert-modern .cert-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.cert-modern .cert-deco-left { position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: var(--gold); }
.cert-modern .cert-deco-right { position: absolute; right: 0; top: 0; bottom: 0; width: 8px; background: var(--gold); }
.cert-modern .cert-deco-circle { position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; border-radius: 50%; border: 40px solid rgba(201,147,46,0.08); }

/* Elegant Purple */
.cert-elegant {
  background: linear-gradient(135deg, #1a0533 0%, #2d1057 100%);
  color: var(--white);
}
.cert-elegant .cert-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.cert-elegant .cert-border-top { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #C9932E, #F0C96B, #C9932E); }
.cert-elegant .cert-border-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #C9932E, #F0C96B, #C9932E); }

/* Minimal White */
.cert-minimal { background: var(--white); }
.cert-minimal .cert-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 50px; }
.cert-minimal .cert-top-stripe { position: absolute; top: 0; left: 0; right: 0; height: 12px; background: var(--navy); }

/* Shared cert elements */
.cert-org { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.6; margin-bottom: 4px; }
.cert-logo { font-size: 40px; margin-bottom: 8px; }
.cert-divider-gold { width: 80px; height: 3px; background: var(--gold); margin: 12px auto; }
.cert-certifies { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; }
.cert-name { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; margin: 8px 0; color: var(--gold); line-height: 1.2; }
.cert-completed { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; margin: 4px 0; }
.cert-course { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.cert-footer { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; margin-top: 16px; }
.cert-sign { text-align: center; }
.cert-sign-line { width: 100px; height: 1px; background: currentColor; opacity: 0.4; margin: 0 auto 4px; }
.cert-sign-name { font-size: 11px; font-weight: 600; }
.cert-sign-role { font-size: 10px; opacity: 0.5; }
.cert-date-box { text-align: center; font-size: 11px; opacity: 0.6; }
.cert-id { font-size: 9px; opacity: 0.4; letter-spacing: 1px; }

/* Dark/colored cert text overrides */
.cert-modern .cert-name, .cert-elegant .cert-name { color: var(--gold-light); }
.cert-modern .cert-course, .cert-modern .cert-org, .cert-modern .cert-certifies, .cert-modern .cert-completed { color: rgba(255,255,255,0.85); }
.cert-elegant .cert-course, .cert-elegant .cert-org, .cert-elegant .cert-certifies, .cert-elegant .cert-completed { color: rgba(255,255,255,0.85); }

/* Minimal overrides */
.cert-minimal .cert-name { color: var(--navy); }
.cert-minimal .cert-course { color: var(--navy); }

/* ===== PROGRESS & STATS ===== */
.generate-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 24px;
}
.g-stat { background: var(--white); border-radius: var(--radius-sm); padding: 16px; text-align: center; border: 1px solid #E5E7EB; }
.g-stat__num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.g-stat__label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.progress-bar-wrap { background: #E5E7EB; border-radius: 50px; height: 8px; overflow: hidden; margin: 12px 0; }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 50px; transition: width 0.3s; }

/* ===== GENERATED LIST ===== */
.generated-list { max-height: 300px; overflow-y: auto; }
.gen-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
}
.gen-item:last-child { border-bottom: none; }
.gen-item__name { font-weight: 500; flex: 1; }
.gen-item__status { font-size: 11px; padding: 2px 8px; border-radius: 50px; font-weight: 600; }
.status--done { background: #DCFCE7; color: #166534; }
.status--pending { background: #FEF3C7; color: #92400E; }
.status--error { background: #FEE2E2; color: #991B1B; }

/* ===== NOTIFICATIONS ===== */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--navy); color: var(--white);
  padding: 14px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  animation: slideIn 0.3s ease;
  max-width: 320px;
}
.toast--success { border-left-color: #16a34a; }
.toast--error { border-left-color: #dc2626; }

@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .generate-layout { grid-template-columns: 1fr; }
  .preview-area { position: static; }
  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  .hero__stats { gap: 16px; }
  .generate-stats { grid-template-columns: 1fr 1fr; }
}

/* Download badge area */
.download-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius); padding: 24px; color: var(--white);
  text-align: center; margin-top: 16px;
}
.download-section h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.download-section p { font-size: 13px; opacity: 0.65; margin-bottom: 20px; }
.download-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Sample row download */
.sample-link { color: var(--gold); text-decoration: underline; font-size: 12px; cursor: pointer; }

/* scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #F1F1F1; }
::-webkit-scrollbar-thumb { background: #C9932E44; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
