.dss-slider-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow: hidden;
}

.dss-slider {
    height: 100%;
}

.dss-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dss-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.dss-text-overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 50%;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 8px;
    margin: 20px;
}

.dss-text-overlay h2 {
    margin: 0 0 10px;
    font-size: 2.5rem;
    font-weight: bold;
}

.dss-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.dss-signup-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4b2b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.dss-signup-button:hover {
    background-color: #e43a1a;
}

.dss-thumbnail-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dss-thumbnail {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    border: 2px solid transparent;
}

.dss-thumbnail.active {
    width: 100px;
    height: 60px;
    transform: scale(1.2);
    border: 2px solid #ff4b2b;
}

.swiper-pagination-bullet {
    background: #fff;
}

@media (max-width: 768px) {
    .dss-slider-container {
        height: 100vh;
    }

    .dss-text-overlay {
        max-width: 80%;
        margin: 10px;
    }

    .dss-text-overlay h2 {
        font-size: 1.8rem;
    }

    .dss-description {
        font-size: 1rem;
    }

    .dss-thumbnail {
        width: 60px;
        height: 40px;
    }

    .dss-thumbnail.active {
        width: 80px;
        height: 50px;
    }
}