/**
 * TV Debate Studio Pro - Frontend Styles
 */

/* Hide WordPress elements when in studio mode */
.tds-studio-active #wpadminbar,
.tds-studio-active header,
.tds-studio-active footer,
.tds-studio-active .site-header,
.tds-studio-active .site-footer,
.tds-studio-active .main-navigation,
.tds-studio-active #masthead,
.tds-studio-active #colophon {
    display: none !important;
}

.tds-studio-active {
    margin: 0 !important;
    padding: 0 !important;
}

/* Live Status Widget */
.tds-live-widget {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 25px;
    color: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.tds-live-widget .live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ef4444;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
    margin-bottom: 15px;
}

.tds-live-widget .live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.tds-live-widget h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 700;
}

.tds-live-widget .provider {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.tds-live-widget .participants {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tds-live-widget .participant {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.tds-live-widget .participant .city {
    color: #f59e0b;
}

/* Guest List */
.tds-guest-list {
    display: grid;
    gap: 15px;
}

.tds-guest-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.tds-guest-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tds-guest-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.tds-guest-info {
    flex: 1;
}

.tds-guest-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 5px;
}

.tds-guest-meta {
    font-size: 13px;
    color: #64748b;
}

.tds-guest-meta .city {
    color: #3b82f6;
    font-weight: 600;
}

.tds-guest-status {
    font-size: 12px;
}

.tds-guest-status.online {
    color: #10b981;
}

/* Embed Player */
.tds-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.tds-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive */
@media (max-width: 768px) {
    .tds-live-widget {
        padding: 20px;
    }
    
    .tds-live-widget h3 {
        font-size: 18px;
    }
    
    .tds-guest-item {
        padding: 15px;
    }
    
    .tds-guest-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}
