#uti-consent-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.uti-modal {
    max-width: 560px;
    width: 90%;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    text-align: left;
    max-height: 92vh;
    overflow-y: auto;
}

.uti-modal h2 {
    margin-top: 0;
    font-size: 1.6em;
    text-align: center;
    margin-bottom: 25px;
}

.uti-disclaimer {
    max-height: 220px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 0.95em;
    line-height: 1.5;
}

.uti-modal label {
    display: block;
    margin: 14px 0;
    font-size: 1.05em;
    cursor: pointer;
}

.uti-modal input[type="checkbox"] {
    transform: scale(1.4);
    margin-right: 10px;
}

#uti-enter-btn, #uti-leave-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s;
}

#uti-enter-btn {
    cursor: not-allowed;
    opacity: 0.6;
    background: #ccc;
    color: #666;
}

#uti-enter-btn:not(:disabled) {
    cursor: pointer;
    opacity: 1;
}

#uti-leave-btn {
    color: white;
}