/* Consent Placeholder Styles für Dreamlight Event */
.consent-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    background-image: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 400px;
    width: 100%;
    margin: 1.5rem 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

/* Specific for Video Aspect Ratio if needed */
.video-placeholder {
    aspect-ratio: 16 / 9;
}

.consent-placeholder .placeholder-icon {
    width: 80px;
    height: 80px;
    background: rgba(169, 63, 85, 0.1); /* --primary-color #A93F55 with opacity */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.consent-placeholder:hover .placeholder-icon {
    transform: scale(1.05);
}

.consent-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-color, #A93F55);
}

.consent-placeholder h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color, #A93F55);
    margin-bottom: 1rem;
}

.consent-placeholder p {
    margin-bottom: 2rem;
    color: var(--text-color, #333333);
    max-width: 450px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.consent-btn {
    background-color: var(--primary-color, #A93F55);
    color: #fff !important;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(169, 63, 85, 0.2);
}

.consent-btn:hover {
    background-color: var(--accent-color, #C08261);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 130, 97, 0.3);
}

#cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999999;
  background-color: #A93F55;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
#cookie-settings-btn:hover {
  background-color: #C08261;
}
