.dsp-slider-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    border-radius: 40px 40px 0 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.dsp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.dsp-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.dsp-col-12 { width: 100%; padding: 0 15px; }
.dsp-col-md-6 { width: 50%; padding: 0 15px; }
.dsp-col-6 { width: 50%; }

.dsp-flex { display: flex; }
.dsp-justify-between { justify-content: space-between; }
.dsp-align-center { align-items: center; }
.dsp-justify-end { justify-content: flex-end; }

@media (max-width: 768px) {
    .dsp-col-md-6 { width: 100%; }
    .dsp-hide-mobile { display: none !important; }
}

.dsp-slider-info h2 {
    font-size: 45px;
    font-family: "Alethia", "Georgia", serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}

.dsp-slider-info p {
    display: block;
    width: 73%;
    padding: 20px 0;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.dsp-view-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #000;
    font-family: "Alethia", "Georgia", serif;
    font-size: 23px;
    transition: color 0.3s ease;
}

.dsp-view-all-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.dsp-view-all:hover .dsp-view-all-icon {
    background: var(--accent-color, #00bce4);
    border-color: var(--accent-color, #00bce4);
}

.dsp-view-all:hover svg path {
    stroke: #fff;
}

.dsp-slider-wrapper {
    width: 100%;
    height: 520px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .dsp-slider-wrapper { height: 400px; }
    .dsp-slider-info p { width: 100%; }
}

@media (max-width: 768px) {
    .dsp-slider-section { padding: 30px 0; }
    .dsp-slider-wrapper { 
        height: 350px; 
        gap: 10px;
    }
    .dsp-slider-info h2 { font-size: 32px; }
    .dsp-slider-info p { font-size: 15px; }
    .dsp-view-all { font-size: 16px; }
    .dsp-view-all-icon { width: 40px; height: 40px; }
}

.dsp-slider-item {
    position: relative;
    height: 100%;
    width: 12%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    cursor: pointer;
    transition: width 0.4s ease, flex-grow 0.4s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.dsp-slider-item.active {
    background: none !important;
    flex-grow: 1;
}

.dsp-slider-item .dsp-card-preview {
    position: absolute;
    bottom: 10px;
    left: 5px;
    right: 5px;
    display: flex;
    justify-content: center;
}

.dsp-slider-item .dsp-card-preview span {
    font-family: "Alethia", "Georgia", serif;
    font-style: italic;
    font-size: 15px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.dsp-slider-item .dsp-card-content {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.dsp-slider-item.active .dsp-card-content {
    display: block;
}

.dsp-slider-item.active .dsp-card-preview {
    display: none;
}

.dsp-card-content video,
.dsp-card-content iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.dsp-card-content .dsp-info-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 85px;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    background: #fff;
    transition: height 0.3s ease;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.dsp-card-content .dsp-info-block h3 {
    font-size: 26px;
    font-family: "Alethia", "Georgia", serif;
    margin-bottom: 5px;
    color: #000;
}

.dsp-card-content .dsp-info-block p {
    display: none;
    margin: 10px 0;
    font-size: 16px;
    color: #666;
}

.dsp-card-content .dsp-info-block .dsp-experience {
    display: none;
    font-size: 14px;
    color: #777;
}

.dsp-card-content .dsp-info-block .dsp-toggle-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--accent-color, #00bce4);
    cursor: pointer;
    display: inline-block;
}

.dsp-card-content .dsp-info-block .dsp-toggle-btn-close {
    display: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--accent-color, #00bce4);
    cursor: pointer;
    margin-top: 10px;
}

.dsp-card-content .dsp-info-block .dsp-content-bottom {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.dsp-card-content .dsp-info-block.expanded {
    height: 53%;
}

.dsp-card-content .dsp-info-block.expanded .dsp-toggle-btn {
    display: none;
}

.dsp-card-content .dsp-info-block.expanded .dsp-toggle-btn-close {
    display: inline-block;
}

.dsp-card-content .dsp-info-block.expanded p,
.dsp-card-content .dsp-info-block.expanded .dsp-experience,
.dsp-card-content .dsp-info-block.expanded .dsp-content-bottom {
    display: block !important;
}

.dsp-btn-primary {
    display: inline-block;
    background: var(--accent-color, #00bce4);
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dsp-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.dsp-btn-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.dsp-btn-arrow:hover {
    background: var(--accent-color, #00bce4);
    border-color: var(--accent-color, #00bce4);
}

.dsp-btn-arrow:hover svg path {
    stroke: #fff;
}

.dsp-slider-item .dsp-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    cursor: pointer;
}

.dsp-slider-item .dsp-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.dsp-slider-item .dsp-play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.dsp-slider-item .dsp-play-icon svg {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .dsp-slider-item .dsp-info-block h3 { font-size: 20px; }
    .dsp-card-content .dsp-info-block.expanded { height: 60%; }
    .dsp-btn-primary { padding: 10px 18px; font-size: 14px; }
    .dsp-btn-arrow { width: 40px; height: 40px; }
    .dsp-slider-item .dsp-play-icon { width: 60px; height: 60px; }
}

.dsp-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.dsp-youtube-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.dsp-youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}