.age-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(3, 3, 3, 0.93) !important; /* Slightly darker to isolate the background */
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    display: none; /* Controlled by JavaScript */
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999999 !important; /* Highest priority to stay above headers/navbars */
    padding: 20px !important;
    box-sizing: border-box !important;
}

/* Perfect Centered Card */
.age-card {
    width: min(92%, 460px) !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255, 32, 64, 0.3) !important;
    border-radius: 24px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 0, 64, 0.15) !important;
    animation: modalPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    box-sizing: border-box !important;
}

@keyframes modalPopIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.age-icon {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #ff1f44 !important;
    border: 3px solid #ff1f44 !important;
    width: 65px !important;
    height: 65px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    margin-bottom: 20px !important;
    box-shadow: 0 0 15px rgba(255, 31, 68, 0.3) !important;
}

.age-title {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 12px 0 !important;
    line-height: 1.3 !important;
}

.age-desc {
    color: #b0b0b0 !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin: 0 0 30px 0 !important;
}

.age-btn-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.age-btn {
    width: 100% !important;
    padding: 14px !important;
    border-radius: 50px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    border: none !important;
    outline: none !important;
}

.age-btn-yes {
    background: linear-gradient(135deg, #ff003c, #99001a) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(255, 0, 60, 0.3) !important;
}

.age-btn-yes:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(255, 0, 60, 0.5) !important;
    background: linear-gradient(135deg, #ff1a53, #b30022) !important;
}

.age-btn-no {
    background: transparent !important;
    color: #8c8c8c !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.age-btn-no:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}