/* Online TV Page Styles */

/* TV Hero */
.tv-hero {
    background: linear-gradient(0deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tv-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.tv-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
    position: relative;
}

.tv-hero h1 i {
    color: var(--accent-color);
    margin-right: 15px;
    animation: tvGlow 2s ease-in-out infinite;
}

@keyframes tvGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 85, 0.8); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 85, 1), 0 0 60px rgba(255, 0, 85, 0.6); }
}

.tv-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Live Stream Section */
.live-stream {
    padding: 80px 0;
    background: #000000;
}

.stream-header {
    text-align: center;
    margin-bottom: 3rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 0, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% { 
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
    }
}

.live-text {
    color: #ff0000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stream-header h2 {
    font-size: 2.5rem;
    color: #fff;
}

/* Video Container */
.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 55.9%; /* 16:9 Aspect Ratio - slightly reduced */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(255, 0, 85, 0.5), 0 0 40px rgba(255, 0, 85, 0.3);
    border: 3px solid rgba(255, 0, 85, 0.4);
}

/* Video.js player fills the wrapper */
.video-wrapper .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video.js Custom Theme - compatible with vjs-default-skin */
.video-js.vjs-theme-club-dance,
.video-js.vjs-default-skin {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.video-js.vjs-theme-club-dance .vjs-big-play-button,
.video-js.vjs-default-skin .vjs-big-play-button {
    background-color: rgba(255, 0, 85, 0.9);
    border: 3px solid #fff;
    border-radius: 50%;
    width: 2em;
    height: 2em;
    line-height: 2em;
    font-size: 4em;
    transition: all 0.3s ease;
}

.video-js.vjs-theme-club-dance .vjs-big-play-button:hover,
.video-js.vjs-default-skin .vjs-big-play-button:hover {
    background-color: rgba(255, 0, 85, 1);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.8);
}

.video-js.vjs-theme-club-dance .vjs-control-bar {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    height: 4em;
}

.video-js.vjs-theme-club-dance .vjs-button > .vjs-icon-placeholder:before {
    line-height: 2.5em;
}

.video-js.vjs-theme-club-dance .vjs-play-progress {
    background-color: #ff0055;
}

.video-js.vjs-theme-club-dance .vjs-volume-level {
    background-color: #ff0055;
}

.video-js.vjs-theme-club-dance .vjs-slider {
    background-color: rgba(255, 255, 255, 0.3);
}

.video-js.vjs-theme-club-dance .vjs-load-progress {
    background: rgba(255, 255, 255, 0.2);
}

.video-js.vjs-theme-club-dance .vjs-play-progress:before {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.8);
}

/* Error Display */
.video-js.vjs-theme-club-dance .vjs-error-display {
    background: rgba(0, 0, 0, 0.85);
}

.video-js.vjs-theme-club-dance .vjs-error-display .vjs-modal-dialog-content {
    color: #ff0055;
    font-size: 1.2em;
    font-weight: 600;
}

.video-wrapper iframe,
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.video-placeholder i {
    font-size: 6rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.video-placeholder p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0;
}

.video-placeholder .small-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Stream Info */
.stream-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.info-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 3px;
}

.info-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* TV Features */
.tv-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.tv-features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #d4004f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* YouTube Videos Section */
.youtube-videos {
    padding: 80px 0;
    background: #000000;
}

.youtube-videos h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.youtube-videos h2 i {
    color: #ff0000;
    margin-right: 10px;
}

.youtube-intro {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 15px;
}

.video-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.video-placeholder-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.3);
    min-height: 200px;
}

.video-placeholder-loading i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff0000;
}

.youtube-channel-link {
    text-align: center;
    margin-top: 2rem;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.btn-youtube:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #cc0000, #ff0000);
}

.btn-youtube i {
    font-size: 1.3rem;
}

.youtube-channel-embed {
    width: 100%;
}

.youtube-note {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff0000;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 15px;
}

.youtube-note i {
    color: #ff0000;
    font-size: 1.5rem;
}

.video-grid-manual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-grid-manual .video-card:last-child {
    grid-column: span 2;
}

@media (max-width: 968px) {
    .video-grid-manual {
        grid-template-columns: 1fr;
    }
    
    .video-grid-manual .video-card:last-child {
        grid-column: span 1;
    }
}

/* How to Watch */
.how-to-watch {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.how-to-watch h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.watch-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.watch-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.watch-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.2);
}

.watch-card i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.watch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.watch-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.tv-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content i {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #d4004f);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.5);
}

.cta-button i {
    margin-right: 10px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tv-hero h1 {
        font-size: 2.5rem;
    }
    
    .tv-hero p {
        font-size: 1.1rem;
    }
    
    .stream-info {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .video-grid,
    .video-grid-manual,
    .watch-methods {
        grid-template-columns: 1fr;
    }
    
    .youtube-videos h2,
    .tv-features h2,
    .how-to-watch h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}
