/* =========================================
   Converter PNG para JPG - style.css
   Design moderno com glassmorphism
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- Variáveis CSS --- */
:root {
  --primary: #6c63ff;
  --primary-dark: #574fd6;
  --primary-light: #8f88ff;
  --secondary: #ff6584;
  --accent: #43e97b;
  --bg-dark: #0f0f1a;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-card-hover: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --border-active: rgba(108, 99, 255, 0.6);
  --text-primary: #f0f0ff;
  --text-secondary: #a8a8c8;
  --text-muted: #6b6b8a;
  --success: #43e97b;
  --warning: #f7c948;
  --danger: #ff6584;
  --shadow-primary: 0 8px 32px rgba(108, 99, 255, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset e Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Fundo animado com gradientes */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(108, 99, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 101, 132, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(67, 233, 123, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* --- Layout Principal --- */
.main-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === BANNER ADS === */
.ad-banner {
  width: 100%;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ad-top {
  height: 90px;
  margin: 20px 0;
}

.ad-middle {
  height: 250px;
  margin: 40px 0;
}

.ad-bottom {
  height: 90px;
  margin: 20px 0;
}

/* === HEADER === */
.site-header {
  padding: 32px 0 16px;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* === HERO SECTION === */
.hero {
  text-align: center;
  padding: 48px 0 32px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #c4c0ff 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === ÁREA DE UPLOAD === */
.upload-section {
  margin-bottom: 32px;
}

.drop-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.drop-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(255, 101, 132, 0.05));
  opacity: 0;
  transition: opacity var(--transition);
}

.drop-zone:hover,
.drop-zone.drag-over {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.drop-zone:hover::before,
.drop-zone.drag-over::before {
  opacity: 1;
}

.drop-zone.drag-over {
  border-style: solid;
  border-color: var(--primary);
}

.drop-zone-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

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

.drop-zone h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.drop-zone p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.drop-zone .file-types {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.file-type-tag {
  padding: 4px 12px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--primary-light);
  font-weight: 600;
}

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(108, 99, 255, 0.5);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: #0f1a14;
}

.btn-success:hover {
  box-shadow: 0 8px 30px rgba(67, 233, 123, 0.4);
  transform: translateY(-2px);
}

.btn-danger {
  background: linear-gradient(135deg, #ff6584, #e83a5b);
  color: #fff;
}

.btn-danger:hover {
  box-shadow: 0 8px 30px rgba(255, 101, 132, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--border-active);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  gap: 5px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Input file hidden */
#fileInput {
  display: none;
}

/* === PAINEL DE CONFIGURAÇÕES === */
.settings-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
  display: none;
}

.settings-panel.visible {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: end;
}

.setting-item label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quality-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quality-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
}

.quality-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(108, 99, 255, 0.5);
  transition: transform var(--transition);
}

.quality-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.quality-value {
  min-width: 52px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-light);
  background: rgba(108, 99, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

/* === BARRA DE AÇÕES === */
.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.toolbar-info {
  flex: 1;
  min-width: 150px;
}

.files-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.files-count strong {
  color: var(--text-primary);
  font-weight: 700;
}

.toolbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* === BARRA DE PROGRESSO GLOBAL === */
.global-progress {
  margin-bottom: 24px;
  display: none;
}

.global-progress.visible {
  display: block;
  animation: slideDown 0.3s ease;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.progress-label span:last-child {
  color: var(--primary-light);
  font-weight: 600;
}

.progress-bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  to { left: 200%; }
}

/* === GRID DE CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

/* === CARD DE IMAGEM === */
.image-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all var(--transition);
  position: relative;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(108, 99, 255, 0.3);
}

/* Status da card */
.image-card.converting {
  border-color: var(--warning);
  box-shadow: 0 0 0 1px rgba(247, 201, 72, 0.3);
}

.image-card.done {
  border-color: var(--success);
  box-shadow: 0 0 0 1px rgba(67, 233, 123, 0.2);
}

.image-card.error {
  border-color: var(--danger);
}

/* Preview da imagem */
.card-preview {
  position: relative;
  width: 100%;
  height: 180px;
  background: rgba(0,0,0,0.3);
  overflow: hidden;
}

.card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.image-card:hover .card-preview img {
  transform: scale(1.05);
}

/* Overlay status */
.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 26, 0.7);
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}

.image-card.converting .card-overlay {
  opacity: 1;
}

.card-overlay.show {
  opacity: 1;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Badge de status no preview */
.status-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge.pending {
  background: rgba(168, 168, 200, 0.2);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.status-badge.converting {
  background: rgba(247, 201, 72, 0.2);
  color: var(--warning);
  border: 1px solid rgba(247, 201, 72, 0.4);
}

.status-badge.done {
  background: rgba(67, 233, 123, 0.2);
  color: var(--success);
  border: 1px solid rgba(67, 233, 123, 0.4);
}

.status-badge.error {
  background: rgba(255, 101, 132, 0.2);
  color: var(--danger);
  border: 1px solid rgba(255, 101, 132, 0.4);
}

/* Botão remover */
.card-remove {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 101, 132, 0.85);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  opacity: 0;
}

.image-card:hover .card-remove {
  opacity: 1;
}

.card-remove:hover {
  transform: scale(1.2);
  background: var(--danger);
}

/* Corpo do card */
.card-body {
  padding: 16px;
}

.card-filename {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

/* Métricas do card */
.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.metric {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 2px;
}

.metric-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.metric-value.highlight {
  color: var(--accent);
}

.metric-value.compression-good {
  color: var(--success);
}

.metric-value.compression-bad {
  color: var(--danger);
}

/* Mini barra de progresso do card */
.card-progress {
  margin-bottom: 12px;
  display: none;
}

.image-card.converting .card-progress {
  display: block;
}

.card-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.card-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--warning), var(--primary));
  border-radius: 100px;
  width: 0%;
  transition: width 0.3s ease;
  animation: progressPulse 1s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Ações do card */
.card-actions {
  display: flex;
  gap: 8px;
}

.card-actions .btn {
  flex: 1;
  justify-content: center;
}

/* === ESTADO VAZIO === */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  display: none;
}

.empty-state.show {
  display: block;
}

.empty-state-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* === SEÇÃO SEO === */
.seo-content {
  padding: 60px 0;
  max-width: 860px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--primary-light);
}

.seo-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.seo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.seo-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.seo-feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}

.seo-feature h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.seo-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* === FAQ === */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-card);
}

.faq-arrow {
  font-size: 12px;
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  padding: 0 20px 16px;
  max-height: 200px;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
}

/* === TOAST NOTIFICATIONS === */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  animation: toastIn 0.3s ease;
  min-width: 260px;
  max-width: 360px;
}

.toast.hide {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100px); }
}

.toast-icon { font-size: 20px; flex-shrink: 0; }

.toast-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.info { border-left: 3px solid var(--primary); }

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 24px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .drop-zone {
    padding: 40px 20px;
  }

  .drop-zone-icon {
    font-size: 48px;
  }

  .toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .toolbar-actions {
    width: 100%;
  }

  .toolbar-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
  }

  .settings-grid {
    grid-template-columns: 1fr;
  }

  .toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .toast {
    max-width: 100%;
  }

  .card-remove {
    opacity: 1;
  }

  .ad-top, .ad-bottom { height: 60px; }
  .ad-middle { height: 200px; }
}

@media (max-width: 400px) {
  .main-wrapper {
    padding: 0 12px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: 6px;
  }

  .badge {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
}
