body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(
        circle at center,
        #ffeef3 0%,   /* centro (casi blanco rosita) */
        #f8c6d0 40%, 
        #e89aaa 100%  /* orillas más rositas */
    );
    font-family: 'Baloo 2', cursive;
}

/* TARJETA */
.card {
    width: 350px;
    height: 600px;
    background: radial-gradient(
        circle at center,
        #ffeef3 0%,   /* centro (casi blanco rosita) */
        #f8c6d0 40%, 
        #e89aaa 100%  /* orillas más rositas */
    );
    border-radius: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 40px;
}

/* NÚMERO */
.numero {
    width: 100px; /* más grande */
    margin-bottom: -15px;
    
}

/* NOMBRE */
.nombre {
    width: 300px;
    z-index: 1000;
}

/* CONTADOR */
.contador {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* BLOQUE INDIVIDUAL */
.tiempo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

/* CÍRCULOS */
.circulo {
    width: 55px;
    height: 55px;
    background: #efe3d3; /* beige */
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: bold;
    font-size: 16px;
}

/* TEXTO ABAJO */
.tiempo span {
    margin-top: 5px;
}

.abeja {
    position: absolute;
    width: 70px;
    top: 0;
    left: 0;
    pointer-events: none; /* no estorba clicks */
}

.botones button {
    padding: 10px 18px;
    border: none;
    border-radius: 25px;

    background: linear-gradient(145deg, #ff6fa5, #ff4d88);
    color: white;

    font-weight: 600;
    font-size: 14px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;

    transition: all 0.2s ease;
}

.botones button:hover {
    transform: scale(1.05);
}

.botones button:active {
    transform: scale(0.95);
}

.detalle {
    margin-top: 15px;
    padding: 18px;
    border-radius: 20px;

    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(6px);

    text-align: center;
    font-family: 'Fredoka', sans-serif;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s ease;
}

/* Título */
.detalle .titulo {
    font-size: 18px;
    font-weight: 600;
    color: #ff4d88;
    margin-bottom: 8px;
}

/* Texto */
.detalle p {
    margin: 5px 0;
    font-size: 14px;
}

/* BOTÓN AZUL BONITO */
.detalle a {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;

    background: linear-gradient(145deg, #6ec6ff, #42a5f5);
    color: white;

    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.detalle a:hover {
    transform: scale(1.05);
}

.detalle a:active {
    transform: scale(0.95);
}

/* Animación */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}