/**
 * CSS für Altersprüfungs-Popup
 */

.bt-age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.bt-age-verification-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bt-age-logo {
    margin-bottom: 1rem;
}

.bt-age-logo img {
    max-width: 150px;
    height: auto;
}

.bt-age-verification-content h2 {
    color: #8B0000; /* Weinrot */
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.bt-age-verification-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.bt-age-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.bt-age-button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    border: none;
}

.bt-age-yes {
    background-color: #8B0000; /* Weinrot */
    color: white;
}

.bt-age-yes:hover {
    background-color: #6d0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3);
}

.bt-age-no {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.bt-age-no:hover {
    background-color: #e5e5e5;
}

.bt-age-disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 600px) {
    .bt-age-verification-content {
        padding: 1.5rem;
    }
    
    .bt-age-buttons {
        flex-direction: column;
    }
    
    .bt-age-button {
        width: 100%;
    }
} 