/* Styles for Age Verification +18 plugin (admin version) */
#av18-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    font-family: "Helvetica Neue", Arial, sans-serif;
}
#av18-modal{
    background: #050505;
    color: #fff;
    padding: 28px;
    max-width: 460px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 0 0 6px rgba(255,255,255,0.03) inset;
    border: 4px solid rgba(255,255,255,0.03);
}
#av18-logo{
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 30px;
    background: linear-gradient(90deg, #ffffff 0%, #ff0066 40%, #00ffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
#av18-title{
    font-size: 20px;
    margin: 6px 0 12px 0;
    font-weight: 800;
}
#av18-desc{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
    opacity: 0.95;
}
#av18-buttons{ margin-top: 6px; }
.av18-btn{
    display: inline-block;
    padding: 12px 22px;
    margin: 6px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: transform .12s ease, box-shadow .12s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.av18-btn:active{ transform: translateY(2px); }
#av18-enter{
    background: linear-gradient(180deg,#00c851,#007e33);
    color: #fff;
}
#av18-exit{
    background: linear-gradient(180deg,#ff4444,#cc0000);
    color: #fff;
}
@media (max-width:480px){
    #av18-modal{ padding:20px; border-radius:10px; }
    #av18-logo{ font-size:26px; }
    #av18-title{ font-size:18px; }
    .av18-btn{ padding:10px 16px; font-size:14px; }
}
