/* ======================================== */
/* PLAYER CONTAINER */
/* ======================================== */

.protohub-cinematic-player {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ======================================== */
/* VIDEO PLAYER */
/* ======================================== */

.protohub-video-player {
    width: 100%;
    display: none;
    background: #000;
}

/* ======================================== */
/* PREVIEW OVERLAY */
/* ======================================== */

.protohub-preview-overlay {
    position: relative;
    width: 100%;
    min-height: 420px;
    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.75)
        ),
        radial-gradient(circle at center, #222 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

/* ======================================== */
/* CONTENT */
/* ======================================== */

.protohub-preview-content {
    max-width: 500px;
}

/* ======================================== */
/* PLAY ICON */
/* ======================================== */

.protohub-play-circle {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 34px;
    margin: 0 auto 25px auto;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.protohub-play-circle:hover {
    transform: scale(1.05);
}

/* ======================================== */
/* TITLE */
/* ======================================== */

.protohub-preview-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ======================================== */
/* SUBTITLE */
/* ======================================== */

.protohub-preview-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ======================================== */
/* WATCH BUTTON */
/* ======================================== */

.protohub-watch-btn {
    background: linear-gradient(135deg, #ff2d55, #ff416c);
    color: #fff;
    border: none;
    padding: 16px 34px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255,45,85,0.3);
}

.protohub-watch-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* ======================================== */
/* POPUP OVERLAY */
/* ======================================== */

.protohub-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 99999;
}

/* ======================================== */
/* POPUP BOX */
/* ======================================== */

.protohub-popup-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    width: 360px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ======================================== */
/* POPUP TITLE */
/* ======================================== */

#protohub-popup-title {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
}

/* ======================================== */
/* POPUP MESSAGE */
/* ======================================== */

#protohub-popup-message {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
    color: #444;
}

/* ======================================== */
/* ACTION BUTTON */
/* ======================================== */

.protohub-popup-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
}

/* ======================================== */
/* CLOSE BUTTON */
/* ======================================== */

.protohub-popup-close {
    background: #ddd;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}
