#bug-report-icon {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 5000;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(54, 197, 240, 0.95), rgba(124, 92, 255, 0.92));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: none;
    overflow: auto;
    padding: 24px;
    background: rgba(3, 7, 14, 0.78);
    backdrop-filter: blur(12px);
}

.modal-content {
    width: min(540px, 100%);
    margin: 6vh auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
        rgba(17, 24, 39, 0.96);
    color: #eef4ff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.modal-content h2 {
    margin: 0 0 18px;
}

.close {
    float: right;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
    color: #9aa8bd;
    cursor: pointer;
}

.close:hover,
.close:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

#bug-report-form {
    display: grid;
    gap: 13px;
}

#bug-report-form label {
    display: block;
    margin-bottom: 6px;
    color: #9aa8bd;
    font-size: 13px;
    font-weight: 750;
    text-align: left;
}

#bug-report-form input[type="text"],
#bug-report-form textarea,
#bug-report-form select {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    color: #eef4ff;
}

#bug-report-form input:focus,
#bug-report-form textarea:focus,
#bug-report-form select:focus {
    border-color: rgba(54, 197, 240, 0.6);
    box-shadow: 0 0 0 4px rgba(54, 197, 240, 0.12);
}

#bug-report-form button {
    width: 100%;
    min-height: 44px;
    margin-top: 4px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #36c5f0, #7c5cff);
    color: #fff;
    cursor: pointer;
    font-weight: 850;
}

@media (max-width: 768px) {
    #bug-report-icon {
        left: 12px;
        bottom: 12px;
    }

    .modal {
        padding: 12px;
    }
}
