/**
 * Cloudflare Stream Video Player Styles
 */

.cfsm-video-container {
    margin: 30px 0;
    clear: both;
}

.cfsm-video-title {
    font-size: 1.3em;
    margin: 0 0 15px 0;
    color: #333;
}

.cfsm-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cfsm-video-iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Grid layout */
.cfsm-video-grid {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .cfsm-video-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Member notice */
.cfsm-member-notice {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin: 30px 0;
}

.cfsm-member-notice h3 {
    margin-top: 0;
    color: white;
}

.cfsm-member-notice a {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.2s ease;
}

.cfsm-member-notice a:hover {
    transform: scale(1.05);
}
