.tv-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
    padding: 0 15px;
}

.tv-slider-area {
    position: relative;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin-bottom: 30px;
}

.tv-neon-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4f46e5 20%, #4f46e5 80%, transparent 100%);
    box-shadow: 0 0 15px #6366f1, 0 0 30px rgba(99, 102, 241, 0.4);
    transform: translateY(-50%);
    z-index: 0;
}

.tv-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(30, 27, 75, 0.9);
    border: 2px solid #4f46e5;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

.tv-btn:hover {
    background: #4f46e5;
    box-shadow: 0 0 25px #4f46e5;
}

.tv-prev { right: 10px; }
.tv-next { left: 10px; }

.tv-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-card {
    position: absolute;
    width: 280px;
    height: 280px;
    background: #000;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.tv-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: 0.5s;
}

.tv-card.active {
    transform: translateX(0) scale(1.15);
    z-index: 5;
    box-shadow: 0 0 35px rgba(59, 130, 246, 0.5);
}

.tv-card.active img { 
    opacity: 1; 
}

.tv-card.prev {
    transform: translateX(340px) scale(0.85);
    z-index: 3;
}

.tv-card.next {
    transform: translateX(-340px) scale(0.85);
    z-index: 3;
}

.tv-card.hide-right {
    transform: translateX(550px) scale(0.5);
    opacity: 0;
    z-index: 1;
}

.tv-card.hide-left {
    transform: translateX(-550px) scale(0.5);
    opacity: 0;
    z-index: 1;
}

.tv-text-area {
    margin-top: 20px;
    transition: opacity 0.3s;
    min-height: 120px;
}

.tv-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
    transition: opacity 0.3s;
}

.tv-excerpt {
    font-size: 14px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    transition: opacity 0.3s;
}

@media (max-width: 768px) {
    .tv-wrapper { margin-top: 20px; }
    .tv-slider-area { height: 320px; }
    
    .tv-card {
        width: 200px;
        height: 200px;
    }

    .tv-card.active { transform: translateX(0) scale(1.1); }
    .tv-card.prev { transform: translateX(130px) scale(0.75); opacity: 0.6; }
    .tv-card.next { transform: translateX(-130px) scale(0.75); opacity: 0.6; }

    .tv-btn {
        top: auto;
        bottom: -50px;
        transform: none;
        width: 45px;
        height: 45px;
    }
    
    .tv-prev { right: 30%; }
    .tv-next { left: 30%; }
    .tv-neon-line { display: none; }
    .tv-text-area { margin-top: 60px; }
}