.ps-51564739-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ps-51564739-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ps-51564739-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.ps-51564739-slide.active {
    opacity: 1;
}

.ps-51564739-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
    pointer-events: none;
}

.ps-51564739-navigation {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ps-51564739-nav-item {
    flex: 1;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 150px;
    background: rgba(0,0,0,0.2);
}

.ps-51564739-nav-item:last-child {
    border-right: none;
}

.ps-51564739-nav-item:hover,
.ps-51564739-nav-item.active {
    background: rgba(0, 0, 0, 0.6);
}

.ps-51564739-nav-title {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.ps-51564739-nav-action {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.ps-51564739-nav-item:hover .ps-51564739-nav-action,
.ps-51564739-nav-item.active .ps-51564739-nav-action {
    opacity: 1;
    transform: translateY(0);
}

.ps-51564739-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ps-51564739-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .ps-51564739-navigation {
        flex-direction: column;
    }
    .ps-51564739-nav-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        min-height: 100px;
        padding: 20px;
    }
}
