/* Video container for responsive sizing */
.video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Responsive wrapper maintains aspect ratio */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: #000; /* Dark background while loading */
}

/* Make iframe and video fill the wrapper */
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ensure minimum height */
.video-wrapper {
    min-height: 200px;
}

/* Cookie Consent Notice */
.cookie-consent-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.notice-content {
    max-width: 500px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notice-content h3 {
    margin-bottom: 15px;
    color: #333;
}

.notice-content p {
    margin-bottom: 20px;
    color: #666;
}

.accept-cookies-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.accept-cookies-btn:hover {
    background-color: #0069d9;
}
