.cookie-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 15px;
    box-sizing: border-box;
}
.cookie-modal-content {
    background: #fff;
    padding: 20px 25px;
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    overflow-wrap: break-word;
}
.cookie-accept-btn {
    margin-top: 20px;
    background: #6a0dad;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}
