        .showcase-banner {
            position: relative;
            overflow: hidden;
            height: 100vh;
            min-height: 600px;
        }
        
        .showcase-banner_inner {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .showcase-banner__slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
        }
        
        .showcase-banner__slide.active {
            opacity: 1;
        }
        
        .showcase-banner__text-wrap {
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 20px;
        }
        
        .showcase-banner__text {
            max-width: 600px;
        }
        
        .showcase-banner__title {
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .showcase-banner__link {
            display: inline-block;
            padding: 15px 30px;
            background: #ff6b35;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        
        .showcase-banner__link:hover {
            background: #e55a2b;
        }
        
        .showcase-banner__media {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .showcase-banner__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slick-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            z-index: 3;
        }
        
        .slick-dots li {
            margin: 0 10px;
            cursor: pointer;
            text-align: center;
            color: white;
            font-size: 14px;
            font-weight: bold;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .slick-dots li:hover,
        .slick-dots li.active {
            opacity: 1;
        }
        
        .slick-dots li img {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 5px;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .slick-dots li.active img {
            border-color: #ff6b35;
        }
        
        @media (max-width: 768px) {
            .showcase-banner__title {
                font-size: 2rem;
            }
            
            .slick-dots {
                bottom: 20px;
            }
            
            .slick-dots li img {
                width: 60px;
                height: 45px;
            }
        }