.lps2-swiper {
    width: 100%;
    height: 550px;
    position: relative;
    border-radius: 12px;
    overflow: hidden; /* optional, slides ke liye */
}
.lps2-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}
.lps2-overlay {
    display: none; /* overlay completely remove */
}
.lps2-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    max-width: 700px;
    background: transparent; /* semi-transparent background remove */
    border-radius: 12px;
}
.lps2-category {
    font-size: 14px;
    color: #ff66cc;
    display: block;
    margin-bottom: 8px;
}
.lps2-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}
.lps2-meta {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.lps2-badge {
    background: #ff0055;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}
.lps2-content p {
    font-size: 16px;
    margin-bottom: 20px;
}
.lps2-buttons {
    display: flex;
    gap: 15px;
}
.lps2-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}
.lps2-btn.watch {
    background: #ff0055;
    color: #fff;
}
.lps2-btn.watch:hover {
    background: #e6004d;
}
.lps2-btn.detail {
    background: #444;
    color: #fff;
}
.lps2-btn.detail:hover {
    background: #222;
}