/* Оригинальные стили промо-блока */
.body-pr {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0d0d0d, #2b2b2b);
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: fixed; /* Делаем промо-блок фиксированным поверх всего */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.container-pr {
    background: rgba(255, 255, 255, 0.08); 
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    width: 700px;
    text-align: left;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

.h1-pr {
    margin-top: 0;
    font-size: 32px;
    font-weight: 700;
}

.desc-pr {
    margin: 15px 0 25px;
    line-height: 1.5;
    font-size: 16px;
}

.badges-pr {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-pr {
    background: rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.btn-pr {
    display: inline-block;
    background: #e9b94d;
    color: #fff;
    padding: 14px 22px;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
    border: none;
    font-family: inherit;
}

.btn-pr:hover {
    background: #d9a843;
}

.timer-pr {
    margin-top: 20px;
    font-weight: bold;
    color: #f5d86c;
}

/* Скрываем основной контент изначально */
.dlyprelenda {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Класс для показа контента */
.dlyprelenda.show {
    display: block;
    opacity: 1;
}

/* Класс для скрытия всего промо-контейнера */
.body-pr.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}