/* ═══════════════════════════════════════════════════════
   KwaiSave — Premium Dark Neon Design System
   Typography: Sora (Google Fonts)
   Layout: Optimized Above-the-Fold Tool 
═══════════════════════════════════════════════════════ */

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

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --bg: #060612;
  --bg-2: #0a0a1a;
  --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(255, 60, 172, 0.3);

  --accent-1: #FF3CAC;
  --accent-2: #784BA0;
  --accent-3: #2B86C5;
  --gradient: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
  --gradient-glow: linear-gradient(135deg, rgba(255, 60, 172, 0.15) 0%, rgba(120, 75, 160, 0.15) 50%, rgba(43, 134, 197, 0.15) 100%);

  --text: #F1F5F9;
  --text-muted: #64748B;
  --text-soft: #94A3B8;

  --success: #10B981;
  --error: #F43F5E;
  --warning: #F59E0B;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(255, 60, 172, 0.2), 0 0 60px rgba(120, 75, 160, 0.1);
  --shadow-btn: 0 4px 20px rgba(255, 60, 172, 0.3);

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 60, 172, 0.4), transparent 70%);
  top: -200px;
  left: -200px;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(43, 134, 197, 0.35), transparent 70%);
  bottom: -150px;
  right: -150px;
}

/* ─── Layout ─────────────────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* ─── Header ─────────────────────────────────────────── */
header {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(6, 6, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text);
}

.logo-area svg {
  width: 28px;
  height: 28px;
}

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

.header-nav {
  display: none;
  gap: 20px;
  align-items: center;
}

@media (min-width: 640px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-1);
}

/* Language Selector */
.lang-selector {
  position: relative;
  user-select: none;
}

.lang-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px 8px 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  position: relative;
  min-width: 140px;
}

.lang-btn:hover {
  border-color: var(--accent-1);
  background: rgba(255, 255, 255, 0.08);
}

.lang-icon {
  position: absolute;
  left: 10px;
  color: var(--text-soft);
  pointer-events: none;
  z-index: 2;
}

.chevron-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.lang-selector.open .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(10, 10, 20, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  min-width: 180px;
  padding: 8px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.lang-option.active {
  color: var(--accent-1);
  background: rgba(255, 60, 172, 0.1);
}

/* ─── Hero Section ───────────────────────────────────── */
.hero {
  text-align: center;
  padding: 24px 0 16px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 60, 172, 0.1);
  border: 1px solid rgba(255, 60, 172, 0.25);
  color: #FF3CAC;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  /* Reduced size */
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero h1 .gradient-word {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 16px;
}

/* ─── Tab Navigation ─────────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-btn);
}

/* ─── Tool Card ──────────────────────────────────────── */
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  transition: border-color var(--transition);
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  overflow-x: hidden;
}

.tool-card:focus-within {
  border-color: var(--border-accent);
}

@media (min-width: 640px) {
  .tool-card {
    padding: 24px;
    border-radius: var(--radius-xl);
  }
}

/* ─── Input Area ─────────────────────────────────────── */
.input-wrapper {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

@media (max-width: 640px) {
  .input-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

.url-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  width: 100%;
}

.url-input:focus {
  border-color: rgba(255, 60, 172, 0.5);
  background: rgba(255, 60, 172, 0.04);
}

.btn-primary {
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: var(--shadow-btn);
  width: 100%;
}

@media (min-width: 640px) {
  .btn-primary {
    width: auto;
  }
}

/* ─── Stats Bar (Moved below tool card) ──────────────── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px auto 32px;
  flex-wrap: wrap;
}

.stat-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-1);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── Loading Skeleton ───────────────────────────────── */
#loading-skeleton {
  display: none;
  padding: 16px 0;
}

.loading-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.loading-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--accent-1);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 100px;
  transition: width 0.4s ease;
}

/* ─── Error Card ─────────────────────────────────────── */
#error-card {
  display: none;
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 16px;
}

.error-inner {
  display: flex;
  gap: 10px;
}

.error-title {
  font-size: 13px;
  font-weight: 700;
  color: #F43F5E;
}

#error-message {
  font-size: 13px;
  color: var(--text-soft);
}

/* ─── Success Card (Result) ──────────────────────────── */
#success-card.result-card {
  display: none;
  flex-direction: column;
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid rgba(255, 60, 172, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  overflow-x: hidden;
}

.video-preview-area {
  position: relative;
  background: #000;
  overflow: hidden;
}

.video-preview-area video,
#preview-player,
#preview-thumb {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.video-meta-below {
  padding: 12px 16px 0;
}

.video-meta-below h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.video-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.duration-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.download-panel {
  padding: 16px;
}

.format-quality-row,
.toggle-group.format-quality-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.selector-group,
.toggle-group.selector-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.selector-group label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  align-self: center;
  margin: 0 4px;
  text-transform: uppercase;
}

.quality-btn,
.format-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  min-width: 60px;
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.quality-btn.active,
.format-btn.active {
  background: var(--gradient);
  color: white;
}

.btn-download-main,
.download-now-btn {
  width: 100%;
  min-height: 52px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
}

.btn-download-main:disabled,
.download-now-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.extra-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.btn-extra {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  margin-right: 4px;
}

#qr-section {
  display: none;
  text-align: center;
  margin-top: 16px;
}

.qr-wrapper {
  max-width: 200px;
  margin: 0 auto;
}

#qrcode canvas {
  border-radius: 8px;
  background: white;
  padding: 8px;
  max-width: 100%;
}

/* ─── Features Grid ──────────────────────────────────── */
.features-section {
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section {
  padding: 40px 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  padding: 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── Toast ──────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
  font-size: 13px;
}

.toast.show {
  opacity: 1;
  bottom: 30px;
}

/* Hide tabs */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block !important;
}

#bulk-tab textarea {
  width: 100%;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: white;
  resize: vertical;
  min-height: 100px;
  margin-bottom: 10px;
  font-family: var(--font);
  font-size: 14px;
}

.profile-result-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* History */
.history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .history-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.history-item img {
  width: 100%;
  border-radius: var(--radius-sm);
}

/* ─── Steps Section ─────────────────────────────── */
.steps-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.steps-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 15px;
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-screenshot {
  border-radius: var(--radius-md);
  background: var(--bg-2);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-screen-mock {
  text-align: center;
  padding: 20px;
  width: 100%;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Tool Mock UI */
.tool-mock-ui {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mock-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
}

.mock-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-circle.red {
  background: #ff5f56;
}

.mock-circle.yellow {
  background: #ffbd2e;
}

.mock-circle.green {
  background: #27c93f;
}

.mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
}

.mock-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.mock-btn.primary {
  background: var(--bg-2);
}

.mock-btn.download {
  background: var(--gradient);
  color: white;
  border: none;
}

.mock-input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 11px;
  width: 100%;
  text-align: left;
}

.mock-thumb {
  width: 100%;
  height: 60px;
  background: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
}

/* ─── Article Section ───────────────────────────── */
.article-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.article-section article {
  max-width: 760px;
  margin: 0 auto;
}

.article-section h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.article-section h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--accent-1);
}

.article-section p {
  color: var(--text-soft);
  margin-bottom: 12px;
  line-height: 1.7;
}

.article-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.article-section ul li {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 14px;
}

/* ─── Mobile: inline preview & download UI ─────────── */
@media (max-width: 480px) {
  .input-row.input-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .input-row.input-wrapper .url-input,
  .input-row.input-wrapper .btn-primary,
  .input-row.input-wrapper .download-btn {
    width: 100%;
    border-radius: 12px;
    padding: 14px;
  }

  #success-card.result-card {
    flex-direction: column;
    padding: 0;
  }

  .download-panel {
    padding: 16px;
  }

  .video-preview.video-preview-area video,
  .video-preview.video-preview-area #preview-player,
  .video-preview.video-preview-area #preview-thumb {
    width: 100%;
    max-height: 220px;
    border-radius: 12px;
  }

  .format-quality-row.toggle-group,
  .toggle-group.selector-group {
    flex-wrap: wrap;
  }

  .download-now-btn.btn-download-main {
    width: 100%;
    height: 52px;
    min-height: 52px;
    font-size: 16px;
  }

  .qr-wrapper {
    max-width: 200px;
    margin: 0 auto;
  }

  .stats-bar {
    position: sticky;
    bottom: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(6, 6, 18, 0.85);
    border-top: 1px solid var(--border);
    margin: 0 -16px;
    padding: 8px 16px;
    gap: 0;
  }

  .stat-item {
    flex: 1;
    text-align: center;
  }

  .stat-number {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }
}