.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-gate-overlay.hidden-gate {
    display: none !important;
}
.age-gate-modal {
    background: #273A41 !important;
    padding: 20px !important;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: #F9F4E9 !important;
    font-family: 'Gideon Roman', serif !important;
    box-sizing: border-box;
}
.age-gate-modal h2 {
    margin-top: 0;
    font-size: clamp(14px, 3vw, 16px); /* Reduced title size */
    margin-bottom: 15px;
    font-family: 'Gideon Roman', serif !important;
    color: #F9F4E9 !important;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
.age-gate-modal p {
    font-size: clamp(12px, 2.5vw, 14px); /* Reduced paragraph size */
    margin-bottom: 25px;
    font-family: 'Gideon Roman', serif !important;
    color: #F9F4E9 !important;
    width: 100%;
    word-wrap: break-word;
}
.age-gate-checkbox-group {
    text-align: left;
    margin-bottom: 15px;
    font-size: clamp(11px, 2.5vw, 13px); /* Smaller checkbox text */
}
.age-gate-checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    line-height: 1.3;
}
.age-gate-checkbox {
    margin-top: 2px;
}
.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.age-gate-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Gideon Roman', serif !important;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
    white-space: nowrap;
}
.age-gate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.age-gate-btn-yes {
    background: #F9F4E9 !important;
    color: #273A41 !important;
}
.age-gate-btn-yes:not(:disabled):hover {
    background: #e6e0d4 !important;
}
.age-gate-btn-no {
    background: #8F3504 !important;
    color: #F9F4E9 !important;
}
.age-gate-btn-no:hover {
    background: #7a2d03 !important;
}
body.age-gate-locked {
    overflow: hidden;
}