/* DYIZI Drops Styles */

/* Стили для карточек с дропами */
.card-drop {
    position: relative;
    overflow: hidden;
}

.card-drop .card-drop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.card-drop .card-drop-question {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-drop .card-content {
    filter: blur(5px);
    pointer-events: none;
}

/* Адаптивность для таймера */
@media (max-width: 768px) {
    .card-drop-time {
        font-size: 0.75rem;
        padding: 2px 1px;
    }
    
    .card-drop .card-drop-question {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }
}