@keyframes move {
    0% { transform: translateY(0); }
    100% { transform: translateY(15px); }
}

.discount-box {
    border: 7px solid #ff0000;
    padding: 10px;
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    color: #ff0000;
    position: relative;
    background-color: #fff0f0;
    border-radius: 10px;
    width: 95%;
    max-width: 800px;
    margin: 20px auto;
}

.description {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.highlight {
    font-weight: bold;
    color: #ff0000;
}

.arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.arrow {
    font-size: 48px;
    font-weight: bold;
    color: #ff0000;
    animation: move 1s infinite alternate;
    margin: 0 5px;
}

.text {
    line-height: 1;
}

.discount-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(255, 0, 0, 0.5);
    text-align: center;
    user-select: none;
}

.discount-btn:hover {
    background: linear-gradient(45deg, #e60000, #ff3333);
    box-shadow: 0 12px 24px rgba(255, 0, 0, 0.6);
    transform: translateY(-4px);
}

.discount-btn:active {
    background: linear-gradient(45deg, #cc0000, #ff1a1a);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.4);
    transform: translateY(2px);
}

.countdown-title {
    font-size: 20px;
    color: #ff0000;
    margin-top: 10px;
}

.countdown {
    font-size: 28px;
    font-weight: bold;
    color: #ff0000;
}
