/* Оверлей – лёгкое размытие, светлый фон */
.adult-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: adultFadeIn 0.4s ease;
}
@keyframes adultFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Карточка – светлая, с розовым оттенком */
.adult-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 0;
    max-width: 700px;
    width: 90%;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.2), 0 0 0 1px rgba(214, 51, 132, 0.15);
    border: 1px solid rgba(214, 51, 132, 0.2);
    animation: adultScaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
@keyframes adultScaleIn {
    from { opacity: 0; transform: scale(0.8) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Иллюстрация слева */
.adult-illustration {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.08), rgba(214, 51, 132, 0.02));
}
.adult-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(214, 51, 132, 0.4)) drop-shadow(0 4px 12px rgba(214, 51, 132, 0.15));
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Контент справа */
.adult-content {
    flex: 1;
    padding: 40px 30px 40px 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.adult-icon {
    font-size: 2.5rem;
    margin-bottom: 0;
}
.adult-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D63384, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.adult-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.adult-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.adult-btn {
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    min-width: 130px;
}
.adult-btn-yes {
    background: linear-gradient(135deg, #D63384, #E91E63);
    color: white;
    box-shadow: 0 8px 24px rgba(214, 51, 132, 0.3);
}
.adult-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(214, 51, 132, 0.45);
}
.adult-btn-no {
    background: transparent;
    border: 1px solid rgba(214, 51, 132, 0.2);
    color: var(--text-secondary);
}
.adult-btn-no:hover {
    background: rgba(214, 51, 132, 0.05);
    color: var(--accent);
}

/* Мобильная версия – на весь экран */
@media (max-width: 768px) {
    .adult-overlay {
        align-items: stretch;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
    }
    .adult-card {
        flex-direction: column;
        border-radius: 0;
        max-width: none;
        width: 100%;
        height: 100%;
        box-shadow: none;
        border: none;
        background: transparent;
    }
    .adult-illustration {
        flex: 0 0 auto;
        width: 100%;
        padding: 40px 20px 10px;
        background: transparent;
    }
    .adult-image {
        max-height: 200px;   /* ← уменьшено для мобильных */
    }
    .adult-content {
        padding: 20px 24px 40px;
        text-align: center;
        align-items: center;
    }
    .adult-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .adult-btn {
        width: 100%;
        min-width: 0;
    }
}