/* ================================================
   VARIABLES CSS - SISTEMA DE TOKENS DE DISEÑO
   ================================================ */
:root {
    --color-primary: #AFCBB3; /* color principal */
    --color-secondary: #C3B091; /*  complemento */
    --color-tertiary: #F9F6F9; /*  para contraste suave */
    --color-quaternary: #F5F5EB; /* para fondo */
    --color-quinquenary: #7A8450; /*  para detalles */
    --color-sextenary: #E8B2B2; /* Rosa */
    --color-septenary: #E18595; /* Rosa */
    --color-dark: #0D0D0D; /* Negro para contraste */
    --color-text-header: #16291A; /* Encabezados en crema pistacho */
    --color-text-papas: #687D6C;
    --gradient-primary: linear-gradient(45deg, #96A480, #C3B091, #E8ECD9); /* Gradiente pistacho suave */
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Bordes y sombras */
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-full: 50%;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
    
    /* Transiciones */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.6s ease-in-out;
}

/* ================================================
   RESET Y ESTILOS BASE
   ================================================ */
body {
    font-family: 'Figtree', sans-serif;
    background: var(--color-primary);
    color: var(--color-quaternary);
    margin: 0;
    padding: 0;
}

/* ================================================
   HEADER
   ================================================ */
header {
    background: var(--color-primary);
    padding: 20px;
    text-align: center;
}

header h1 {
    color: var(--color-quaternary);
    font-size: 4.5em;
    font-family: 'Updock', sans-serif; 
    font-weight: bold;    
}

.text-header {
    color: var(--color-primary);
    font-size: 2.5em;
    font-family: 'Figtree', serif; /* Fuente actualizada */ 
    font-weight: bold;    
}

header p {
    color: var(--color-quaternary);
    font-size: 3.5rem; /* Tamaño ajustado para el texto secundario */
    font-family: 'Updock', sans-serif; 
    font-weight: bold;    
}

/* ================================================
   FOOTER
   ================================================ */
footer {
    background-color: #456673;
    color: #fff;
    text-align: center;
    padding: 15px;
}

footer a {
    color: #D7D9C7;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ================================================
   LAYOUT
   ================================================ */
.container {
    /* max-width: 1200px;*/
    margin: 0 auto;
    padding: 20px;
}

/* ================================================
   SISTEMA DE BOTONES
   ================================================ */
.btn-primary {
    background-color: var(--color-sextenary);
    border-color: var(--color-sextenary);
}

.btn-primary:hover {
    background-color: var(--color-septenary);
    border-color: var(--color-septenary);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background: var(--color-sextenary);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-normal);
}

.btn:hover {
    background: var(--color-septenary);
}

/* Botón flotante */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.floating-button i {
    font-size: 24px;
}

/* ================================================
   SISTEMA DE TARJETAS ESPECÍFICAS
   ================================================ */

/* Tarjeta Misa */
.card-Misa h1 {
    font-size: 3.2em;
    color: var(--color-text-header);
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
    text-align: center;
}

.card-Misa a {
    background-color: var(--color-sextenary);
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
}

/* Tarjeta Recepción */
.card-Recepcion h1 {
    font-size: 3.2em;
    color: var(--color-text-header);
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
    text-align: center;
}

.card-Recepcion a {
    background-color: var(--color-sextenary);
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
}

/* Tarjeta Mesa de Regalos */
.card-GiftTable {
    background-color: var(--color-quaternary);
    color: var(--color-text-header);
    text-align: center;
}

.card-GiftTable h1 {
    font-size: 4em;
    color: var(--color-text-header);
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
}

.card-GiftTable h2 {
    font-size: 4em;
    color: var(--color-text-header);

}

.card-GiftTable .GiftTable-text {
    font-size: 2.2em;
    font-weight: bold;
}

.card-GiftTable .GiftTable-subtext {
    font-family: 'Figtree', serif; /* Fuente actualizada */
    color: #456673; /* Color principal para el texto */    
    font-size: 2.2em;
}

@media (max-width: 768px) {

    .card-Misa a {
        font-size: 1rem;
    }   

    .card-Recepcion a {
        font-size: 1rem;
    }
    .card-GiftTable h1 {
        font-size: 3rem;
    }
    .card-GiftTable h2 {
        font-size: 3rem;
    }    
    .card-GiftTable .GiftTable-text {
        font-size: 1.7rem;
    }
    .card-GiftTable .GiftTable-subtext {
        font-size: 1.3em;
    }
}   

/* Tarjeta Vestimenta */
.card-Vestimenta {

    color: var(--color-text-header);
    text-align: center;
}

.card-Vestimenta h1 {
    font-size: 3.2em;
    color: var(--color-text-header);
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
    text-align: center;
}

.card-Vestimenta .titlecolor {
    font-size: 4em;
    color: var(--color-primary);
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
}

.card-Vestimenta .subtitlecolor {
    font-size: 3.6em;
    color: var(--color-secondary);
    font-family: 'Figtree'; /* Fuente actualizada */
    font-weight: bold;
}

.card-Vestimenta .titleCodigo {
    font-size: 2.5em;
    color: var(--color-dark);
    font-family: 'Figtree'; /* Fuente actualizada */
    font-weight: bold;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .card-Vestimenta .subtitlecolor {
        font-size: 3rem;
    }
    .card-Vestimenta .titleCodigo {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .card-Vestimenta .subtitlecolor {
        font-size: 3rem;
    }
    .card-Vestimenta .titleCodigo {
        font-size: 2rem;
    }
}


/* Tarjeta Itinerario */
.card-Itinerario h1 {
    font-size: 3.2em;
    color: var(--color-text-header);
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
    text-align: center;
}

/* Tarjeta Despedida */
.card-Despedida {
    background-color: var(--color-secondary);
    color: var(--color-quaternary);
}

.card-Despedida h1{
    color: var(--color-quaternary);
    font-size: 12rem; 
    font-family: 'Updock', sans-serif; 
    text-align: center; 
    width: 100%;
}

/* Tarjeta Countdown */
.card-Countdown {
    background-color: var(--color-tertiary);
}

.card-Countdown h1 {
    font-size: 3.2em;
    color: var(--color-text-header);
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
    text-align: center;
}   

.card-Countdown h2 {
    font-size: 1.5rem; /* Ajuste para un título más sobrio */
    color: #495057; /* Color de texto secundario */
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}   

@media (max-width: 768px) {
    .card-Countdown h1 {
        font-size: 3.2rem;
    }
    .card-Countdown h2 {
        font-size: 1.5rem;
    }
    .card-Countdown h3 {
        font-size: 2rem;
    }    
}

/* Tarjeta Confirmación */
.card-Confirmacion {
    background-color: var(--color-tertiary);
}

.card-Confirmacion h1 {
    font-size: 3.2em;
    color: var(--color-text-header);
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
    text-align: center;
}

.card-Confirmacion .title {
    font-size: 3em;
    color: var(--color-primary);
    font-weight: bold;
}

.card-Confirmacion button {
    background-color: var(--color-sextenary);
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
}

.img-flor-gracias {
    max-width: 50%;
    width: 200px; 
    height: auto;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .card-Confirmacion button {
        font-size: 1rem;
    }
    .img-flor-gracias {
        max-width: 50%;
    }
}


/* ================================================
   COMPONENTE COUNTDOWN
   ================================================ */
#countdown {
    font-size: 1.5em;
    color: var(--color-text-header);
}

#countdown .countdown-box {
    min-width: 80px;
    max-width: 120px;
    color: var(--color-tertiary);
    background-color: var(--color-septenary);
}

.countdown-card {
    background: var(--gradient-primary);
    color: var(--color-dark);
    border: none;
}

/* ================================================
   TARJETA DE INVITACIÓN
   ================================================ */
.invitation-card {
    background: var(--color-secondary);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.invitation-card h2 {
    color: var(--color-primary);
    font-size: 2em;
}

.invitation-card p {
    font-size: 1.2em;
    margin: 10px 0;
}

/* ================================================
   ANIMACIONES
   ================================================ */
.animation {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    font-family: 'Figtree', serif; /* Fuente actualizada */
    color: #456673; /* Color principal para el texto */    
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   FORMULARIOS
   ================================================ */
.form-container, .admin-login, .gift-table, .itinerary {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
}

.form-container, .admin-login {
    background: var(--color-tertiary);
}

.gift-table, .itinerary {
    background: var(--color-secondary);
}

.form-container form, .admin-login form {
    display: flex;
    flex-direction: column;
}

input, textarea, button {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

input, textarea {
    border: 1px solid var(--color-primary);
}

button {
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background var(--transition-normal);
}

button:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* ================================================
   ITINERARIO Y MESA DE REGALOS
   ================================================ */
.itinerary ul, .gift-table ul {
    list-style: none;
    padding: 0;
}

.itinerary li, .gift-table li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-primary);
}

.itinerary li:last-child, .gift-table li:last-child {
    border-bottom: none;
}

/* ================================================
   CAROUSEL
   ================================================ */
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.2); /* Fondo semitransparente */
    padding: 10px;
    border-radius: 10px;    
}

.carousel-caption.text-top {
    top: 5%; /* Posición superior */
    left: 20%;
    bottom: auto; /* Anula la posición inferior */
    padding: 15px 25px;
    transform: translateY(-50%);
    text-align: center;
    align-items: flex-start;
    justify-content: flex-start;
}

.carousel-caption.text-bottom {
    top: 90%; /* Posición superior */
    bottom: auto; /* Anula la posición inferior */
    transform: translateY(-50%); /* Centrado vertical relativo al top */
}

.carousel-caption h3, .carousel-caption p {
    color: #f9fafc; /* Color del texto */
    margin: 0;
    font-family: 'Updock', sans-serif; 
    font-weight: bold;
}

.carousel-caption h3 {
    font-size: 5.5rem; /* Tamaño mayor para el título */
}

.carousel-caption p {
    font-size: 3.5rem; /* Tamaño ajustado para el texto secundario */
}

/* ================================================
    CARD PERSONALIZADAS PARA FLORES
    ================================================ */
.card-flores {
     background: #fff;
     border-radius: 0; /* Bordes rectos */
     text-align: center;
     position: relative;
}

.card-flores img {
     max-width: 100%;
     height: auto;
     display: block;
     margin: 0 auto;
}

.card-flores .flores-caption {
     font-size: 1.2rem;
     color: var(--color-text-header);
     margin-top: 10px;
}


/* ================================================
   SISTEMA DE TARJETAS BASE
   ================================================ */
.card {
    border: 0px solid #ffffff; /* Sutil borde */
    border-radius: 0; /* Bordes rectos */
}

.cardsection {
    background-color: #fff;
    border: 0px solid #ffffff; /* Sutil borde */   
}

.card-body {
    position: relative;
    overflow: hidden;
    min-height: 200px; /* Altura mínima en desktop */
}

.card-content {
    position: relative;
    z-index: 1;
}

/* Fondo con imagen como marca de agua */
.card-img-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;       /* Ajusta al ancho del card */
    height: 100%;      /* Ajusta al alto del card */
    object-fit: contain; /* La imagen se ve completa */
    object-position: center;
    opacity: 0.75;
    z-index: 0;
    pointer-events: none; /* No bloquea clics */
}

/* ================================================
   ESTILOS DE HEADER DE TARJETAS
   ================================================ */
.card-header h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary); /* Ligero contraste del encabezado */
}

.card-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    
}

.card-title label {
    font-size: 2.5rem;
    font-family: 'Figtree'; /* Fuente actualizada */
    font-weight: bold;
    color: var(--color-text-header); /* Ligero contraste del encabezado */
}

/* ================================================
   ESTILOS DE PÁRRAFOS
   ================================================ */
.card-body p {
    font-size: 2rem; /* Tamaño de texto ajustado para mejor lectura */
    line-height: 1.6; /* Espaciado entre líneas para mejor estética */
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-text-header); /* Contraste para la legibilidad */
}

/* Nombres destacados */
.card-body p span {
    font-family: 'Updock', sans-serif; 
    font-size: 2.5rem; /* Tamaño destacado para los nombres */
    color: #456673; /* Color principal */
}

/* Texto en negrita */
.card-body p strong {
    color: #85A0A6; /* Color secundario para resaltar */
    font-weight: bold;
}

/* Estilos generales y de títulos */
.titulo-principal {
    font-family: 'Figtree', serif;
    font-size: 2.5rem; /* Ajuste para un título más sobrio */
    color: #495057; /* Color de texto secundario */
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* * ESTILOS PARA NOMBRES PRINCIPALES (2 COLUMNAS)
*/
.nombre-principal-grid {
    display: grid;
    /* 2 columnas con el mismo tamaño */
    grid-template-columns: 1fr 1fr; 
    gap: 15px; /* Espacio entre los nombres */
    margin: 1.5rem auto;
    width: 90%; /* Asegura que no se extienda demasiado */
    max-width: 800px;
    text-align: center;
}

.nombre-principal {
    display: block; /* Asegura que cada nombre ocupe su celda */
    font-family: 'Updock', sans-serif; 
    /* Usamos 'clamp' para un tamaño de fuente responsivo y controlado */
    font-size: clamp(2.2rem, 3vw, 4rem); 
    color: var(--color-text-papas, #002645);     
    line-height: 1.2;
    padding: 0 5px;
}

/* * ESTILOS PARA NOMBRES DE PADRINOS 
*/
.nombre-padrino {
    font-family: 'Updock', sans-serif; 
    /* clamp para responsividad */
    font-size: clamp(2.2rem, 3vw, 4rem); 
    color: var(--color-text-papas, #002645); 
    display: block;
    text-align: center;
    margin: 1rem 0;
    line-height: 1.2;
}

/* * ESTILOS PARA LA FRASE ESPECIAL
*/
.frase-especial {
    font-size: clamp(1.5rem, 3vw, 2rem); /* Tamaño legible y responsivo */
    color: #6c757d; /* Color gris suave */
    font-style: italic; /* Énfasis en la frase */
    padding: 1rem 15px;
    line-height: 1.4;

}

/* * MEDIA QUERIES PARA MÓVIL (si aún necesitas ajustes específicos) 
*/
@media (max-width: 576px) {
    /* En pantallas muy pequeñas, podemos apilar los nombres si quedan muy largos, 
       PERO para mantener la solicitud de 2 columnas, ajustamos el gap y padding */
    .nombre-principal-grid {
        gap: 5px; 
    }
}

/* ================================================
   MODALES
   ================================================ */
.modal-content .btn-primary {
    background: var(--color-sextenary);
    border: none;
    color: #fff;
    transition: background var(--transition-normal);
}

.modal-content .btn-primary:hover {
    background: var(--color-septenary);
}

.modal-header .btn-close {
    color: var(--color-dark);
    background: var(--color-quaternary);
    border-radius: 50%;
    opacity: 1;
}

.modal-header .btn-close:hover {
    background: var(--color-primary);
}

.modal.fade .modal-dialog {
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}


.gift-container {
  position: relative;
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Flores a la izquierda */
.gift-container .flores {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 25%;
  height: auto;
  z-index: 2;
}

/* Sobre centrado */
.gift-container .sobre {
  max-width: 100%;
  height: auto;
  z-index: 1;
}


.card-footer {
    background-color: var(--color-primary);
    max-width: auto; 
    margin: 0 auto; 
    font-size: 0.95rem;    
}


/* ================================================
   Audio Overlay
   ================================================ */
        .audio-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            color: white;
            text-align: center;
            cursor: pointer;
        }
                
        .audio-overlay-content {
            position: relative;
            overflow: hidden; /* Para que el video no desborde */
            background: #333;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            width: 90%;
            max-width: 600px;
            aspect-ratio: 1000 / 1356;
            min-height: 400px;
            max-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .overlay-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            z-index: 1; /* Detrás del botón */
            opacity: 0.9; /* Opcional: reduce un poco el brillo para mejorar legibilidad */
        }

        /* Aseguramos que el botón esté arriba */
        .start-button {
            position: relative;
            z-index: 2; /* Siempre encima del video */
            background: var(--color-sextenary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: auto; /* Empuja el botón hacia abajo, mejor que margen fijo */
        }

        .start-button:hover {
            background: var(--color-septenary);
            transform: scale(1.05);
        }        
       /* .audio-overlay-content {
            background: #333;
            background-image: url('../../../../assets/images/tarjetadeinicio.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;           
            width: 90%;
            max-width: 600px;
            aspect-ratio: 1000 / 1356;
            min-height: 400px;
            max-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }*/

        .audio-overlay h2 {
            margin-bottom: 20px;
            color: #fff;
        }
        
        .audio-overlay p {
            color: #ccc;
            margin-bottom: 30px;
        }
        
        .start-button {
            background: var(--color-sextenary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 550px;
            position: relative;
            z-index: 2;
        }

        .start-button:hover {
            background: var(--color-septenary);
            transform: scale(1.05);
        }
        
        
        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }
        
        .hidden {
            display: none;
        }


/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .titulo-principal {
        font-size: 1.5rem; /* Ajuste para un título más sobrio */
    }

    .carousel-caption.text-top {
        top: 4%; /* Ajusta la posición superior en móviles */
        transform: translateY(0); /* Elimina el centrado vertical relativo */
    }
    
    .carousel-caption h3 {
        font-size: 2.5rem; /* Tamaño mayor para el título */
    }
    
    .carousel-caption p {
        font-size: 1.5rem; /* Tamaño más pequeño para el texto */
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .card-body {
        min-height: auto; /* Deja que el alto lo marque la imagen */
    }    
    
    .card-body p {
        font-size: 1.8rem;
    }
    
    .card-body p span {
        font-size: 2rem;
    }
    
    .card-Despedida h1{
        font-size: 5rem; 
        text-align: center;
    }

    .card-img-background {
        object-fit: contain; /* Que siempre se vea completa */
    }
    
    .gift-container {
        min-height: 250px;
    }

    .gift-container .flores {
        max-width: 50%;  /* más pequeñas en móvil */
        opacity: 0.85;   /* un poco translúcidas */
    }

    .gift-container .sobre {
        max-width: 90%;  /* que ocupe más espacio */
    }

    /* Estilo para columnas en vista móvil */
    .gift-column {
        border-bottom: 1px solid #ccc; /* Línea divisoria */
        padding-bottom: 15px; /* Espaciado inferior */
        margin-bottom: 15px; /* Espaciado entre elementos */
    }

    /* Quitar la línea del último elemento */
    .gift-column:last-child {
        border-bottom: none;
    }

    .audio-overlay-content {
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
        min-height: 100vh;
        aspect-ratio: unset;
        padding: 0;
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    #countdown .countdown-box {
        flex: 1 1 45%; /* Acomoda dos cajas por fila en pantallas pequeñas */
    }
    .card-footer {
        padding: 0.5rem !important;
    }

    .card-footer img {
        max-height: 100px !important;
    }

    .card-title h2 {
        font-size: 1.75rem;
        
    }

    .card-footer .card-title {
        font-size: 0.95rem !important;
        padding-left: 0 !important;
        text-align: center;
    }

    .card-footer .btn {
        font-size: 0.85rem !important;
        padding: 0.3rem 0.7rem !important;
        text-align: center !important;
    }
    .audio-overlay-content {
        width: 100vw;
        max-width: 100vw;
        aspect-ratio: 1000 / 1356;
        min-height: 180px;
        max-height: 155vh;
        padding: 10px 5px;
        background-size: contain;
        background-position: center;
    }
    .start-button {
        padding: 12px 25px;
        font-size: 14px;
        margin-top: 350px;
    }

}