/* Global Styles */
:root {
    --primary-blue: #00162d;
    --secondary-blue: #012d52;
    --accent-blue: #6FB1FC;
    --white: #FFFFFF;
    --text-color: #333333;
    --shadow-sm: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.4);
    --form-color-01: #ebad23;
    --form-color-02: #ad2217;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bebas Neue', sans-serif;
    background-image: url(../imagenes/fondo_sorteo_02.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Animación de nieve */
.snow, .snow:before, .snow:after {
    content: "";
    position: fixed;
    /* Cambiado a fixed para que se mantenga en la ventana */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(4px 4px at 100px 50px, #fff, transparent),
        radial-gradient(6px 6px at 200px 150px, #fff, transparent),
        radial-gradient(3px 3px at 300px 250px, #fff, transparent),
        radial-gradient(4px 4px at 400px 350px, #fff, transparent),
        radial-gradient(6px 6px at 500px 100px, #fff, transparent),
        radial-gradient(3px 3px at 50px 200px, #fff, transparent),
        radial-gradient(4px 4px at 150px 300px, #fff, transparent),
        radial-gradient(6px 6px at 250px 400px, #fff, transparent),
        radial-gradient(3px 3px at 350px 500px, #fff, transparent);
    background-size: 650px 650px;
    animation: snow-fall 10s linear infinite;
    z-index: 999;
    /* Coloca la nieve sobre las imágenes */
    pointer-events: none;
    /* Evita que la nieve bloquee los clics */
}

.snow:after {
    margin-left: -250px;
    opacity: 0.5;
    animation-duration: 20s;
}

.snow:before {
    margin-left: 250px;
    opacity: 0.7;
    animation-duration: 15s;
}

/* Loader/Preload */
.loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, var(--secondary-blue), var(--primary-blue));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(111, 177, 252, 0.3);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Typography */
h1 {
    font-size: 8rem;
    letter-spacing: 4px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    line-height: 1;
}

p {
    font-size: 2rem;
    opacity: 0.9;
    font-family: 'Bebas Neue', sans-serif;
}

.informativo {
    text-align: center;
    background-color: var(--form-color-01);
    font-size: 18px;
    z-index: 10;
    color: var(--form-color-02);
    width: 100%;
    padding: 5px 10px;
    font-family: 'Poppins', sans-serif;
}

/* Contenedor para la sección de información (imagen y términos) */
.info-section {
    display: flex;
    align-items: flex-start;
    /* Alinea los elementos en la parte superior */
    justify-content: center;
    gap: 30px;
    /* Espacio entre la imagen y los términos */
    padding: 0 30px;
    margin: 40px 0;
}

.info-section .terminos_condiciones {
    /* Se eliminan las propiedades flex y max-width para que herede el ancho del padre */
    margin: 0;
    /* Resetea los márgenes individuales */
}

/* Terms Section */
.terminos_condiciones {
    max-width: 500px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: all 0.5s ease-out;
    z-index: 2;
    color: var(--text-color);
    /* Asegura que los términos estén sobre la nieve */
}

.terminos_condiciones.visible {
    animation: slideInUp 1s ease-out forwards, subtle-glow 4s ease-in-out infinite 1s;
    opacity: 1;
}

.terminos_condiciones h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-align: center;
    text-shadow: none;
    letter-spacing: 1px;
}

.terminos_condiciones h2 {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 10px;
    text-align: center;
}

.terminos_condiciones p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

/* Social Media Section */
.redes_sociales {
    text-align: center;
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.redes_sociales a {
    display: inline-block;
    margin: 0 10px;
}

.redes_sociales a img {
    transition: transform 0.3s ease-out, filter 0.3s ease-out;
}

.redes_sociales a:hover img {
    transform: scale(1.15);
    filter: brightness(1.2);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes snow-fall {
    100% {
        background-position-y: 650px;
        /* Animamos la posición del fondo en lugar del elemento */
    }
}

@keyframes subtle-glow {
    0%, 100% {
        box-shadow: var(--shadow-md);
    }

    50% {
        box-shadow: 0 15px 50px rgba(111, 177, 252, 0.2);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(235, 173, 35, 0.5);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 15px 20px rgba(235, 173, 35, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(235, 173, 35, 0);
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

.invalid {
    border: 2px solid var(--form-color-02) !important;
    animation: shake 0.3s;
}

/* Form Section */
.form-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(1, 45, 82, 0.75), rgba(0, 22, 45, 0.85));
    border: 1px solid var(--accent-blue);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 5;
    position: relative;
}

.form-logo {
    max-width: 150px;
    margin-bottom: 10px;
    animation: logo-float 3s ease-in-out infinite;
}

.form-title {
    color: var(--form-color-01);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.form-title2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 15px;
    position: relative;
    /* Necesario para posicionar el icono de estado del DNI */
}

/* Estilos para el icono de estado de la consulta DNI */
.dni-status-container {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

#dni-status-icon {
    opacity: 0;
    transition: opacity 0.3s;
}

#dni-status-icon.loading {
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 3px solid rgba(111, 177, 252, 0.3);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#dni-status-icon.success::after {
    display: block;
    opacity: 1;
    content: '✔';
    color: #28a745;
    font-size: 20px;
    font-weight: bold;
    animation: none;
    /* Detener la animación de carga */
}

#dni-status-icon.error::after {
    display: block;
    opacity: 1;
    content: '✖';
    color: #dc3545;
    font-size: 20px;
    font-weight: bold;
    animation: none;
    /* Detener la animación de carga */
}

.form-container input[type="text"], .form-container input[type="tel"], .form-container select {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-blue);
    border: 2px solid var(--secondary-blue);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-container input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(111, 177, 252, 0.5);
}

/* Custom File Input */
.form-container input[type="file"] {
    display: none;
    /* Ocultamos el input original */
}

.file-upload-label {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-blue);
    border: 2px solid var(--secondary-blue);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: left;
}

.file-upload-label:hover {
    border-color: var(--accent-blue);
}

.upload-icon {
    margin-right: 10px;
    color: var(--accent-blue);
}

.file-upload-label #file-upload-text {
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.form-group-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
}

.form-group-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-group-checkbox a {
    color: var(--accent-blue);
    text-decoration: none;
}

.form-group-checkbox a:hover {
    text-decoration: underline;
}

.form-container button {
    width: 100%;
    padding: 15px;
    background-color: var(--form-color-01);
    color: var(--form-color-02);
    border: none;
    border-radius: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: bold;
    text-transform: uppercase;
}

.form-container button:hover {
    background-color: #ffc13a;
    /* A lighter shade of form-color-01 */
    transform: scale(1.02);
}

.form-note {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    margin-top: 20px;
    font-weight: normal;
}

.ticket-cost {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.ticket-cost strong {
    font-size: 3.8rem;
    color: var(--form-color-02);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
    background: linear-gradient(-45deg, var(--form-color-01), #ffc13a, #ebad23, #ad2217);
    background-size: 400% 400%;
    border: 3px solid var(--form-color-02);
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite, gradient-animation 5s ease infinite;
    text-align: center;
    line-height: 1;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    display: none;
    /* Oculto por defecto */
}

.form-message.error {
    display: block;
    background-color: rgba(173, 34, 23, 0.3);
    color: #ffc13a;
}

.form-message.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.3);
    color: #d4edda;
}

@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    p {
        font-size: 1.5rem;
    }

    .info-section {
        flex-direction: column;
        /* Apila los elementos verticalmente */
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }

    .info-section .terminos_condiciones {
        max-width: 100%;
        /* Ocupan todo el ancho disponible */
        width: 100%;
    }

    .terminos_condiciones {
        padding: 20px;
    }

    .terminos_condiciones h1 {
        font-size: 1.8rem;
    }

    .terminos_condiciones h2 {
        font-size: 1.2rem;
    }

    .terminos_condiciones p {
        font-size: 0.95rem;
    }

    .form-container {
        margin: 20px 15px;
        padding: 20px;
    }

    .form-title {
        font-size: 2.8rem;
    }
}

/* Countdown Timer Section */
.countdown-container {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
}

.countdown-title {
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.countdown-items {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background: var(--primary-blue);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid var(--secondary-blue);
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.countdown-item span:first-child {
    font-size: 3.5rem;
    color: var(--form-color-01);
    line-height: 1;
}

.countdown-item span:last-child {
    font-size: 1rem;
    color: var(--accent-blue);
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- Payment Methods Section --- */
.payment-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
}

.payment-option {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 100px;
    margin-bottom: 15px;
    padding: 15px 15px 15px 120px;
    /* Espacio para el logo */
    border-radius: 15px;
    color: var(--white);
    font-size: 1.6rem;
    /* 32px */
    font-weight: bold;
    line-height: 1.2;
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 80px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.payment-option:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.payment-option span {
    font-size: inherit;
    font-weight: inherit;
    opacity: 0.9;
}

.yape {
    background-color: #6e1281;
    background-image: url('../imagenes/yape.png');
}

.plin {
    background-image: url('../imagenes/plin.png'), linear-gradient(135deg, #0081fa 0%, #00e2cc 100%);
    background-size: 80px, cover;
    /* Tamaño para la imagen y el degradado */
    background-position: 20px center, 0 0;
    /* Posición para la imagen y el degradado */
    background-repeat: no-repeat;
    /* Se aplica a ambas capas */
}

.enviar {
    background-color: var(--form-color-01);
    color: var(--form-color-02);
    padding: 20px;
    border-radius: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
    border: 2px solid var(--form-color-02);
    animation: pulse 2.5s infinite;
    font-weight: 500;
}

.enviar b {
    font-weight: 700;
}

/* --- Botón de Transmisión en Vivo --- */
.live-link-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    position: relative;
    z-index: 20;
}

.live-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #cc0000;
    /* Rojo para indicar EN VIVO */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.8rem;
    font-family: 'Bebas Neue', sans-serif;
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.6);
    transition: all 0.3s ease;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

.live-button:hover {
    transform: scale(1.1);
    background-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}

/* --- End Payment Methods --- */
.ganadores {
    color: #fff !important;
    font-size: 18px !important;
    font-family: 'Poppins', sans-serif;
}

.ganadores h2 {
    color: var(--form-color-01);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Bebas Neue', sans-serif;
}

.ganadores hr {
    border: 0;
    height: 1px;
    background: var(--form-color-01);
    margin: 20px 0;
}

#hearts-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.heart {
    position: absolute;
    top: -50px;
    animation: fall linear infinite;
    opacity: 0.9;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* Estilos para el Modal de Éxito */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-title {
    color: #012d52;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: bold;
}

.modal-message {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-btn {
    background: #ebad23;
    color: #012d52;
    border: none;
    padding: 12px 35px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 173, 35, 0.4);
}

@keyframes pop {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Estilos Responsivos para el Modal en Móviles */
@media (max-width: 600px) {
    .modal-content {
        padding: 30px 20px;
        width: 90%;
        border-radius: 15px;
    }

    .modal-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-message {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .modal-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

.terminos_condiciones ol li, .terminos_condiciones ul li, .terminos_condiciones h2, .terminos_condiciones h3 {
    font-family: 'Poppins', sans-serif;
}

.boton_whatsapp {
    position: fixed;
    right: 50px;
    bottom: 20px;
    padding-left: 45px;
    padding-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #6ebb0a;
    border-radius: 20px;
    color: #fff;
    background-image: url(../imagenes/whatsapp.png);
    background-position: 10px center;
    background-size: auto 60%;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    font-family: 'Poppins', sans-serif;
    z-index: 1000;
}

.boton_whatsapp:hover {
    background-color: #96d841
}

.search-container {
    text-align: center;
    margin: 20px 0;
    width: 100%;
}

.btn-search-ticket {
    background-color: #fff;
    border: 2px solid #1a5da0;
    color: #1a5da0;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-search-ticket:hover {
    background-color: #1a5da0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-search-ticket img {
    width: 24px;
    height: 24px;
}

.modal-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 22, 45, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-search-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

.close-search-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-search-modal:hover {
    color: #ad2217;
}

.search-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.search-input-group input:focus {
    border-color: #1a5da0;
}

.search-input-group button {
    padding: 12px 25px;
    background: #ad2217;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.search-input-group button:hover {
    background: #8a1b12;
}

.tickets-list {
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
}

.ticket-result-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 5px solid #1a5da0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-info strong {
    display: block;
    color: #1a5da0;
    font-size: 18px;
}

.ticket-info span {
    font-size: 12px;
    color: #666;
}

.btn-download-pdf {
    color: #ad2217;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid #ad2217;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-download-pdf:hover {
    background: #ad2217;
    color: white;
}