.unique-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.unique-slot-item {
    position: relative;
    width: 200px;
    height: 300px;
    background-color: #0e292b;
    border: 1px solid #8746ff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px #00ffff;
    transition: transform 0.2s;
}

.unique-slot-item:hover {
    transform: scale(1.05);
}

.unique-slot-logo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.unique-slot-overlay {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 1;
    transition: opacity 0.2s;
}

.unique-slot-item:hover .unique-slot-overlay {
    opacity: 1;
}

.unique-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #8746ff;
    text-decoration: none;
    border-radius: 5px;
}

.unique-slot-name {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 0;
    border-radius: 0 0 10px 10px;
}

/* Медіазапити для мобільних пристроїв */
@media (max-width: 768px) {
    .unique-slot-item {
        width: 150px;
        height: 250px;
    }
    .unique-slot-logo {
        height: 150px;
    }
    .unique-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    .unique-slot-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .unique-slots {
        flex-direction: column;
        align-items: center;
    }
    .unique-slot-item {
        width: 100%;
        height: auto;
    }
    .unique-slot-logo {
        height: auto;
    }
    .unique-btn {
        width: 100%;
        padding: 10px 0;
    }
    .unique-slot-name {
        position: static;
        background-color: transparent;
        color: #ffffff;
        padding: 10px 0;
    }
}
