.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
    overflow: hidden;
    max-height: 1080px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    left: 156px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

.slide-category {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideInFromRight 1s ease-out 0.5s forwards;
}

.slide-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 72px;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideInFromLeft 1s ease-out 1s forwards;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Decorative elements */
.decorative-frame {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 270px;
    height: 544px;
    z-index: 0;
    opacity: 0;
    animation: fadeInFrame 1s ease-out 1.5s forwards;
}

.decorative-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 270px;
    height: 5px;
    background-color: #cee002;
}

.decorative-frame::after {
    content: '';
    position: absolute;
    top: 544px;
    left: 0;
    width: 270px;
    height: 5px;
    background-color: #cee002;
}

.decorative-frame .left-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 544px;
    background-color: #cee002;
}

.decorative-frame .right-line {
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 544px;
    background-color: #cee002;
}

/* Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #cee002;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-arrows:hover {
    background-color: rgba(206, 224, 2, 0.8);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFrame {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content {
        left: 20px;
        right: 20px;
    }

    .slide-title {
        font-size: 50px;
        line-height: 54px;
    }

    .decorative-frame {
        display: none;
    }

    .slider-arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 36px;
        line-height: 40px;
    }

    .slide-category {
        font-size: 14px;
    }
}