.randomizer-container {
    font-family: Manrope, sans-serif;
    text-align: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Первое изображение */
.initial-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: block;
}

.initial-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.initial-image:active {
    transform: scale(0.98);
}

.image-container {
    width: 100%;
    height: 100%;
    display: none;
    box-sizing: border-box;
}

/* Рандомное изображение */
.image-display {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}
@media screen and (min-width: 1200px) {  /* десктоп от 1200px */
.randomizer-container {
    margin-bottom: 50px !important;
    }
}        
