/* OPCIS Video YouTube PRO - Responsive Player Styles */
.opcis-player-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0c;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    border: 1px solid #27272a;
}

.opcis-player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.opcis-watermark {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    pointer-events: auto;
}

.opcis-watermark a {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(8px);
    color: #38bdf8;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    transition: all 0.2s ease;
    display: inline-block;
}

.opcis-watermark a:hover {
    background: #0073aa;
    color: #ffffff;
    border-color: #38bdf8;
}

/* Themes */
.opcis-player-container.opcis-theme-cinema-glow {
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.35);
    border-color: #38bdf8;
}

.opcis-player-container.opcis-theme-emerald-tech {
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.35);
    border-color: #10b981;
}

/* Carousel Styles */
.opcis-carousel-wrapper {
    margin: 24px 0;
    padding: 20px;
    background: #121214;
    border-radius: 16px;
    border: 1px solid #27272a;
}

.opcis-carousel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.opcis-badge {
    background: #0073aa;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.opcis-category-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #f4f4f5;
}

.opcis-carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.opcis-carousel-card {
    background: #18181b;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #27272a;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.opcis-carousel-card:hover {
    transform: translateY(-2px);
    border-color: #38bdf8;
}

.opcis-video-frame {
    position: relative;
    width: 100%;
}

.opcis-video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.opcis-video-card-title {
    padding: 12px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #e4e4e7;
    line-height: 1.4;
}
