/* Cookie Cutter Lite - v3.3.3 */

.cc-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #111827; /* Dark Slate */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cc-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cc-placeholder:hover { transform: scale(1.02); }

/* Play Button Base */
.cc-play-button {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    z-index: 10;
}
.cc-play-button::after {
    content: ''; display: block; width: 0; height: 0;
    border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}
.cc-video-container:hover .cc-play-button { transform: scale(1.1); }

/* YouTube Red Button */
.cc-video-container[data-type="youtube"] .cc-play-button {
    background: #FF0000;
}

/* Vimeo Blue Button */
.cc-video-container[data-type="vimeo"] .cc-play-button {
    background: #1AB7EA;
}

/* Default / Fallback Button */
.cc-video-container .cc-play-button {
    background: rgba(0,0,0,0.7); /* Fallback dark */
}

/* Consent Hint */
.cc-consent-hint {
    margin-top: 20px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    border-radius: 30px;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 10; pointer-events: none;
    transition: background 0.3s;
}
.cc-video-container:hover .cc-consent-hint { background: rgba(0, 0, 0, 0.8); }

/* Unlocked State */
.cc-video-container.cc-unlocked { background: #000; }
.cc-video-container.cc-unlocked iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}