/* =========================
   REPORT MODAL + REPORT UI
   ========================= */

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 9, 15, .68);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
  box-sizing: border-box;
}

.report-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.report-modal-lock,
body.report-modal-lock {
  overflow: hidden !important;
}

.report-modal *,
.report-modal *::before,
.report-modal *::after {
  box-sizing: border-box;
}

.report-modal__dialog {
  position: relative;
  width: min(980px, calc(100vw - 48px));
  max-height: min(88vh, 980px);
  overflow: auto;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(4, 74, 86, .94) 0%, rgba(1, 42, 52, .96) 34%, rgba(2, 22, 32, .98) 100%);
  border: 1px solid rgba(102, 236, 255, .22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .06), 0 0 0 1px rgba(9, 170, 196, .05);
  color: #e7fbff;
  scrollbar-width: thin;
  scrollbar-color: rgba(102, 236, 255, .55) rgba(255, 255, 255, .06);
}

.report-modal__dialog::-webkit-scrollbar {
  width: 10px;
}

.report-modal__dialog::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
}

.report-modal__dialog::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(92, 240, 255, .85), rgba(16, 126, 149, .95));
  border-radius: 999px;
}

.report-modal__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  background: linear-gradient(180deg, rgba(0, 67, 80, .96), rgba(0, 57, 68, .88));
  border-bottom: 1px solid rgba(102, 236, 255, .18);
}

.report-modal__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: .01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .28);
}

button.report-modal__close {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  background-image: none !important;
  color: #f5ffff;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

button.report-modal__close:hover {
  filter: none;
  transform: translateY(-1px);
  border-color: rgba(102, 236, 255, .3);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
}

.report-modal__body {
  padding: 20px;
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.report-meta-card {
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.report-meta-card small {
  display: block;
  margin-bottom: 8px;
  color: #98c7d0;
  font-size: 13px;
  line-height: 1.3;
}

.report-meta-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.15;
  word-break: break-word;
}

.report-meta-card div {
  color: #e6fbff;
  font-size: 13px;
  line-height: 1.4;
  word-break: break-word;
}

.report-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.report-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.report-field--full {
  grid-column: 1 / -1;
}

.report-field label {
  display: block;
  margin: 0;
  color: #edfafd;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.report-modal input[type="text"],
.report-modal input[type="number"],
.report-modal input[type="password"],
.report-modal select,
.report-modal textarea,
.report-select,
select.report-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100% !important;
  min-width: 0;
  max-width: 100%;
  padding: 14px 46px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(43, 212, 235, .22);
  background-color: rgba(0, 28, 40, .96) !important;
  background-image:
    linear-gradient(180deg, rgba(0, 18, 29, .88), rgba(0, 28, 40, .92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M1 1l6 7 6-7' fill='none' stroke='%23c7f8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 14px 10px;
  color: #f0feff !important;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.35;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.report-modal input[type="password"] {
  background-image: linear-gradient(180deg, rgba(0, 18, 29, .88), rgba(0, 28, 40, .92));
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto;
  padding-right: 16px;
}

.report-modal select,
.report-select,
select.report-select {
  cursor: pointer;
}

.report-modal select::-ms-expand,
.report-select::-ms-expand,
select.report-select::-ms-expand {
  display: none;
}

.report-modal select option,
.report-modal select optgroup,
.report-select option,
.report-select optgroup,
select.report-select option,
select.report-select optgroup {
  background: #072a35 !important;
  color: #eafcff !important;
}

.report-modal select option:checked,
.report-modal select option:hover,
.report-select option:checked,
.report-select option:hover,
select.report-select option:checked,
select.report-select option:hover {
  background: #0d5266 !important;
  color: #ffffff !important;
}

.report-modal input[type="number"],
.report-modal input[type="password"] {
  height: 52px;
}

.report-modal input[type="text"],
.report-modal select,
.report-select,
select.report-select {
  height: 52px;
}

.report-modal textarea {
  min-height: 108px;
  max-height: 260px;
  resize: vertical;
  padding-right: 16px;
  background-image: linear-gradient(180deg, rgba(0, 18, 29, .88), rgba(0, 28, 40, .92));
}

.report-modal input[type="text"]::placeholder,
.report-modal input[type="number"]::placeholder,
.report-modal input[type="password"]::placeholder,
.report-modal textarea::placeholder {
  color: rgba(210, 235, 241, .48);
}

.report-modal input[type="text"]:focus,
.report-modal input[type="number"]:focus,
.report-modal input[type="password"]:focus,
.report-modal select:focus,
.report-modal textarea:focus,
.report-select:focus,
select.report-select:focus {
  outline: none;
  filter: none;
  border-color: rgba(92, 240, 255, .56);
  box-shadow: 0 0 0 3px rgba(92, 240, 255, .13), inset 0 1px 0 rgba(255,255,255,.04);
}

.report-hint {
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #d8f4f8;
  font-size: 14px;
  line-height: 1.45;
}

.report-help-box {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(5, 17, 26, .74), rgba(4, 18, 27, .9));
  border: 1px solid rgba(255, 255, 255, .08);
}

.report-help-box__title {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.report-help-list {
  margin: 0;
  padding-left: 20px;
  color: #d9f6fa;
}

.report-help-list li {
  margin: 0 0 7px;
  line-height: 1.45;
}

.report-result {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  color: #eefcff;
  line-height: 1.4;
}

.report-result.is-visible {
  display: block;
}

.report-result.is-error {
  border-color: rgba(255, 96, 96, .28);
  background: rgba(120, 20, 20, .16);
  color: #ffd9d9;
}

.report-result.is-success {
  border-color: rgba(95, 232, 176, .26);
  background: rgba(15, 96, 66, .18);
  color: #d5ffef;
}

.report-modal__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

button.report-btn,
.report-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  width: auto !important;
  max-width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background-image: none !important;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: transform .14s ease, border-color .14s ease, background .14s ease, box-shadow .14s ease;
}

button.report-btn:hover,
.report-btn:hover {
  filter: none;
  transform: translateY(-1px);
}

button.report-btn--ghost,
.report-btn--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  color: #eafcff;
}

button.report-btn--ghost:hover,
.report-btn--ghost:hover {
  border-color: rgba(102, 236, 255, .28);
  box-shadow: 0 0 0 3px rgba(102, 236, 255, .08);
}

button.report-btn--danger,
.report-btn--danger {
  border-color: rgba(255, 191, 80, .32);
  background: linear-gradient(180deg, #8d6921 0%, #6a4a12 100%);
  color: #fff7e3;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 24px rgba(0,0,0,.22);
}

button.report-btn--danger:hover,
.report-btn--danger:hover {
  border-color: rgba(255, 215, 117, .48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 28px rgba(0,0,0,.26), 0 0 0 3px rgba(255, 200, 96, .09);
}

/* =====       ===== */
.profile-header--with-report,
.report-player-strip,
.report-player-row,
.report-user-strip,
.audit-player-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px;
  flex-wrap: nowrap !important;
}

.profile-header--with-report .username,
.report-player-name,
.audit-player-name {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
  margin: 0;
}

.profile-header--with-report .username a,
.report-player-name a,
.audit-player-name a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.profile-header--with-report .username + *,
.report-player-name + *,
.audit-player-name + * {
  margin-top: 0 !important;
}

.profile-header--with-report .report-trigger,
.report-player-actions .report-trigger,
.audit-player-main .report-trigger,
button.report-trigger,
.report-trigger {
  appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 42px !important;
  min-width: 42px;
  max-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 42px;
  border-radius: 14px;
  border: 1px solid rgba(71, 226, 245, .28);
  background: radial-gradient(circle at 30% 30%, rgba(0, 166, 193, .32), rgba(0, 57, 72, .95));
  background-image: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 22px rgba(0,0,0,.22);
  line-height: 1;
  overflow: hidden;
}

button.report-trigger:hover,
.report-trigger:hover {
  filter: none;
  transform: translateY(-1px);
  border-color: rgba(110, 243, 255, .45);
}

.report-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
  max-height: none;
  padding: 6px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.profile-header--with-report > img,
.report-player-strip > img,
.report-player-row > img,
.report-user-strip > img,
.audit-player-strip > img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 56px;
}

.profile-header--with-report .currency,
.profile-header--with-report .crystals,
.report-player-currency,
.report-player-right,
.audit-player-currency {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* =========================
   PUNISHMENTS SECTION
   ========================= */
.punishments-section {
  margin-top: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(4,48,56,.92), rgba(3,20,27,.96));
  border: 1px solid rgba(98,236,255,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.punishments-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 16px;
}
.punishments-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.punishments-hero {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.32));
}
.punishments-title {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}
.punishments-subtitle {
  color: #97d8e1;
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.45;
  max-width: 720px;
}
.punishments-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.punishments-badge {
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.punishments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
  padding: 0 24px 24px;
  max-height: 620px;
  overflow: auto;
  align-items: start;
  scrollbar-width: thin;
  scrollbar-color: rgba(95,235,255,.45) rgba(255,255,255,.05);
}
.punishments-grid::-webkit-scrollbar { width: 10px; }
.punishments-grid::-webkit-scrollbar-track {
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}
.punishments-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(66,233,255,.7), rgba(24,116,138,.9));
  border-radius: 999px;
}
.punishment-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(3,12,20,.92), rgba(4,24,35,.92));
  border: 1px solid rgba(255,98,98,.22);
  padding: 16px;
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 14px 34px rgba(0,0,0,.2);
}
.punishment-card--active {
  border-color: rgba(255,84,84,.32);
  box-shadow: 0 0 0 1px rgba(255,84,84,.08), inset 0 0 22px rgba(255,44,44,.05), 0 16px 36px rgba(0,0,0,.24);
}
.punishment-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.punishment-type {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.punishment-status {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.punishment-status--active {
  background: rgba(210,40,40,.18);
  color: #ffd3d3;
  border: 1px solid rgba(210,40,40,.35);
}
.punishment-status--expired {
  background: rgba(255,255,255,.08);
  color: #d6edf1;
  border: 1px solid rgba(255,255,255,.12);
}
.punishment-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.punishment-info div {
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 10px 12px;
  min-width: 0;
}
.punishment-info small {
  display: block;
  color: #8ebbc4;
  margin-bottom: 4px;
}
.punishment-info span {
  display: block;
  color: #fff;
  word-break: break-word;
}
.punishment-reason {
  color: #dff7ff;
  line-height: 1.5;
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  padding: 12px 14px;
  max-height: 132px;
  overflow: auto;
  word-break: break-word;
  scrollbar-width: thin;
}
.punishment-empty {
  padding: 0 24px 24px;
}
.punishment-empty-card {
  border-radius: 20px;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.14);
  color: #d8eef2;
}

.report-upload-drop {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(102, 236, 255, .34);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}

.report-upload-drop input[type="file"] {
  width: 100%;
  padding: 10px 0;
  color: #eafcff;
}

.report-upload-note {
  color: #98c7d0;
  font-size: 13px;
  line-height: 1.45;
}

.report-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.report-preview-card {
  position: relative;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.report-preview-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.report-preview-card span {
  display: block;
  margin-top: 6px;
  color: #d7f9ff;
  font-size: 12px;
  line-height: 1.3;
  word-break: break-word;
}

.report-preview-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(2, 14, 20, .82);
  color: #fff;
  cursor: pointer;
}

.report-result.show,
.report-result.is-visible {
  display: block;
}

.report-result--error {
  border-color: rgba(255, 96, 96, .28);
  background: rgba(120, 20, 20, .16);
  color: #ffd9d9;
}

.report-result--ok {
  border-color: rgba(95, 232, 176, .26);
  background: rgba(15, 96, 66, .18);
  color: #d5ffef;
}

.report-result--info {
  border-color: rgba(103, 232, 249, .24);
  background: rgba(8, 52, 76, .22);
  color: #d7f7ff;
}

.report-modal input.is-invalid,
.report-modal textarea.is-invalid,
.report-modal select.is-invalid {
  border-color: rgba(255, 96, 96, .45) !important;
  box-shadow: 0 0 0 3px rgba(255, 96, 96, .12);
}

/* ===    === */
.report-evidence-upload {
    margin-top: 12px;
    padding: 16px;
    border-radius: 12px;
    border: 1px dashed rgba(103, 232, 249, 0.25);
    background: linear-gradient(180deg, rgba(6,16,27,.8), rgba(11,23,48,.85));
    box-shadow: inset 0 0 20px rgba(0,0,0,.25);
    transition: .2s ease;
}

.report-evidence-upload:hover {
    border-color: rgba(103, 232, 249, 0.45);
    box-shadow: 0 0 12px rgba(56,189,248,.15);
}

/*    */
.report-evidence-upload input[type="file"] {
    display: block;
    margin-bottom: 10px;
    color: #bfd0ec;
    font-size: 13px;
}

/*   */
.report-evidence-hint {
    font-size: 12px;
    color: #8ea6cb;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* ===   === */
.report-evidence-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

/*   */
.report-evidence-item {
    position: relative;
    width: 110px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    transition: .2s ease;
}

.report-evidence-item:hover {
    transform: translateY(-2px);
    border-color: rgba(103,232,249,.4);
    box-shadow: 0 6px 14px rgba(0,0,0,.4);
}

/*   */
.report-evidence-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/*   */
.report-evidence-name {
    font-size: 10px;
    padding: 4px 6px;
    color: #bfd0ec;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*  */
.report-evidence-size {
    font-size: 9px;
    color: #8ea6cb;
    padding: 0 6px 6px;
}

/*   */
.report-evidence-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
}

.report-evidence-remove:hover {
    background: rgba(239,68,68,.9);
}

/* ===   === */
.report-evidence-item {
    animation: evidenceFade .2s ease;
}

@keyframes evidenceFade {
    from {
        opacity: 0;
        transform: scale(.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================
   REPORT AUTH
   ========================= */
.report-auth-card,
.report-auth-box {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(94, 235, 255, .18);
  background: linear-gradient(180deg, rgba(0, 49, 61, .56), rgba(0, 24, 34, .66));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 10px 26px rgba(0,0,0,.14);
}

.report-auth-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

.report-auth-text,
.report-auth-subtitle,
.report-auth-note {
  color: #d7f6fb;
  font-size: 14px;
  line-height: 1.45;
}

.report-auth-user {
  margin: 0 0 12px;
  color: #effdff;
  font-size: 15px;
  line-height: 1.45;
}

.report-auth-user strong {
  color: #ffffff;
  font-weight: 800;
}

.report-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.report-auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.report-auth-form .form-group,
.report-auth-form .report-field,
.report-auth-form .auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.report-auth-form label,
.report-auth-form .field-label {
  font-size: 15px;
  font-weight: 700;
  color: #e9f7ff;
  letter-spacing: .2px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .35);
}

.report-auth-form input[type="text"],
.report-auth-form input[type="password"],
.report-auth-form input[type="email"],
.report-auth-form select,
.report-auth-form textarea,
.report-auth-login,
.report-auth-password {
  width: 100%;
  min-height: 52px;
  height: 52px;
  padding: 14px 18px;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid rgba(0, 220, 255, .38);
  background: linear-gradient(180deg, rgba(6, 30, 40, .96), rgba(2, 18, 27, .98)) !important;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), inset 0 8px 16px rgba(0,255,255,.05), 0 0 0 rgba(0,255,255,0);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.report-auth-form input[type="password"],
.report-auth-password {
  padding-right: 18px;
}

.report-auth-form input[type="text"]::placeholder,
.report-auth-form input[type="password"]::placeholder,
.report-auth-form input[type="email"]::placeholder,
.report-auth-form textarea::placeholder,
.report-auth-login::placeholder,
.report-auth-password::placeholder {
  color: rgba(220, 242, 255, .55);
  font-weight: 500;
}

.report-auth-form input[type="text"]:hover,
.report-auth-form input[type="password"]:hover,
.report-auth-form input[type="email"]:hover,
.report-auth-form select:hover,
.report-auth-form textarea:hover,
.report-auth-login:hover,
.report-auth-password:hover {
  border-color: rgba(63, 231, 255, .62);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), inset 0 8px 18px rgba(0,255,255,.07), 0 0 16px rgba(0,238,255,.08);
}

.report-auth-form input[type="text"]:focus,
.report-auth-form input[type="password"]:focus,
.report-auth-form input[type="email"]:focus,
.report-auth-form select:focus,
.report-auth-form textarea:focus,
.report-auth-login:focus,
.report-auth-password:focus {
  border-color: rgba(90, 240, 255, .95);
  background: linear-gradient(180deg, rgba(8, 38, 50, .98), rgba(3, 22, 31, 1)) !important;
  box-shadow: inset 0 0 0 1px rgba(130,245,255,.16), 0 0 0 3px rgba(0,225,255,.12), 0 0 22px rgba(0,225,255,.16);
  transform: translateY(-1px);
}

.report-auth-form input:-webkit-autofill,
.report-auth-form input:-webkit-autofill:hover,
.report-auth-form input:-webkit-autofill:focus,
.report-auth-login:-webkit-autofill,
.report-auth-login:-webkit-autofill:hover,
.report-auth-login:-webkit-autofill:focus,
.report-auth-password:-webkit-autofill,
.report-auth-password:-webkit-autofill:hover,
.report-auth-password:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px #061e28 inset;
  transition: background-color 9999s ease-in-out 0s;
}

.report-auth-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-image:
    linear-gradient(180deg, rgba(6, 30, 40, .96), rgba(2, 18, 27, .98)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%238befff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 18px 18px;
}

.report-auth-form textarea {
  min-height: 110px;
  resize: vertical;
}

.report-auth-form .input-error,
.report-auth-form input.input-error,
.report-auth-form select.input-error,
.report-auth-form textarea.input-error {
  border-color: rgba(255, 95, 95, .95) !important;
  background: linear-gradient(180deg, rgba(45, 10, 14, .96), rgba(28, 6, 9, .98)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,160,160,.12), 0 0 0 3px rgba(255,70,70,.12), 0 0 18px rgba(255,55,55,.16) !important;
}

.report-auth-form .field-hint {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(210, 238, 248, .72);
}

@media (max-width: 900px) {
  .punishments-top {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 18px 12px;
  }
  .punishments-badges {
    justify-content: flex-start;
  }
  .punishments-grid,
  .punishment-empty {
    padding: 0 18px 18px;
  }
  .punishments-grid {
    grid-template-columns: 1fr;
    max-height: 520px;
  }
}

@media (max-width: 768px) {
  .report-auth-form input[type="text"],
  .report-auth-form input[type="password"],
  .report-auth-form input[type="email"],
  .report-auth-form select,
  .report-auth-form textarea,
  .report-auth-login,
  .report-auth-password {
    min-height: 48px;
    height: 48px;
    padding: 12px 14px;
    font-size: 17px;
    border-radius: 15px;
  }

  .report-auth-form label,
  .report-auth-form .field-label {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .report-modal {
    padding: 10px;
  }

  .report-modal__dialog {
    width: min(100vw - 20px, 980px);
    max-height: calc(100vh - 20px);
    border-radius: 18px;
  }

  .report-modal__head,
  .report-modal__body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .punishments-title-wrap {
    align-items: flex-start;
  }

  .punishments-hero {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .punishments-title {
    font-size: 20px;
  }

  .punishment-info,
  .report-meta-grid,
  .report-form-grid {
    grid-template-columns: 1fr;
  }

  .punishment-reason {
    max-height: 110px;
  }

  .report-modal__actions,
  .profile-header--with-report,
  .report-player-strip,
  .report-player-row,
  .report-user-strip,
  .audit-player-strip,
  .report-auth-actions {
    flex-wrap: wrap !important;
  }

  .profile-header--with-report .username,
  .report-player-name,
  .audit-player-name {
    white-space: normal;
  }
}
