/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════════════ */
:root {
  --bg: #070711;
  --bg-2: #0d0d1a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(139, 92, 246, 0.4);

  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --cyan: #22d3ee;
  --pink: #ec4899;

  --grad-1: linear-gradient(135deg, #8b5cf6, #22d3ee);
  --grad-2: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #22d3ee 100%);
  --grad-text: linear-gradient(135deg, #a78bfa, #22d3ee);

  --text-1: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #475569;

  --success: #10b981;
  --error: #f43f5e;
  --warning: #f59e0b;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.4);
  --glow-purple: 0 0 40px rgba(139, 92, 246, 0.3);
  --glow-cyan: 0 0 40px rgba(34, 211, 238, 0.2);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════════════════
   GLASSMORPHISM
════════════════════════════════════════════════════════════════ */
.glass {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════
   LOGIN OVERLAY
════════════════════════════════════════════════════════════════ */
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.1) 0%, var(--bg) 70%);
  padding: 1rem;
  animation: fadeIn 0.4s ease;
}

.login-card {
  width: 100%;
  max-width: 420px;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border-color: var(--border-accent);
  box-shadow: var(--shadow), var(--glow-purple);
  animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.logo-icon {
  font-size: 2rem;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-1);
}

.login-subtitle {
  text-align: center;
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.login-form { display: flex; flex-direction: column; gap: 1rem; }
#login-form { display: flex; flex-direction: column; gap: 1rem; }

.input-group { position: relative; }

.input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-1);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.input::placeholder { color: var(--text-3); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--grad-1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
  filter: brightness(1.1);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface-hover);
  color: var(--text-1);
  border-color: var(--border-accent);
}

.btn-full { width: 100%; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

.btn-download {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

.btn-text, .btn-icon { transition: transform var(--transition); }
.btn:hover .btn-icon { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════
   ERROR MESSAGES
════════════════════════════════════════════════════════════════ */
.error-msg {
  color: var(--error);
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-radius: var(--radius-sm);
  text-align: center;
}

.url-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SPINNER
════════════════════════════════════════════════════════════════ */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-icon-sm {
  font-size: 1.4rem;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-title {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-actions { display: flex; gap: 0.5rem; }

.accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 5rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--purple);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--cyan);
  top: -150px; right: -100px;
  animation-delay: 2s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: var(--pink);
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.gradient-text {
  background: var(--grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── URL Input ──────────────────────────────────────────────── */
.url-input-wrapper { max-width: 680px; margin: 0 auto; }

.url-input-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  border-color: var(--border-accent);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.url-input-box:focus-within {
  border-color: var(--purple);
  box-shadow: var(--glow-purple);
}

.url-icon { color: var(--text-3); flex-shrink: 0; }

.url-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-1);
  font-family: var(--font);
  font-size: 0.95rem;
  min-width: 0;
}
.url-input::placeholder { color: var(--text-3); }

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT
════════════════════════════════════════════════════════════════ */
.main-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO CARD
════════════════════════════════════════════════════════════════ */
.video-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-sm);
}

.playlist-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.video-card-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.75rem;
  align-items: start;
}

.thumbnail-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-2);
  flex-shrink: 0;
}

.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.thumbnail-wrap:hover .thumbnail { transform: scale(1.05); }

.thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.thumbnail-wrap:hover .thumbnail-overlay { opacity: 1; }

.play-icon {
  width: 3rem; height: 3rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.duration-badge {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.video-info { display: flex; flex-direction: column; gap: 0.6rem; }

.video-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-channel {
  font-size: 0.85rem;
  color: var(--purple-light);
  font-weight: 500;
}

.video-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ─── Format Section ─────────────────────────────────────────── */
.format-section { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }

.format-row { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; }

.format-group { display: flex; flex-direction: column; gap: 0.4rem; }

.format-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.format-pills { display: flex; gap: 0.4rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.pill:hover { border-color: var(--purple); color: var(--purple-light); }
.pill.active {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--purple);
  color: var(--purple-light);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.2);
}

.select {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  border-color: var(--border);
  color: var(--text-1);
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
  min-width: 160px;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}
.select option { background: #1a1a2e; }
.select:focus { border-color: var(--purple); }

/* ─── Playlist toggle ──────────────────────────────────────── */
.playlist-option { padding-top: 0.25rem; }

.toggle-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.toggle-input { display: none; }

.toggle-track {
  width: 40px;
  height: 22px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 100px;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.toggle-track::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--text-3);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all var(--transition);
}
.toggle-input:checked + .toggle-track {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--purple);
}
.toggle-input:checked + .toggle-track::after {
  background: var(--purple);
  left: 20px;
}

.toggle-text { font-size: 0.875rem; color: var(--text-2); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   QUEUE
════════════════════════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
}

.queue-list, .history-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Queue Item */
.queue-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  animation: slideUp 0.3s ease;
  transition: border-color var(--transition);
}
.queue-item.downloading { border-color: rgba(139, 92, 246, 0.3); }
.queue-item.done { border-color: rgba(16, 185, 129, 0.3); }
.queue-item.error { border-color: rgba(244, 63, 94, 0.3); }

.queue-thumb {
  width: 64px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-2);
}

.queue-info { min-width: 0; }

.queue-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.35rem;
}

.queue-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-3);
}

.queue-format-badge {
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-light);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.progress-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 100px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--grad-1);
  border-radius: 100px;
  transition: width 0.6s ease;
  background-size: 200% auto;
}

.progress-str {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 0.3rem;
  font-variant-numeric: tabular-nums;
}

.queue-done-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.file-size {
  font-size: 0.75rem;
  color: var(--text-3);
}

.expiry-label {
  font-size: 0.72rem;
  color: var(--text-3);
  opacity: 0.7;
}

.error-inline {
  color: var(--error);
  font-size: 0.78rem;
}

.queue-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  flex-shrink: 0;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.status-badge.pending { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.status-badge.downloading { background: rgba(139, 92, 246, 0.1); color: var(--purple-light); }
.status-badge.done { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.status-badge.error { background: rgba(244, 63, 94, 0.1); color: var(--error); }

.remove-btn {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  line-height: 0;
}
.remove-btn:hover { color: var(--error); }

/* ═══════════════════════════════════════════════════════════════
   HISTORY
════════════════════════════════════════════════════════════════ */
.history-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  animation: slideUp 0.3s ease;
}

.history-thumb {
  width: 64px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-2);
}

.history-info { min-width: 0; }

.history-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}

.history-meta {
  font-size: 0.75rem;
  color: var(--text-3);
}

.redownload-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.redownload-btn:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: rgba(139, 92, 246, 0.08);
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.empty-state svg { opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-3);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  .navbar { padding: 0.875rem 1rem; }
  .nav-title { font-size: 1.2rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero-title { font-size: 2.2rem; }
  .url-input-box { flex-wrap: wrap; padding: 0.75rem; gap: 0.5rem; }
  .url-input { min-width: 0; width: 100%; }

  .video-card-inner { grid-template-columns: 1fr; }
  .thumbnail-wrap { aspect-ratio: 16/9; max-height: 220px; }

  .queue-item, .history-item {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
  }
  .queue-thumb, .history-thumb { width: 48px; height: 30px; }
  .queue-status { grid-column: 2; flex-direction: row; }

  .main-content { padding: 0 1rem 3rem; }
}
