/* ==========================================
   NEUE ALTERSVERIFIKATION - MOBILE KLEIN
   ========================================== */

.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 0.5rem;
}

.age-verification-modal.hidden {
    display: none;
}

/* MOBILE: MITTEL-GROß - Box 440px breit */
.age-verification-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    max-width: 440px;
    width: 92%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: ageFadeIn 0.4s ease;
}

/* MOBILE: Badge 100px */
.age-verification-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #ff0055 0%, #cc0044 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.6), 0 0 50px rgba(255, 0, 85, 0.4);
}

/* MOBILE: Titel 24px */
.age-verification-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
}

/* MOBILE: Text 17px */
.age-verification-text {
    color: #555555;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-size: 1.0625rem;
}

/* MOBILE: Buttons Container */
.age-verification-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* MOBILE: Buttons 56px hoch */
.age-verification-btn {
    padding: 1rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    min-height: 56px;
    transition: all 0.3s ease;
}

.age-verification-btn-yes {
    background: linear-gradient(135deg, #ff0055 0%, #cc0044 100%);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
}

.age-verification-btn-yes:hover {
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.6);
    transform: translateY(-1px);
}

.age-verification-btn-no {
    background: linear-gradient(135deg, #dd0044 0%, #aa0033 100%);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(221, 0, 68, 0.4);
}

.age-verification-btn-no:hover {
    box-shadow: 0 0 15px rgba(221, 0, 68, 0.6);
    transform: translateY(-1px);
}

/* MOBILE: Disclaimer 13px */
.age-verification-disclaimer {
    font-size: 0.8125rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* DESKTOP: GRÖßER (ab 640px) */
@media (min-width: 640px) {
    .age-verification-box {
        max-width: 480px;
        padding: 2.5rem 2rem;
        border-radius: 20px;
        border-width: 2px;
    }
    
    .age-verification-badge {
        width: 110px;
        height: 110px;
        margin-bottom: 1.5rem;
        font-size: 2.75rem;
        box-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
        color: #ffffff;
    }
    
    .age-verification-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .age-verification-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        color: #555555;
    }
    
    .age-verification-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .age-verification-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        min-height: 52px;
        border-radius: 10px;
    }
    
    .age-verification-disclaimer {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
}

/* Animation */
@keyframes ageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Badge Pulse Animation */
@keyframes ageBadgePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 85, 0.7);
    }
}

.age-verification-badge {
    animation: ageBadgePulse 3s ease-in-out infinite;
}

@media (min-width: 640px) {
    @keyframes ageBadgePulseDesktop {
        0%, 100% {
            box-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
        }
        50% {
            box-shadow: 0 0 50px rgba(255, 0, 85, 0.8);
        }
    }
    
    .age-verification-badge {
        animation: ageBadgePulseDesktop 3s ease-in-out infinite;
    }
}