/* Unified Video Browser for Home */
.video-player-section {
    max-width: 1000px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.main-video-container {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-video-container video {
    width: 100%;
    height: 100%;
    display: block;
}

.video-selection-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto 25px;
}

.vid-tab {
    background: rgba(0, 0, 0, 0.05); /* Solid light gray background */
    border: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dark border */
    color: #475569; /* Dark slate color for contrast on light background */
    padding: 12px 25px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vid-tab i {
    font-size: 1.1rem;
    color: #64748b; /* Slightly lighter icon color */
}

.vid-tab:hover {
    color: #1e293b;
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.vid-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);
    transform: translateY(-1px);
}

.vid-tab.active i {
    color: #fff;
}

.ia-chat-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ia-chat-footer p {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0;
}

.ia-chat-footer a {
    color: #38bdf8;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .video-player-section {
        padding: 15px;
    }
    .video-selection-tabs {
        width: 100%;
        flex-direction: column;
        border-radius: 15px;
        gap: 5px;
    }
    .vid-tab {
        width: 100%;
        justify-content: center;
    }
}
