/* ============================================
   Igram Downloader — igramdownloader.in
   Dark theme · Enhanced UI
   ============================================ */

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

:root {
  --pink:    #f7395a;
  --magenta: #c1297c;
  --purple:  #7b2fcb;
  --violet:  #5b21b6;
  --orange:  #f5832a;
  --gold:    #fdb93e;

  --grad-ig:   linear-gradient(135deg, #fdb93e 0%, #f5832a 20%, #f7395a 45%, #c1297c 70%, #7b2fcb 100%);
  --grad-btn:  linear-gradient(135deg, #f7395a 0%, #c1297c 50%, #7b2fcb 100%);
  --grad-soft: linear-gradient(135deg, rgba(247,57,90,0.12) 0%, rgba(123,47,203,0.12) 100%);

  --bg:      #0c0a12;
  --bg2:     #131020;
  --bg3:     #1a1730;
  --surface: #1e1a30;
  --surf2:   #252140;

  --border:         rgba(255,255,255,0.06);
  --border2:        rgba(255,255,255,0.11);
  --border-active:  rgba(247,57,90,0.5);

  --text:  #f2eeff;
  --text2: #b0a8d0;
  --text3: #6e6590;

  --r:    14px;
  --r-sm: 10px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --glow:   0 0 60px rgba(193,41,124,0.2);

  --fn-d: 'Nunito', sans-serif;
  --fn-b: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fn-b);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* NOISE */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ═══ HEADER ═══ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 10, 18, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
}
.header-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 20px;
  height: 66px; display: flex; align-items: center; gap: 24px;
}

/* ── LOGO FIX: bright background so logo is always visible ── */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-img {
  height: 38px; width: auto; object-fit: contain;
  /* White pill background so logo shows on dark header */
  background: #fff;
  border-radius: 10px;
  padding: 4px 8px;
  filter: drop-shadow(0 2px 8px rgba(247,57,90,0.3));
  transition: filter 0.2s;
}
.logo-img:hover { filter: drop-shadow(0 4px 16px rgba(247,57,90,0.55)); }

.logo-text {
  font-family: var(--fn-d);
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--grad-ig);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 7px 15px; border-radius: 9px; color: var(--text2);
  font-size: 0.85rem; font-weight: 500; transition: all 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.nav-highlight {
  background: var(--grad-btn);
  color: #fff; font-weight: 700;
  box-shadow: 0 2px 12px rgba(247,57,90,0.3);
}
.nav-link.nav-highlight:hover { opacity: 0.9; background: var(--grad-btn); }

/* ═══ HERO ═══ */
.hero {
  position: relative; padding: 80px 20px 64px;
  text-align: center; overflow: hidden;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.3;
  animation: drift 10s ease-in-out infinite;
}
.o1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #f7395a, transparent 70%);
  top: -240px; left: 50%; transform: translateX(-60%);
  animation-duration: 9s;
}
.o2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #7b2fcb, transparent 70%);
  top: -80px; right: -120px;
  animation-duration: 13s; animation-direction: reverse;
}
.o3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #f5832a, transparent 70%);
  bottom: -80px; left: -60px; opacity: 0.2;
  animation-duration: 16s;
}
@keyframes drift {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(15px,-18px); }
  66% { transform: translate(-10px,12px); }
}

.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

/* chips */
.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: 32px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border2);
  font-size: 0.78rem; font-weight: 600; color: var(--text2);
  transition: all 0.25s; cursor: default;
}
.chip:hover {
  border-color: rgba(247,57,90,0.45);
  color: var(--text);
  background: var(--surf2);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(247,57,90,0.15);
}

/* title */
.hero-title {
  font-family: var(--fn-d);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
  animation: heroFadeIn 0.8s ease both;
}
.hero-title em {
  font-style: normal;
  background: var(--grad-ig);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  font-size: 1.05rem; color: var(--text2); line-height: 1.75;
  max-width: 520px; margin: 0 auto 40px;
  animation: heroFadeIn 0.9s 0.1s ease both;
}

/* ── SEARCH BOX ── */
.search-outer { max-width: 680px; margin: 0 auto 24px; animation: heroFadeIn 1s 0.2s ease both; }
.search-box {
  display: flex; align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 6px 6px 6px 18px;
  gap: 10px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.search-box:focus-within {
  border-color: var(--border-active);
  box-shadow: 0 0 0 4px rgba(247,57,90,0.1), var(--glow);
}
.search-ig { color: var(--text3); flex-shrink: 0; display: flex; }
.search-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: var(--fn-b);
  font-size: 0.95rem; min-width: 0;
  caret-color: var(--pink);
}
.search-input::placeholder { color: var(--text3); }
.search-clear {
  background: none; border: none; color: var(--text3);
  font-size: 0.8rem; cursor: pointer; padding: 4px 8px;
  border-radius: 6px; transition: all 0.2s;
}
.search-clear:hover { color: var(--text); background: var(--surf2); }
.search-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--grad-btn); border: none;
  border-radius: var(--r-lg); padding: 13px 28px;
  color: #fff; font-family: var(--fn-d);
  font-size: 0.95rem; font-weight: 800;
  cursor: pointer; white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(247,57,90,0.4);
  flex-shrink: 0;
}
.search-btn:hover { opacity: 0.92; box-shadow: 0 6px 28px rgba(247,57,90,0.55); transform: translateY(-1px); }
.search-btn:active { transform: scale(0.97); }
.search-hint {
  margin-top: 12px; font-size: 0.76rem; color: var(--text3); text-align: center;
}

/* stats */
.stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  animation: heroFadeIn 1s 0.3s ease both;
}
.stat { padding: 6px 28px; text-align: center; }
.stat strong {
  display: block; font-family: var(--fn-d); font-size: 1.4rem;
  font-weight: 900; background: var(--grad-ig);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat span { font-size: 0.75rem; color: var(--text3); font-weight: 500; }
.stat-sep { width: 1px; height: 36px; background: var(--border2); }

/* ═══ ADS ═══ */
.ad-wrap {
  max-width: 1080px; margin: 28px auto;
  padding: 12px 20px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.ad-label {
  font-size: 0.62rem; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 8px;
}

/* ═══ RESULT ═══ */
.result-section { padding: 24px 0 8px; }
.result-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--shadow), 0 0 80px rgba(123,47,203,0.06);
  animation: fadeUp 0.4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.res-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.res-owner { font-family: var(--fn-d); font-size: 1rem; font-weight: 800; }
.res-meta { font-size: 0.78rem; color: var(--text3); margin-top: 2px; }
.res-badge {
  padding: 4px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700;
  background: rgba(247,57,90,0.1);
  color: var(--pink); border: 1px solid rgba(247,57,90,0.2);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.res-caption {
  font-size: 0.82rem; color: var(--text2); line-height: 1.6;
  padding: 12px 16px; background: var(--bg2); border-radius: var(--r-sm);
  border: 1px solid var(--border); margin-bottom: 20px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.media-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.media-item:hover { border-color: rgba(247,57,90,0.35); transform: translateY(-3px); }
.media-thumb-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.media-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.media-item:hover .media-thumb { transform: scale(1.05); }
.media-badge {
  position: absolute; top: 8px; left: 8px;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(4px);
  font-size: 0.67rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.media-dl-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; margin: 10px 0 0;
  padding: 10px 12px;
  background: var(--grad-btn); border: none; border-radius: var(--r-sm);
  color: #fff; font-family: var(--fn-d); font-size: 0.82rem; font-weight: 800;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 3px 12px rgba(247,57,90,0.3);
}
.media-dl-btn:hover { opacity: 0.88; transform: scale(1.02); }
.media-info { padding: 0 10px 10px; }
.media-grid.single .media-item { max-width: 360px; margin: 0 auto; }
.error-box {
  padding: 28px; text-align: center;
  background: rgba(247,57,90,0.05);
  border: 1px solid rgba(247,57,90,0.18);
  border-radius: var(--r);
}
.error-box h3 { font-family: var(--fn-d); font-size: 1.05rem; color: var(--pink); margin-bottom: 8px; }
.error-box p { font-size: 0.875rem; color: var(--text2); }

/* ═══════════════════════════════════════════
   LOADING OVERLAY — Totally Revamped
   ═══════════════════════════════════════════ */
.loading-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8, 6, 18, 0.88);
  backdrop-filter: blur(12px) saturate(1.5);
  display: flex; align-items: center; justify-content: center;
}

.loader-box {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  padding: 40px 48px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 80px rgba(193,41,124,0.15);
  animation: loaderPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  min-width: 260px; text-align: center;
}

@keyframes loaderPop {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Instagram camera lens spinner */
.ig-lens {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto;
}

/* Outer rotating ring — IG gradient */
.ig-lens::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--grad-ig);
  animation: lensRotate 1.4s linear infinite;
  mask: radial-gradient(transparent 52%, #000 53%);
  -webkit-mask: radial-gradient(transparent 52%, #000 53%);
}

/* Inner pulsing circle */
.ig-lens::after {
  content: '';
  position: absolute; inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(253,185,62,0.4), rgba(247,57,90,0.3), rgba(123,47,203,0.2));
  animation: lensPulse 2s ease-in-out infinite;
  border: 1.5px solid rgba(255,255,255,0.08);
}

/* Small dot "viewfinder" */
.lens-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad-ig);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: dotPop 1.4s ease-in-out infinite;
}

@keyframes lensRotate {
  to { transform: rotate(360deg); }
}
@keyframes lensPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.6; }
  50%       { transform: scale(1.05); opacity: 1; }
}
@keyframes dotPop {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  50%       { transform: translate(-50%,-50%) scale(1.4); }
}

/* Animated text below spinner */
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.loader-title {
  font-family: var(--fn-d);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.loader-txt {
  font-size: 0.82rem;
  color: var(--text2);
  letter-spacing: 0.01em;
  min-height: 1.2em;
}

/* Animated ellipsis dots */
.loader-dots {
  display: flex; gap: 6px; margin-top: 4px;
}
.loader-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-ig);
  background-size: 300% 300%;
  animation: dotBounce 1.4s ease-in-out infinite;
}
.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.18s; }
.loader-dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes dotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(-6px); opacity: 1; }
}

/* Progress bar */
.loader-bar-wrap {
  width: 180px;
  height: 3px;
  background: var(--border2);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.loader-bar {
  height: 100%; border-radius: 3px;
  background: var(--grad-ig);
  background-size: 200% 100%;
  animation: barSlide 1.8s ease-in-out infinite;
}
@keyframes barSlide {
  0%   { width: 0%; opacity: 0.8; background-position: 0% 0%; }
  50%  { width: 75%; opacity: 1; background-position: 100% 0%; }
  100% { width: 100%; opacity: 0; background-position: 200% 0%; }
}

/* ═══ SECTION HEADER ═══ */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 {
  font-family: var(--fn-d); font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.02em;
  background: var(--grad-ig); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.sec-head p { color: var(--text2); font-size: 0.95rem; }

/* ═══ HOW-TO ═══ */
.how-section { padding: 80px 0; }
.steps {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: center; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 200px; max-width: 280px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.step:hover {
  border-color: rgba(247,57,90,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 30px rgba(247,57,90,0.08);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-btn); color: #fff;
  font-family: var(--fn-d); font-size: 1.25rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(247,57,90,0.4);
}
.step-body h3 { font-family: var(--fn-d); font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.step-body p { font-size: 0.84rem; color: var(--text2); line-height: 1.65; }
.step-arrow {
  font-size: 1.8rem; color: var(--text3); padding: 0 8px;
  align-self: center; flex-shrink: 0;
}

/* ═══ SUPPORTED LINKS ═══ */
.supported-section { padding: 0 0 80px; }
.link-types {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.link-type-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.link-type-card:hover {
  border-color: rgba(247,57,90,0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.lt-icon { font-size: 2.1rem; flex-shrink: 0; }
.lt-info h3 { font-family: var(--fn-d); font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.lt-info code {
  font-size: 0.75rem; color: var(--text3);
  background: var(--bg3); padding: 2px 8px; border-radius: 5px;
  font-family: 'Courier New', monospace;
}

/* ═══ FAQ ═══ */
.faq-section { padding: 0 0 88px; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 20px 0; background: none; border: none;
  color: var(--text); font-family: var(--fn-b); font-size: 0.95rem;
  font-weight: 500; cursor: pointer; text-align: left; gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pink); }
.faq-icon {
  font-size: 1.4rem; color: var(--text3); flex-shrink: 0;
  transition: transform 0.3s, color 0.2s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--pink); }
.faq-a {
  font-size: 0.875rem; color: var(--text2); line-height: 1.75;
  padding-bottom: 20px; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer-inner {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.footer-brand { flex: 1; min-width: 220px; }
.footer-logo {
  height: 36px; width: auto; margin-bottom: 14px; object-fit: contain;
  background: #fff; border-radius: 9px; padding: 3px 7px;
  filter: drop-shadow(0 2px 8px rgba(247,57,90,0.2));
}
.footer-brand p { font-size: 0.82rem; color: var(--text3); line-height: 1.75; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 24px; align-content: flex-start; }
.footer-links a { font-size: 0.84rem; color: var(--text2); transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  padding: 20px 0; text-align: center;
  font-size: 0.76rem; color: var(--text3); line-height: 1.85;
}
.footer-bottom a { color: var(--text3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--pink); }
.footer-disc { opacity: 0.7; margin-top: 4px; }

/* ═══ TOAST ═══ */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  padding: 12px 24px; border-radius: 12px; color: #fff;
  font-size: 0.875rem; font-weight: 600; z-index: 999;
  opacity: 0; transition: all 0.3s; white-space: nowrap;
  box-shadow: 0 10px 32px rgba(0,0,0,0.4); pointer-events: none;
  backdrop-filter: blur(8px);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 700px) {
  .hero { padding: 52px 16px 44px; }
  .step-arrow { display: none; }
  .steps { gap: 12px; }
  .step { min-width: 100%; max-width: 100%; }
  .main-nav .nav-link:not(:last-child) { display: none; }
  .search-btn span { display: none; }
  .search-btn { padding: 13px 18px; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .hero-chips { gap: 6px; }
  .chip { font-size: 0.72rem; padding: 4px 10px; }
  .loader-box { padding: 32px 32px; min-width: 220px; }
  .logo-text { display: none; }
}
@media (max-width: 420px) {
  .media-grid { grid-template-columns: 1fr; }
  .link-types { grid-template-columns: 1fr; }
}

/* scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surf2); border-radius: 3px; }
