/* Adult Content Styles */

.adult-content-placeholder {
    position: relative;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    overflow: hidden;
}

.adult-content-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.adult-content-placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.adult-content-placeholder-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    font-size: 24px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.adult-content-placeholder-text {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.adult-content-placeholder-subtext {
    font-size: 12px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hover effect for adult content */
.adult-content-item:hover .adult-content-placeholder {
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.02);
    transition: all 0.2s ease;
}

.adult-content-item:hover .adult-content-placeholder-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    transition: all 0.2s ease;
}

/* Adult content verification overlay */
.adult-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.adult-verification-modal {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.adult-verification-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #57534e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.adult-verification-close:hover {
    background: #f5f5f4;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Adult content badge */
.adult-content-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    text-shadow: none;
}

/* Hide adult content by default until age is verified */
.adult-content-hidden {
    filter: blur(20px);
    opacity: 0.6;
    pointer-events: none;
}

/* Show adult content when age is verified */
.age-verified .adult-content-hidden {
    filter: none;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .adult-content-placeholder-content {
        padding: 16px;
    }
    
    .adult-content-placeholder-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .adult-content-placeholder-text {
        font-size: 14px;
    }
    
    .adult-content-placeholder-subtext {
        font-size: 11px;
    }
    
    .adult-verification-modal {
        padding: 32px 24px;
        margin: 16px;
    }
}