/* Age Verification Gate */
.epss-age-gate {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.epss-age-gate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.epss-age-gate-modal {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: ageGateIn 0.4s ease;
}
@keyframes ageGateIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.epss-age-gate-logo { margin-bottom: 20px; }
.epss-age-gate-logo-img { max-width: 180px; height: auto; }
.epss-age-gate-modal h2 {
    font-size: 22px;
    margin: 0 0 12px;
    color: #222;
}
.epss-age-gate-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
}
.epss-age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.epss-age-gate-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.epss-age-gate-btn.confirm {
    color: #fff;
}
.epss-age-gate-btn.confirm:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.epss-age-gate-btn.deny {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}
.epss-age-gate-btn.deny:hover {
    background: #eee;
}
.epss-age-gate-remember {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    cursor: pointer;
}
.epss-age-gate-remember input { accent-color: #2e7d32; }
.epss-age-gate-legal {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

/* Mobile */
@media (max-width: 480px) {
    .epss-age-gate-modal { padding: 28px 20px; }
    .epss-age-gate-modal h2 { font-size: 20px; }
    .epss-age-gate-btn { padding: 12px 20px; font-size: 15px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .epss-age-gate-modal { animation: none; }
}
