/* Age Verification Overlay */
#av-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

#av-overlay.av-hidden {
    display: none !important;
}

#av-popup {
    background: #fff;
    width: 90%;
    max-width: 520px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Teal Header */
#av-header {
    background: #4FC3C3;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* Body */
#av-body {
    padding: 20px;
}

#av-line1 {
    font-size: 14px;
    color: #333;
    margin: 0 0 16px 0;
}

/* Checkbox rows */
.av-check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

.av-check-row input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4FC3C3;
}

/* Remember row */
.av-remember-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    cursor: pointer;
    font-size: 13px;
    color: #333;
}

.av-remember-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4FC3C3;
}

/* Buttons */
#av-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}

#av-btn-no {
    background: #e53935;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

#av-btn-no:hover {
    background: #c62828;
}

#av-btn-yes {
    background: #bdbdbd;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

#av-btn-yes:hover {
    background: #9e9e9e;
}

/* Mobile */
@media (max-width: 480px) {
    #av-popup { width: 95%; }
    #av-buttons { flex-direction: column; }
    #av-btn-no, #av-btn-yes { width: 100%; text-align: center; }
}
