.playnco-report-button {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 99990;
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(40, 87, 143, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 4px 12px rgba(35, 75, 114, 0.15);
    color: #64879b;
    font: 800 1rem/1 Nunito, system-ui, sans-serif;
    cursor: pointer;
    opacity: 0.68;
    transition: opacity 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.playnco-report-button:hover,
.playnco-report-button:focus-visible {
    background: #fff;
    box-shadow: 0 6px 16px rgba(35, 75, 114, 0.22);
    opacity: 1;
    outline: 2px solid rgba(149, 212, 224, 0.55);
    outline-offset: 2px;
}

.playnco-report-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(16, 28, 41, 0.68);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.playnco-report-overlay[hidden] {
    display: none !important;
}

.playnco-report-dialog {
    width: min(520px, 100%);
    max-height: calc(100dvh - 36px);
    overflow-y: auto;
    padding: 20px;
    border: 1px solid rgba(40, 87, 143, 0.16);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(10, 25, 40, 0.34);
    color: #234b72;
    font-family: Nunito, system-ui, sans-serif;
}

.playnco-report-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.playnco-report-head h2 {
    margin: 0;
    color: #28578f;
    font-size: 1.35rem;
    line-height: 1.15;
}

.playnco-report-close {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(40, 87, 143, 0.1);
    color: #28578f;
    font: 900 1.4rem/1 Nunito, sans-serif;
    cursor: pointer;
}

.playnco-report-intro,
.playnco-report-page,
.playnco-report-status {
    margin: 8px 0 0;
    color: #64879b;
    font-size: 0.86rem;
    line-height: 1.4;
}

.playnco-report-page {
    padding: 8px 10px;
    border-radius: 9px;
    background: rgba(149, 212, 224, 0.14);
    overflow-wrap: anywhere;
}

.playnco-report-form label {
    display: block;
    margin: 16px 0 6px;
    color: #28578f;
    font-size: 0.84rem;
    font-weight: 900;
}

.playnco-report-form textarea {
    display: block;
    width: 100%;
    min-height: 150px;
    resize: vertical;
    padding: 11px 12px;
    border: 1px solid rgba(40, 87, 143, 0.24);
    border-radius: 11px;
    background: #fff;
    color: #234b72;
    font: 600 0.95rem/1.45 Nunito, system-ui, sans-serif;
}

.playnco-report-form textarea:focus {
    border-color: #0db3af;
    box-shadow: 0 0 0 3px rgba(13, 179, 175, 0.18);
    outline: none;
}

.playnco-report-submit {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 9px 16px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #df8b2f, #f6642a);
    color: #fff;
    font: 900 0.92rem/1 Nunito, system-ui, sans-serif;
    cursor: pointer;
}

.playnco-report-submit:disabled {
    cursor: wait;
    opacity: 0.58;
}

.playnco-report-status.is-success {
    color: #267d73;
    font-weight: 800;
}

.playnco-report-status.is-error {
    color: #8f2852;
    font-weight: 800;
}

.playnco-report-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 600px) {
    .playnco-report-button {
        right: max(10px, env(safe-area-inset-right));
        bottom: max(10px, env(safe-area-inset-bottom));
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .playnco-report-overlay {
        align-items: flex-end;
        padding: 8px;
    }

    .playnco-report-dialog {
        max-height: calc(100dvh - 16px);
        padding: 17px;
        border-radius: 16px;
    }
}
