
/* assets/css/watch.css */

:root {
    --cinema-bg: #050505;
    --cinema-card: #121212;
    --accent-blue: #007bff;
    --accent-glow: rgba(0, 123, 255, 0.2);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--cinema-bg) !important;
    color: var(--text-main) !important;
}

.watch-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.cinema-container {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    padding: 0;
}

/* Video Column */
.video-column {
    flex: 1 1 70%;
    background: #000;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,1);
    z-index: 1;
}

.video-player-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
}

/* Chat/Interaction Column */
.sidebar-column {
    flex: 1 1 30%;
    background-color: var(--cinema-card);
    border-left: 1px solid #222;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
}

/* Header Info Overlay (shown above/below video) */
.stream-info-bar {
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.stream-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Action Bar */
.action-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    justify-content: center;
}

.btn-cinema {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-give-life {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
}

.btn-partnership {
    background: linear-gradient(45deg, #1de9b6, #1dc4e9);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(29, 233, 182, 0.3);
}

.btn-cinema:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.2);
}

/* Comments Section Adjustment */
.comment-section-container {
    padding: 1rem;
    flex-grow: 1;
}

/* Shared Bar */
.shared-info-badge {
    display: inline-block;
    background: var(--accent-glow);
    border: 1px solid var(--accent-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* Share Controls for Host */
.host-controls {
    background: #1a1a1a;
    padding: 1.5rem;
    border-top: 1px solid #333;
}

.social-icons-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.bg-facebook { background: #3b5998; }
.bg-twitter { background: #1da1f2; }
.bg-whatsapp { background: #25d366; }

.social-icon-btn:hover {
    transform: scale(1.2);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cinema-container {
        flex-direction: column;
    }
    .video-column, .sidebar-column {
        flex: 1 1 100%;
    }
    .sidebar-column {
        max-height: none;
        border-left: none;
        border-top: 1px solid #222;
    }
}
