/* ================================
   01) RESET + VARIABLES
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #00d9ff;
    --primary-blue: #0099cc;
    --accent-red: #ff3d57;
    --success-green: #00ff88;
    --error-red: #ff3d57;

    --bg-dark: #1a1a1aaf;
    --bg-card: rgba(42, 42, 42, 0.799);
    --bg-input: #1a1a1aa7;

    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #808080;

    --shadow-cyan: 0 0 30px rgba(0, 217, 255, 0.3);
    --shadow-red: 0 4px 20px rgba(255, 61, 87, 0.4);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.6);

    /* Tamaño de cards de producto (desktop) */
    --product-card-size: clamp(190px, 14vw, 260px);

    /* AJUSTE RAPIDO (MOBILE): espacio extra debajo del navbar */
    --mobile-top-gap: 50px;
}

/* ================================
   02) BASE
================================ */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    background: #000;
}

/* ================================
   03) FONDO
================================ */
.background-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.background-desktop {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/Fondo-pantalla/digimon.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.background-mobile {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/Fondo-pantalla/digimon-telefono.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

@media (max-width: 768px) {
    .background-desktop { display: none; }
    .background-mobile { display: block; }
}

.background-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

/* ================================
   04) NAVBAR
================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.navbar-inner {
    height: 70px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.navbar-left { display: flex; align-items: center; }
.navbar-center { display: flex; align-items: center; justify-content: center; }

.navbar-right {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}

.navbar-title-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.mobile-left { display: none; }
.desktop-center { display: block; }

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.2s ease, background 0.2s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 480px) {
    .navbar-inner {
        grid-template-columns: auto 1fr auto;
        height: 64px;
    }

    .mobile-left { display: block; height: 34px; }
    .desktop-center { display: none; }
    .social-link span { display: none; }
    .navbar-right { gap: 18px; }
    .social-link { padding: 10px; }
}

/* ================================
   05) CONTENEDOR PRINCIPAL
================================ */
.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 2rem 1rem;
    position: relative;
    z-index: 1;

    /* espacio para navbar en desktop */
    padding-top: 90px;
}

/* Mobile/Tablet: subimos contenido y damos aire debajo del navbar */
@media (max-width: 768px) {
    .main-container {
        justify-content: flex-start;
        padding-top: calc(70px + var(--mobile-top-gap));
        padding-bottom: 2.2rem;
    }
}
@media (max-width: 480px) {
    .main-container {
        justify-content: flex-start;
        padding-top: calc(64px + var(--mobile-top-gap));
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ================================
   06) TARJETA DE CONSULTA (DESKTOP)
================================ */
.query-card {
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 1.4rem;

    /* 🔥 MÁS COMPACTO */
    padding: 2.25rem 1.85rem;
    max-width: 480px;
    width: 100%;

    box-shadow:
        0 8px 40px rgba(0,0,0,0.55),
        0 0 26px rgba(0,217,255,0.16);

    animation: fadeInScale 0.6s ease-out;
}



.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.logo-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.card-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

/* ================================
   07) FORMULARIO
================================ */
.query-form { animation: fadeIn 0.6s ease-out 0.6s both; }
.form-field { margin-bottom: 1.25rem; }

.field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.field-label svg { color: var(--primary-cyan); }

.field-input {
    width: 100%;
    padding: 1rem 1.1rem;
    background: var(--bg-input);
    border: 2px solid #3a3a3a;
    border-radius: 0.65rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.field-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.field-input::placeholder { color: var(--text-muted); }

.field-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300d9ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

/* ================================
   08) BOTON
================================ */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-red), #ff1744);
    border: none;
    border-radius: 0.65rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-red);
    margin-top: 1.5rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 61, 87, 0.5);
}

.submit-btn:active:not(:disabled) { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* ================================
   09) SPINNER
================================ */
.spinner {
    animation: rotate 2s linear infinite;
    width: 24px;
    height: 24px;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* ================================
   10) RESULTADOS
================================ */
.result-container { animation: fadeInScale 0.4s ease-out; margin-top: 1.5rem; }
.result { text-align: center; padding: 1.5rem; }
.result-icon { margin: 0 auto 1rem; }

.success-icon {
    color: var(--success-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}
.error-icon {
    color: var(--error-red);
    filter: drop-shadow(0 0 10px rgba(255, 61, 87, 0.5));
}

.result-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

.code-display {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(0, 153, 204, 0.15));
    border: 3px solid var(--primary-cyan);
    border-radius: 1rem;
    padding: 1.75rem;
    margin: 1.5rem 0;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.code-value {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.75rem;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
    display: block;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary-cyan);
    border: none;
    border-radius: 0.65rem;
    color: #000;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}
.copy-btn:active { transform: translateY(0); }
.copy-btn.copied { background: var(--success-green); }

.result-details {
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3a3a;
    border-radius: 0.65rem;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.result-details p { margin-bottom: 0.5rem; display: flex; gap: 0.5rem; }
.result-details p:last-child { margin-bottom: 0; }
.result-details strong { color: var(--primary-cyan); min-width: 60px; }

.error-message { color: var(--text-secondary); margin-bottom: 1rem; font-size: 1rem; }

.error-tips {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3a3a;
    border-radius: 0.65rem;
    padding: 1rem 1.25rem;
}

.error-tips li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.error-tips li:last-child { margin-bottom: 0; }
.error-tips li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--error-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.retry-btn {
    width: 100%;
    padding: 0.875rem;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    border-radius: 0.65rem;
    color: var(--primary-cyan);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.retry-btn:hover {
    background: var(--primary-cyan);
    color: #000;
    transform: translateY(-2px);
}

/* ================================
   11) ANIMACIONES
================================ */
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================
   12) RESPONSIVE - FORM
================================ */
@media (max-width: 768px) {
    .query-card {
        padding: 2rem 1.5rem;
        max-width: 520px;
        width: 100%;
    }

    .logo-image { width: 120px; height: 120px; }
    .card-title { font-size: 1.5rem; }

    .code-value {
        font-size: 2.5rem;
        letter-spacing: 0.5rem;
    }
}

@media (max-width: 480px) {
    .query-card {
        padding: 1.75rem 1.25rem;
        border-width: 2px;
        max-width: 480px;
        width: 100%;
    }

    .logo-image { width: 100px; height: 100px; }
    .card-title { font-size: 1.35rem; }

    .field-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.95rem;
    }

    .submit-btn { padding: 0.875rem; font-size: 0.9rem; }

    .code-value {
        font-size: 2rem;
        letter-spacing: 0.4rem;
    }

    .result-title { font-size: 1.25rem; }
}

/* ================================
   13) PRODUCTOS
================================ */
.products-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    color: var(--primary-cyan);
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

/* Mobile products (solo visible en responsive) */
.products-mobile {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 22px;
    padding: 0 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.product-mobile {
    display: block;
    position: relative;
    width: 100%;
    max-width: 86px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin: 0 auto;
}

.product-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none !important;
    opacity: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform 0.25s ease;
}

.product-mobile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 217, 255, 0.42);
}
.product-mobile:hover img { transform: scale(1.06); }

/* Desktop products layout */
.products-layout {
    display: grid;
    grid-template-columns: 280px minmax(520px, 700px) 280px;
    gap: 48px;
    align-items: start;

    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.products-left,
.products-right {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.product-card {
    display: block;
    position: relative;
    width: 100%;
    max-width: var(--product-card-size);
    margin: 0 auto;

    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    filter: none !important;
    opacity: 1;

    transform: translateZ(0);
    backface-visibility: hidden;

    transition: transform 0.25s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.40);
}
.product-card:hover img { transform: scale(1.06); }

/* ================================
   14) RESPONSIVE - PRODUCTOS
================================ */
@media (max-width: 1400px) {
    .products-layout {
        grid-template-columns: 250px minmax(520px, 700px) 250px;
        gap: 44px;
        padding: 0 34px;
    }
}

@media (max-width: 1200px) {
    .products-layout {
        grid-template-columns: 220px minmax(520px, 700px) 220px;
        gap: 34px;
        padding: 0 26px;
    }
    .products-left, .products-right { gap: 34px; }
}

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 200px minmax(520px, 700px) 200px;
        gap: 26px;
        padding: 0 20px;
    }
    .products-left, .products-right { gap: 28px; }
    .products-title { font-size: 12px; margin-bottom: 18px; }
}

@media (max-width: 768px) {
    .products-mobile {
        display: grid;
        max-width: 380px;
        gap: 10px;
        margin-top: 6px;
        margin-bottom: 18px;

        /* ✅ asegura centrado del bloque */
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 12px;

        /* ✅ clave: centra los hijos del grid (query-card + resultados) */
        justify-items: center;
    }

    .products-left,
    .products-right {
        display: none;
    }

    .query-card {
        margin-top: 0;
        max-width: 520px;
        width: 100%;

        /* ✅ centra el card aunque algo intente alinearlo a la izquierda */
        margin-left: auto;
        margin-right: auto;
        justify-self: center;
    }

    /* ✅ por si el card de resultados se renderiza fuera del query-card */
    .result-container {
        width: 100%;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        justify-self: center;
    }
}


@media (max-width: 480px) {
    .products-mobile {
        gap: 8px;
        padding: 0 12px;
        margin-top: 4px;
        margin-bottom: 16px;
        max-width: 330px;
    }

    .product-mobile {
        max-width: 74px;
        box-shadow: 0 3px 12px rgba(0, 217, 255, 0.25);
    }

    .product-mobile:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 217, 255, 0.38);
    }
}

@media (max-width: 375px) {
    .products-mobile { max-width: 290px; gap: 6px; }
    .product-mobile { max-width: 66px; }
}

@media (min-width: 1800px) {
    :root { --product-card-size: clamp(220px, 12vw, 280px); }

    .products-layout {
        grid-template-columns: 320px minmax(620px, 760px) 320px;
        gap: 70px;
        padding: 0 70px;
    }

    .query-card { max-width: 760px; }
}


/* ================================
   FIX DESKTOP: centro estable (no se mueve)
   Pegar al FINAL del CSS
================================ */
@media (min-width: 769px) {

  /* 1) El grid SIEMPRE centrado en la pantalla */
  .products-layout{
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    /* IMPORTANTE: evita que el contenido “se estire” raro */
    justify-content: center;
  }

  /* 2) Columna central con ancho fijo -> no cambia al redimensionar */
  .products-layout{
    grid-template-columns:
      280px                     /* izquierda */
      480px                     /* centro (formulario) */
      280px;                    /* derecha */
  }

  /* 3) Query card centrado dentro de su columna */
  .products-layout .query-card{
    width: 100%;
    max-width: 480px;
    justify-self: center;
  }

  /* 4) Tarjetas de productos centradas y estables */
  .products-left,
  .products-right{
    align-items: center;
  }

  .products-left .product-card,
  .products-right .product-card{
    justify-self: center;
  }
}

/* ================================
   FIX: Resultados no desbordan
================================ */

/* El contenedor de resultados NO puede crecer más que el form */
.result-container,
.result {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Código siempre contenido */
.code-display {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

/* El número NO empuja el card */
.code-value {
    max-width: 100%;
    text-align: center;
    word-break: break-all;
    letter-spacing: 0.5rem;
}

/* En móviles reducimos un poco el impacto */
@media (max-width: 480px) {
    .code-value {
        font-size: 1.8rem;
        letter-spacing: 0.35rem;
    }
}

/* Detalles del resultado siempre alineados */
.result-details,
.error-tips {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}


/* ================================
   FIX FINAL: Resultado NO se corre a la derecha al aparecer
   (mantiene tu esencia, solo añade candados)
   Pegar AL FINAL del CSS
================================ */

/* 1) El card no puede “crecer raro” cuando aparece el resultado */
.query-card{
  overflow: hidden; /* ✅ evita que el contenido empuje visualmente el card */
}

/* 2) Resultados siempre centrados y dentro del ancho del card */
.result-container{
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* 3) El bloque del código no puede romper el layout */
.code-display{
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}

/* 4) ✅ PARCHE CLAVE: tu .code-value se pisa en dos lados y “mueve” el card
      Acá lo dejamos CENTRADO y contenido, sin perder tu estilo */
.code-value{
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;

  /* mantiene tu vibra de código grande, pero evita empujar a la derecha */
  word-break: break-word;
  overflow-wrap: anywhere;

  /* tu esencia: spacing pro, pero responsivo */
  letter-spacing: clamp(0.35rem, 3vw, 0.75rem);
  font-size: clamp(1.8rem, 8vw, 3rem);
}

/* 5) En móvil, el resultado debe “calzar” exacto con tu query-card */
@media (max-width: 768px){
  .result-container{
    max-width: 520px; /* igual que tu query-card en 768px */
    justify-self: center;
  }
}

@media (max-width: 480px){
  .result-container{
    max-width: 480px; /* igual que tu query-card en 480px */
  }
}

/* ================================
   AJUSTE FINAL UX
   - correo con salto de línea
   - código SIN salto
   - recuadros un poco más anchos
   Mantiene tu esencia 🔥
================================ */

/* 🔹 1) Agrandamos ligeramente el card interno */
.code-display,
.result-details {
    width: 100%;
    max-width: 92%;           /* ⬅️ un poco más ancho que antes */
    margin-left: auto;
    margin-right: auto;
}

/* 🔹 2) El CÓDIGO NUNCA debe saltar de línea */
.code-value {
    white-space: nowrap;      /* ⬅️ CLAVE */
    overflow: hidden;
    text-overflow: ellipsis;

    /* mantenemos tu estilo */
    letter-spacing: clamp(0.45rem, 3vw, 0.75rem);
    font-size: clamp(2rem, 7vw, 3rem);
}

/* 🔹 3) Permitimos salto de línea SOLO en valores largos (correo) */
.result-details p {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.result-details p span {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* 🔹 4) note: el label ("De:", "Fecha:") nunca se rompe */
.result-details strong {
    white-space: nowrap;
}

/* 🔹 5) En mobile lo afinamos un poco más */
@media (max-width: 480px) {

    .code-display,
    .result-details {
        max-width: 96%;
    }

    .code-value {
        font-size: 1.9rem;
        letter-spacing: 0.4rem;
    }
}

