/* ═══════════════════════════════════════════════════════════════
   GRILLZ BEATS — HOJA DE ESTILOS OPTIMIZADA
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bg:        #0d0d0d;
  --surface:   #141414;
  --surface2:  #1a1a1a;
  --border:    #242424;
  --border2:   #2e2e2e;
  --text:      #ededed;
  --muted:     #4a4a4a;
  --muted2:    #6e6e6e;
  --accent:    #e63946;
  --accent2:   #ff6b6b;
  --gold:      #f4a940;
  --green:     #2ecc71;
  --radius:    10px;
  --radius-sm: 6px;
}

body {
  font-family: 'DM Mono', monospace;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.10'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* Navegación */
nav {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
}
.nav-brand span { color: var(--accent); }
.nav-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--muted2);
  text-transform: uppercase;
}

/* Contenido principal */
main {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 20px 100px;
}

/* Video */
.video-wrap {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
  box-shadow: -10px 0 20px -10px rgba(230,57,70,0.1), 10px 0 20px -10px rgba(230,57,70,0.1);
  transition: box-shadow 0.3s ease;
}
.video-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(ellipse at left, rgba(230,57,70,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at right, rgba(230,57,70,0.1) 0%, transparent 50%);
  border-radius: inherit;
  z-index: 1;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(160deg, #1a1014 0%, #0d0d0d 60%, #10141a 100%);
}
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(230,57,70,0.4);
  animation: pulse 2s ease infinite;
}
.play-btn svg { margin-left: 4px; }
.video-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted2);
  text-transform: uppercase;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
}
.waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.5;
  animation: wave 1.2s ease infinite;
}
.waveform span:nth-child(1)  { height:40%; animation-delay:0s;   }
.waveform span:nth-child(2)  { height:70%; animation-delay:.1s;  }
.waveform span:nth-child(3)  { height:90%; animation-delay:.2s;  }
.waveform span:nth-child(4)  { height:60%; animation-delay:.3s;  }
.waveform span:nth-child(5)  { height:80%; animation-delay:.4s;  }
.waveform span:nth-child(6)  { height:50%; animation-delay:.5s;  }
.waveform span:nth-child(7)  { height:75%; animation-delay:.6s;  }
.waveform span:nth-child(8)  { height:45%; animation-delay:.7s;  }
.waveform span:nth-child(9)  { height:85%; animation-delay:.8s;  }
.waveform span:nth-child(10) { height:55%; animation-delay:.9s;  }
.waveform span:nth-child(11) { height:65%; animation-delay:1.0s; }
.waveform span:nth-child(12) { height:35%; animation-delay:1.1s; }

/* Info del beat */
.beat-info {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.5s 0.1s ease both;
}
.beat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--accent2);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.beat-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s ease infinite;
}
.beat-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 7vw, 42px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.beat-title em { font-style: normal; color: var(--accent); }
.beat-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.meta-chip {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted2);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-chip::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
}
.meta-chip:first-child::before { display: none; }

/* Aviso de términos */
.terms-notice {
  margin: 20px 0;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: fadeUp 0.5s 0.15s ease both;
}
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}
.terms-check input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  margin: 0;
}
.terms-check input[type="checkbox"] + span::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 6px;
  margin-right: 10px;
  vertical-align: middle;
  transition: all 0.2s ease;
  cursor: pointer;
}
.terms-check input[type="checkbox"]:hover + span::before {
  border-color: var(--accent2);
}
.terms-check input[type="checkbox"]:checked + span::before {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='14px' height='14px'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.terms-check span {
  line-height: 1.4;
  font-size: 12px;
  color: var(--muted2);
}
.terms-check label a {
  color: var(--accent2);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,107,107,0.3);
}

/* Licencias */
.license-header {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.5s 0.2s ease both;
}
.license-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.licenses { display: flex; flex-direction: column; gap: 10px; }
.lic {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  animation: fadeUp 0.5s ease both;
  position: relative;
}
.lic:nth-child(1) { animation-delay: 0.25s; }
.lic:nth-child(2) { animation-delay: 0.30s; }
.lic:nth-child(3) { animation-delay: 0.35s; }
.lic:nth-child(4) { animation-delay: 0.40s; }
.lic:hover { 
  border-color: var(--border2); 
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.5);
  transition: all 0.25s ease;
}
.lic.featured { border-color: rgba(230,57,70,0.3); }
.lic.featured:hover { 
  border-color: var(--accent); 
  box-shadow: 0 0 18px rgba(230,57,70,0.3);
  transition: box-shadow 0.2s ease;
}
.lic.locked { opacity: 0.6; }
.lic.exclusive {
  box-shadow: 1px 1px 15px -10px #f4a940, 1px 1px 15px -10px rgb(244 169 64);
  border-color: rgb(244 169 64 / 23%);
}
.lic.exclusive:hover { border-color: rgb(244 169 64 / 63%); }
.lic-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 8px;
  letter-spacing: 2px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}
.lic-top {
  padding: 28px 18px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.lic-left { flex: 1; min-width: 0; }
.lic-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 4px;
}
.lic-desc {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted2);
  text-transform: uppercase;
}
.lic-right { text-align: right; flex-shrink: 0; }
.lic-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
}
.lic.featured .lic-price { color: var(--accent2); }
.lic-files {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.lic-perks {
  padding: 0 18px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
}
.perk {
  font-size: 12px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}
.perk::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--muted);
}
.perk.yes { color: var(--text); }
.perk.yes::before { background: var(--green); }
.perk.no::before  { opacity: 0.3; }
.perk.hot { color: var(--gold); }
.perk.hot::before { background: var(--gold); }
.lic-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.015);
}
.lic-note { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* Botones generales */
.buy-btn {
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
}
.buy-btn:active {
  transform: scale(0.97);
}
.buy-btn:hover { background: var(--border2); }
.lic.featured .buy-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.lic.featured .buy-btn:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}
.buy-btn.contact {
  background: transparent;
  border-color: var(--border2);
  color: var(--muted2);
}
.buy-btn.contact:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.buy-btn.loading { opacity: 0.5; pointer-events: none; }

/* Modales */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 28px 24px;
  width: 100%;
  max-width: 420px;
  animation: fadeUp 0.3s ease both;
}
.modal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 9px;
  letter-spacing: 2px;
  color: #6cbc85;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent2);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.modal-info {
  font-size: 12px;
  color: var(--muted2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.modal-info span { color: var(--text); }
.modal-actions { display: flex; gap: 8px; }
.modal-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-btn.primary { background: var(--accent); color: #fff; }
.modal-btn.primary:hover { background: var(--accent2); }
.modal-btn.secondary {
  background: var(--surface2);
  color: var(--muted2);
  border: 1px solid var(--border2);
}
.modal-btn.secondary:hover { color: var(--text); }
.modal-btn.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Modal de licencia (más grande) */
.modal-license {
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
}
.modal-license-content {
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  max-height: 60vh;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-right: 10px;
}
.modal-license-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--accent2);
}
.modal-license-content h4 {
  font-size: 14px;
  margin: 15px 0 5px;
  color: var(--text);
}
.modal-license-content ul {
  margin: 5px 0 10px;
  padding-left: 20px;
}
.modal-license-content li { margin: 4px 0; }
.modal-license-content p { margin: 8px 0; }
.modal-license-content em { color: var(--muted2); font-size: 11px; }
.modal-license-content strong {
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  color: var(--accent2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.modal-license-content b {
  font-weight: 700;
  font-family: 'DM Mono', monospace;
  -webkit-font-smoothing: antialiased;
}

/* Botón "View License" en tarjetas */
.lic-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.lic-link-btn {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted2);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}
.lic-link-btn:hover {
  border-color: var(--accent2);
  color: var(--accent2);
}

/* Campos de los modales */
.modal-fields {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal-field label {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted2);
  text-transform: uppercase;
}
.modal-field input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.modal-field input:focus { border-color: var(--accent2); }
.modal-field input::placeholder { color: var(--muted); }

/* Footer */
footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
}
.footer-links { display: flex; gap: 16px; }
.footer-links a {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 8px;
  z-index: 9998;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { border-color: var(--accent); color: var(--accent2); }

/* Chip de descarga gratuita */
.free-download-chip {
  cursor: pointer;
  background: rgba(244, 169, 64, 0.15);
  border: 1px solid rgba(244, 169, 64, 0.4);
  border-radius: 4px;
  padding: 2px 8px;
  transition: all 0.2s;
}
.free-download-chip:hover {
  background: rgba(244, 169, 64, 0.3);
  border-color: var(--gold);
  color: var(--gold);
}
.warning-box {
  background: rgba(230,57,70,0.1);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 16px;
  text-align: left;
  font-size: 11px;
  color: var(--muted2);
}
.warning-box strong { color: var(--accent2); }

/* Spinner */
.buy-btn.loading::after,
.modal-btn.loading::after,
.download-btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.modal-btn.loading { color: transparent !important; }
.download-btn.loading {
  background: #ffcc00;
  color: #0a0a0a;
  position: relative;
  pointer-events: none;
}
.download-btn.loading::after {
  border-top-color: #0a0a0a;
}

/* Animaciones */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 40px rgba(230,57,70,0.4); }
  50%      { box-shadow: 0 0 60px rgba(230,57,70,0.7); }
}
@keyframes wave {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(1.4); opacity: 1; }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive (MÓVIL) */
@media (max-width: 480px) {
  /* === Navegación === */
  nav {
    padding: 12px 16px;
  }
  .nav-brand {
    font-size: 14px;
  }
  .nav-tag {
    font-size: 8px;
    letter-spacing: 2px;
  }

  /* === Video === */
  .play-btn {
    width: 48px;
    height: 48px;
  }
  .play-btn svg {
    width: 18px;
    height: 18px;
  }
  .video-label {
    font-size: 8px;
    letter-spacing: 2px;
  }

  /* === Tarjetas de licencia (todas) === */
  .lic-top {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name price"
      "files files"
      "desc desc";
    gap: 8px 12px;
    padding: 20px 18px 12px;
  }
  .lic-left, .lic-right {
    display: contents;
  }
  .lic-name {
    grid-area: name;
    font-size: 18px;
    white-space: normal;
  }
  .lic-price {
    grid-area: price;
    text-align: right;
    font-size: 20px !important;
    white-space: nowrap;
  }
  .lic.exclusive .lic-price {
    font-size: 16px !important;
    white-space: normal;
  }
  .lic-files {
    grid-area: files;
    text-align: left;
    font-size: 10px;
    margin-top: 4px;
    word-break: break-word;
    white-space: normal;
  }
  .lic-desc {
    grid-area: desc;
    text-align: left;
    font-size: 10px;
    color: var(--muted2);
    word-break: break-word;
  }

  /* === Perks === */
  .lic-perks {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .perk {
    font-size: 11px;
  }

  /* === Footer de cada tarjeta === */
  .lic-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .lic-note {
    text-align: center;
    width: 100%;
    font-size: 9px;
  }
  .lic-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .lic-link-btn, .buy-btn {
    width: 100%;
    text-align: center;
    white-space: normal;
    font-size: 9px;
    padding: 8px 12px;
    box-sizing: border-box;
    display: block;
  }
  .buy-btn.contact {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* === Footer global === */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-links {
    justify-content: center;
  }

  /* === Otros ajustes === */
  .lic-badge {
    display: none;
  }
  main {
    padding: 24px 16px 80px;
  }
  .modal-license {
    max-width: 95%;
    padding: 15px;
  }
  .warning-box {
    font-size: 9px;
  }

  /* === Ajuste del aviso de términos en móvil (corregido) === */
  .terms-notice {
    padding: 10px 12px;
  }
  .terms-check span {
    font-size: 11px;
  }
}

/* === Colores de nombres de licencia (globales, sin brillo) === */
#lic-basic .lic-name {
  color: var(--text);
}
#lic-premium .lic-name {
  color: var(--accent2);
}
#lic-trackout .lic-name {
  color: var(--text);
}
#lic-exclusive .lic-name {
  color: var(--gold);
}

/* === Estilo específico para el precio "Negotiate" en la tarjeta Exclusive (escritorio) === */
.lic.exclusive .lic-price {
  font-weight: 600;
  font-size: 20px;
  color: var(--muted2);
  letter-spacing: 0.5px;
}