/* Container for both the placeholder and the iframe */
.youtubeBlock {
    position: relative;
    background-color: #000; /* Dark background to mimic a video player */
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* The Placeholder / Consent Wall */
.youtubeBlock .yt-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
    color: #ffffff;
    padding: 10% 15%;
    text-align: center;
    z-index: 10;
}

/* Placeholder Typography */
.yt-placeholder h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.yt-placeholder p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.yt-placeholder strong {
    color: #fe0;
}

/* The Consent Button */
.yt-consent-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.yt-consent-btn:hover {
    transform: scale(1.05);
}

/* Responsive aspect ratio helpers */
.youtubeBlockResponsive16by9 {
    padding-bottom: 56.25%;
    height: 0;
}

.youtubeBlockResponsive16by9 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}