#ad-blocker {
    position: relative;
    min-height: 400px;
    width: 100%;
    background: #dadce0;
    z-index: 999; /* Z-index ALTO para el bloqueador */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* La caja con el mensaje */
.prompt-box {
    background: #fff;
    color: #333;
    width: 100%;
    padding: 0 20px;
    margin: 0 30px;
    border-radius: 8px;
    letter-spacing: 0.02em;
    min-height: 335px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prompt-box h3 {
    font-size: 1.3em;
    margin: 20px 0;
    font-weight: bold;
}

.prompt-box p {
    font-size: 1em;
}

/* El botón de desbloqueo */
.button-box {
    border: 1px solid #d3d4d5;
    text-align: left;
    margin-top: 40px;
    padding: 16px 20px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.button-box.disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.button-box p {
    margin-bottom: 10px;
}

.text-box {
    flex: 1;
    padding-right: 2px;
}

#button-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.play-button {
    width: 25px;
    height: 25px;
    background-color: #51a331;
    border-radius: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button .triangle {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid white;
}

.hidden {display: none;}
#loading {font-size: 1.2em;}

#widget-container {
    position: relative;
    z-index: 1;
}

#myOptaWidget {
    display: none;
}

@media (max-width: 450px) {
    #ad-blocker {min-height: 345px;}
    .prompt-box {margin: 0 15px; padding: 0 15px; min-height: 290px;}
    .prompt-box h3 {font-size: 1.1em; margin: 15px 0;}
    .prompt-box p {font-size: 0.9em;}
    .button-box {margin-top: 25px; padding: 12px 10px 8px;}
}