#Content {
    position: relative;
}
.promo-container {
    position: relative;
    overflow: hidden;
}

.blurred-content {
    filter: blur(8px);
    pointer-events: none; 
}

.promo-overlay {
    display: none; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.8);
    color: white;
    font-weight: bold;
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding: 20px;
    pointer-events: auto;
    visibility: hidden;
}

#promotion {
    display: flex; 
    align-items: center; 
}

#promo-slider:checked ~ .promo-overlay {
    visibility: hidden;
}
#promo-toggle-footer {
    display: flex; 
    align-items: center;
    background: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
}

.promo-slider-label {
    font-size: 12px; 
    margin-right: 8px; 
}

.promo-switch {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 14px; 
}

.promo-switch input {
    opacity: 0; 
    width: 0;
    height: 0;
}

.promo-slider {
	position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc; 
    transition: 0.4s;
    border-radius: 14px; 
}

.promo-slider:before {
    position: absolute;
    content: "";
    height: 12px; 
    width: 12px; 
    left: 1px; 
    bottom: 1px; 
    background-color: white; 
    transition: 0.4s;
    border-radius: 50%; 
}

input:checked + .promo-slider {
    background-color: #4caf50; 
}

input:checked + .promo-slider:before {
    transform: translateX(12px); 
}