#dd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
	#dd-modal {
		background: #fff;
		width: 500px;
		padding: 40px;
		border-radius: 6px;
		text-align: center;
		font-size: 16px;
	}
	.dd-text{font-family:'Poppins' !important}
		.dd-text-top {
			font-size: 1.2rem;
			padding: 0 0 10px;
		}
		.dd-check {
			display: block;
			margin: 15px 0;
			font-size: 17px;
		}
		#dd-timer-box {
			font-weight: bold;
			margin: 10px 0;
		}



/* Контейнер кнопок */
.dd-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

/* Общие стили кнопок */
.dd-actions > button {
    min-width: 140px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    text-align: center;
    user-select: none;
}

/* Кнопка СКАЧАТЬ */
#dd-start {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.35);
}
#dd-start:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.45);
}
#dd-start:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.35);
}

/* Заблокированное состояние */
#dd-start:disabled {
    background: #9e9e9e;
    box-shadow: none;
    cursor: not-allowed;
}

/* Кнопка ОТМЕНА */
#dd-close {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}
#dd-close:hover {
    background: #e0e0e0;
}
#dd-close:active {
    background: #d6d6d6;
}