/* === ОСНОВА === */
.profile-page {
  width: min(1100px, 100%);
  margin: 40px auto;
  padding: 0 20px 60px;
  font-family: 'Rubik', sans-serif;
  color: #f5f5f5;
}

/* === ШАПКА ПРОФИЛЯ === */
.profile-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 35px;
  background: none;
  border: none;
}

.profile-avatar-flag-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 90, 0.42);
  background: rgba(18, 18, 18, 0.9);
  color: #ff9a9a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.profile-avatar-flag-btn:hover {
  background: rgba(255, 90, 90, 0.2);
  border-color: rgba(255, 90, 90, 0.58);
  color: #ffb2b2;
}

.profile-avatar-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  flex: 0 0 140px;
}

.profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
}

.profile-info .nickname {
  font-size: 24px;
  font-weight: 700;
  color: #ffa500;
}

.status { font-size: 14px; font-weight: 500; }
.status.online { color: #6cff74; }
.status.offline { color: #888; }

.reg-date { font-size: 13px; color: #999; margin-top: 6px; }

.profile-report-window {
  width: min(760px, 95vw);
  height: min(780px, 94vh);
  max-height: 94vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.profile-report-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.profile-report-title {
  margin: 0;
}

.profile-report-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 165, 0, 0.35);
  background: rgba(255, 165, 0, 0.12);
  color: #ffcc66;
  cursor: pointer;
  flex: 0 0 auto;
}

.profile-report-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-height: 0;
}

.profile-report-form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding-right: 2px;
}

.profile-report-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #e9e9e9;
}

.profile-report-form textarea {
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 14px 16px;
  outline: none;
}

.profile-report-form textarea {
  resize: none;
  min-height: 180px;
  font-size: 16px;
  line-height: 1.35;
}

.profile-report-form textarea:focus {
  border-color: #ffa500;
  box-shadow: 0 0 8px rgba(255, 165, 0, 0.3);
}

.profile-report-field-label {
  font-size: 14px;
  color: #e9e9e9;
  margin-bottom: 6px;
}

.profile-report-reason-group {
  position: relative;
}

.profile-report-reason-display {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 12px;
  background: rgba(15, 15, 15, 0.9);
  color: #b0b0b0;
  outline: none;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}

.profile-report-reason-display.has-value {
  color: #f5f5f5;
}

.profile-report-reason-display:focus {
  border-color: #ffa500;
  box-shadow: 0 0 8px rgba(255, 165, 0, 0.3);
}

.profile-report-reason-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
  display: none;
  z-index: 20;
}

.profile-report-reason-options button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: none;
  border: none;
  color: #ffa500;
  font-size: 14px;
  cursor: pointer;
}

.profile-report-reason-options button:hover {
  background: rgba(255, 165, 0, 0.12);
  color: #ffcc66;
}

.profile-report-reason-options button + button {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-report-reason-options.show {
  display: block;
  animation: profileReportFadeIn 0.15s ease-in-out;
}

@keyframes profileReportFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-report-details-meta {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-report-limit-progress {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.profile-report-limit-progress-bar {
  height: 100%;
  width: 0%;
  background: #32c36a;
  transition: width 0.2s ease, background 0.2s ease;
}

.profile-report-limit-counter {
  font-size: 13px;
  color: #aaa;
  text-align: left;
}

.profile-report-attach-row {
  margin-top: -2px;
}

.profile-report-attach-hint {
  font-size: 13px;
  color: #a9a9a9;
}

.profile-report-photos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-report-photo-slot {
  flex: 0 0 calc((100% - 20px) / 3);
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px dashed rgba(255, 165, 0, 0.5);
  background: rgba(15, 15, 15, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}

.profile-report-photo-slot:hover {
  border-color: #ffa500;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

.profile-report-photo-plus {
  font-size: 32px;
  color: #ffa500;
  line-height: 1;
}

.profile-report-photo-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-report-photo-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(220, 53, 69, 0.95);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.profile-report-photo-remove:hover {
  background: #ff4d4d;
  transform: scale(1.05);
  box-shadow: 0 0 6px rgba(255, 77, 77, 0.8);
}

.profile-report-actions {
  margin-top: 12px;
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 165, 0, 0.16);
  position: sticky;
  bottom: 0;
  background: transparent;
}

.profile-report-photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-report-photo-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.profile-report-photo-viewer-content {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.profile-report-photo-viewer-content img {
  display: block;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  width: auto;
  height: auto;
}

/* === ПОДПИСЬ === */
.edit-avatar-text {
  color: #ffa500;
  font-weight: 500;
  margin-right: 10px;
}

/* === ЕДИНЫЙ БЛОК ВЫБОРА ФАЙЛА === */
.file-upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  vertical-align: middle;
}

.file-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 165, 0, 0.4);
  border-radius: 8px;
  background: rgba(25, 25, 25, 0.9);
}

/* кнопка внутри «капсулы» */
.file-btn {
  background: rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 165, 0, 0.35);
  border-radius: 6px;
  color: #ffcc66;
  padding: 6px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}
.file-btn:hover { background: rgba(255, 165, 0, 0.25); color: #fff; }

/* текст справа в капсуле */
.file-name {
  color: #aaa;
  font-size: 14px;
  min-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

/* скрытый input */
#avatar-input { display: none; }

/* кнопка загрузки */
.upload-btn {
  padding: 6px 14px;
  background: #ffa500;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}
.upload-btn:hover {
  background: #d18800;
  box-shadow: 0 0 8px rgba(255, 165, 0, 0.5);
}

/* === СЕКЦИИ === */
.profile-section {
  background: none;
  border: 1px solid rgba(255, 165, 0, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 25px;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
}

.profile-section h3 {
  font-size: 18px;
  color: #ffa500;
  margin-bottom: 16px;
  margin-top: 16px;
  font-weight: 700;
}

.all_service {
  margin-top: 0px !important;
}

/* === ИГРЫ / КАТЕГОРИИ === */
.game-block { margin-bottom: 30px; }
.game-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffcc66;
  text-shadow: 0 0 8px rgba(255,165,0,0.3);
}
.category-title { font-size: 15px; color: #ccc; margin-bottom: 8px; }

/* === ТАБЛИЦА УСЛУГ (как в game_category) === */

/* Обёртка */
.offers-grid {
  position: relative;
  overflow: visible;
}

.offers-grid-inner {
  border: 1px solid rgba(255,165,0,0.25);
  border-radius: 11px;
  overflow: visible;
  background: transparent;
}

/* шапка и строки — grid с 3 колонками */
.offers-header {
  display: grid;
  grid-template-columns: 130px 1fr 110px;
}

/* базовая ячейка */
.cell {
  padding: 10px 14px;
  font-size: 14px;
  border-right: 1px solid rgba(255,165,0,0.25);
  border-bottom: 1px solid rgba(255,165,0,0.15);
  display: flex;
  align-items: center;
  min-width: 0;
  box-sizing: border-box;
}

/* убрать квадратные края у таблицы */
.offers-header .cell:last-child,
.offer-card .cell:last-child {
  border-right: none;
}

.offer-card:last-child .cell {
  border-bottom: none;
}

/* радиусы на угловых ячейках */
.offers-header .cell:first-child { border-top-left-radius: 10px; }
.offers-header .cell:last-child { border-top-right-radius: 10px; }
.offer-card:last-child .cell:first-child { border-bottom-left-radius: 10px; }
.offer-card:last-child .cell:last-child { border-bottom-right-radius: 10px; }

/* убрать зазоры у верхних углов */
.offers-header .cell {
  border-top: none;
}

/* шапка */
.cell-header {
  background: rgba(255,165,0,0.15);
  color: #ffcc66;
  font-weight: 600;
  justify-content: center;
  background-clip: padding-box;
}

.cell-header-description {
  justify-content: left;
}

.offers-header .cell:last-child,
.offer-card .cell:last-child {
  border-right: none;
}

/* строки */
.offer-card {
  position: relative;
}

.offer-card-link {
  display: grid;
  grid-template-columns: 130px 1fr 110px;
  text-decoration: none;
  color: #ddd;
  transition: background 0.25s ease;
}

.offer-card-link:hover .cell {
  background: rgba(255,165,0,0.08);
}

/* don't highlight row when hovering edit button */
.offer-card:has(.offer-edit-btn:hover) .cell {
  background: transparent !important;
}

.offer-edit-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  transform: scaleX(-1);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 165, 0, 0.2);
  border: 1px solid rgba(255, 165, 0, 0.45);
  color: #ffcc66;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.offer-edit-btn:hover {
  background: rgba(255, 165, 0, 0.35);
  color: #ffa500;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.25);
}

body.light-theme .offer-card-link {
  color: #111;
}

body.light-theme .offer-card-link:hover .cell {
  background: #e0e0e0;
}

body.light-theme .offer-edit-btn {
  background: transparent;
  border-color: #9e9e9e;
  color: #000;
}

body.light-theme .offer-edit-btn:hover {
  background: #e0e0e0;
  color: #000;
  box-shadow: none;
}

/* отдельные колонки */
.cell-platform {
  justify-content: center;
}
.cell-description {
  flex-direction: column;
  align-items: flex-start;
}
.price-cell {
  justify-content: flex-end;
  font-weight: 600;
  color: #ffcc66;
}

/* текст описания */
.offer-description-text {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.4;
  max-width: 100%;
}

/* подпись платформы для мобилок (по умолчанию скрыта) */
.mobile-platform {
  display: none;
  font-size: 12px;
  color: #b0b0b0;
  margin-bottom: 4px;
}

/* === ОТЗЫВЫ === */
.review-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px 0;
  margin-bottom: 12px;
  box-shadow: none;
  transition: 0.3s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.review-card:hover { box-shadow: none; }

.reviews-summary {
  display: grid;
  grid-template-columns: 140px 1fr 240px;
  gap: 20px;
  align-items: center;
  margin: 6px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 170, 0, 0.15);
}

.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.reviews-score-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.reviews-score-sub {
  font-size: 16px;
  opacity: 0.7;
}

.reviews-break-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.reviews-break-stars {
  min-width: 100px;
  font-size: 14px;
  display: inline-flex;
  gap: 2px;
}

.reviews-break-bar {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}

.reviews-break-fill {
  height: 100%;
  background: #f5b544;
  border-radius: inherit;
}

.reviews-summary-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.reviews-total {
  font-size: 14px;
  opacity: 0.7;
}

.reviews-filter {
  position: relative;
  display: inline-block;
}

.reviews-filter-btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 170, 0, 0.2);
  background: rgba(0,0,0,0.2);
  color: #f5f5f5;
  cursor: pointer;
  min-width: 170px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.reviews-filter-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid #333;
  border-radius: 6px;
  box-shadow: none;
  display: none;
  flex-direction: column;
  z-index: 5;
  overflow: hidden;
}

.reviews-filter.open .reviews-filter-menu {
  display: flex;
}

.reviews-filter-item {
  background: transparent;
  border: none;
  color: #ffa500;
  padding: 8px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 2px;
}

.reviews-filter-item:hover { background: rgba(255, 165, 0, 0.1); }

.reviews-filter-item .review-star {
  color: #777;
  text-shadow: none;
}
.reviews-filter-item .review-star.filled {
  color: #f5b544;
}

/* selected stars in button */
.reviews-filter-btn .review-star {
  color: #777;
}
.reviews-filter-btn .review-star.filled {
  color: #f5b544;
}

/* avatar style */
.review-avatar-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.review-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  object-fit: cover;
}
.review-avatar-img:hover {
  transform: scale(1.06);
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.4);
}
.seller-name {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
  white-space: nowrap;
  color: #f5f5f5;
}
.seller-name:hover {
  color: #ffa500;
  text-shadow: 0 0 6px rgba(255, 165, 0, 0.6);
}
.seller-name.offline-name {
  color: #888;
}

.review-main {
  flex: 1 1 auto;
  min-width: 0;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.review-title-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.review-author-link {
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.review-meta {
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
  opacity: 0.75;
}

.review-meta-item::after {
  content: "·";
  margin-left: 8px;
}

.review-meta-item:last-child::after {
  content: "";
  margin: 0;
}

.review-date {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.7;
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  font-size: 16px;
}

.review-star {
  color: rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 10px rgba(255,165,0,0.15);
}

.review-star.filled {
  color: #f5b544;
}

.review-text {
  margin-top: 8px;
  white-space: pre-wrap;
  word-break: break-word;
}

.review-text.review-empty {
  opacity: 0.5;
}

@media (max-width: 800px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: flex-start;
  }
  .reviews-summary-right {
    align-items: flex-start;
  }
  .reviews-filter-btn {
    min-width: 140px;
  }
}

/* === МОДАЛКА ДЛЯ ОБРЕЗКИ АВАТАРА (УВЕЛИЧЕННАЯ) === */
.crop-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.crop-modal.show {
  display: flex;
}

/* окно кропа — сделано больше */
.crop-window {
  background: #151515;
  border-radius: 16px;
  padding: 24px;
  width: 800px;
  height: 700px;
  max-width: 95vw;
  max-height: 95vh;
  box-shadow: 0 0 30px rgba(255,165,0,0.35);
  display: flex;
  flex-direction: column;
}

.crop-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #ffcc66;
}

/* область с изображением */
.crop-image-wrapper {
  flex: 1;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.crop-image {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* кнопки снизу */
.crop-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.crop-btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.crop-btn.cancel {
  background: #333;
  color: #eee;
}

.crop-btn.cancel:hover {
  background: #444444;
}

.crop-btn:not(.cancel) {
  background: rgb(255, 165, 0);
  color: #000;
}

.crop-btn:not(.cancel):hover {
  background: #d18800;
  transform: scale(1.03);
}

.crop-btn:hover {
  filter: brightness(1.05);
}

/* === АДАПТИВ === */
@media (max-width: 900px) {
  .file-name { max-width: 200px; }

  .crop-window {
    width: 90vw;
    height: 75vh;
  }
}

@media (max-width: 768px) {
  .profile-header { flex-direction: column; text-align: center; }
  .profile-avatar-flag-btn {
    top: 2px;
    right: 2px;
    width: 26px;
    height: 26px;
    font-size: 15px;
  }
  .file-upload { flex-wrap: wrap; gap: 8px; }
}

/* На телефонах — 2 колонки: описание (с платформой) + цена */
@media (max-width: 700px) {
  .offers-header,
  .offer-card-link {
    grid-template-columns: 2fr 1fr;
  }

  /* в шапке скрываем колонку "Платформа" */
  .offers-header .cell:nth-child(1) {
    display: none;
  }
  .offers-header .cell:nth-child(2) {
    grid-column: 1;
  }
  .offers-header .cell:nth-child(3) {
    grid-column: 2;
  }

  /* в строках скрываем отдельную колонку платформы */
  .cell-platform {
    display: none;
  }
  .cell-description {
    grid-column: 1;
  }
  .price-cell {
    grid-column: 2;
  }

  .mobile-platform {
    display: block;
  }

  .offers-grid .cell {
    padding: 8px 8px;
    font-size: 13px;
  }

  .offer-edit-btn {
    top: -10px;
    right: -10px;
    transform: scaleX(-1);
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .upload-btn { display: inline-block; margin-top: 8px; }
  .edit-avatar-text { display: inline-block; margin-bottom: 6px; }
}

/* === СВЕТЛАЯ ТЕМА (Light Mode) === */
body.light-theme .edit-avatar-text {
  color: #000;
}

body.light-theme .nickname {
  color: #000;
}

body.light-theme .file-btn {
  background-color: white;
  color: #000;
  border: 1px solid #bbb;
}

body.light-theme .file-field {
  background-color: white;
  border: 1px solid #bbb;
}

body.light-theme .file-btn:hover {
  background: #c2c2c2;
  transition: 0.1s;
}

body.light-theme .file-name {
  color: #8b8b8b;
}

body.light-theme .upload-btn {
  background-color: white;
  border: 1px solid #bbb;
}

body.light-theme .upload-btn:hover {
  text-shadow: none;
  background: #c2c2c2;
  transition: 0.1s;
}

body.light-theme .profile-section {
  border: 1px solid #bbb;
}

body.light-theme .profile-section h3 {
  color: #000;
}

body.light-theme .profile-section h2 {
  color: #000;
}

body.light-theme .game-title {
  color: #000;
  text-shadow: none;
}

body.light-theme .category-title {
  color: #000;
  text-shadow: none;
}

body.light-theme .review-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

body.light-theme .review-star {
  color: #cfcfcf;
}

body.light-theme .review-star.filled {
  color: #f2c200;
  text-shadow: none;
}

body.light-theme .review-text {
  color: #000;
}

body.light-theme .seller-name {
  color: #111;
}

body.light-theme .seller-name:hover {
  color: #d38a00;
  text-shadow: none;
}

body.light-theme .review-meta {
  color: #000;
  opacity: 0.7;
}

body.light-theme .reviews-score-num,
body.light-theme .reviews-score-sub,
body.light-theme .reviews-total {
  color: #000;
}

body.light-theme .reviews-summary {
  border-bottom-color: #ddd;
}

body.light-theme .reviews-filter-btn {
  background: #f3f3f3;
  color: #111;
  border-color: #d6d6d6;
}

body.light-theme .reviews-filter-menu {
  background: #fff;
  border-color: #bebebe;
}

body.light-theme .reviews-filter-item {
  color: #111;
}

body.light-theme .reviews-filter-item:hover {
  background-color: #ebebeb;
  color: #111;
}

body.light-theme .reviews-break-bar {
  background: #d9d9d9;
  border: none;
}

body.light-theme .reviews-filter-item .review-star {
  color: #cfcfcf;
}
body.light-theme .reviews-filter-item .review-star.filled {
  color: #f2c200;
}

body.light-theme .reviews-filter-btn .review-star {
  color: #cfcfcf;
}
body.light-theme .reviews-filter-btn .review-star.filled {
  color: #f2c200;
}

body.light-theme .offers-grid-inner {
  border: 1px solid #bbb;
  background-color: #ffffff;
}

body.light-theme .offers-grid .cell {
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
}

body.light-theme .offer-card:last-child .cell {
  border-bottom: none;
}

body.light-theme .offers-header .cell:last-child,
body.light-theme .offer-card .cell:last-child {
  border-right: none;
}

body.light-theme .cell-header {
  background: #c2c2c2;
  color: #000;
}

body.light-theme .price-cell {
  color: #000;
}

body.light-theme .offer-card:hover .cell {
  background: #e0e0e0;
  transition: 0.1s;
}

body.light-theme .no_offers {
  color: #000;
}

body.light-theme .offers-grid a .cell {
  color: #000;
}

body.light-theme .no_reviews {
  color: #000;
}

body.light-theme .crop-window {
  background: #ffffff;
  box-shadow: none;
}

body.light-theme .crop-image-wrapper {
  border: none;
}

body.light-theme .cropper-crop {
  box-shadow: none;
}

body.light-theme .crop-title {
  color: #000;
}

body.light-theme .crop-btn.cancel {
  background: #ddd;
  color: #000;
  border: 1px solid #bbb;
}

body.light-theme .crop-btn.cancel:hover {
  background: #bbb;
}

body.light-theme .profile-avatar {
  box-shadow: none;
}

body.light-theme .profile-avatar-flag-btn {
  background: #fff0f0;
  color: #b74646;
  border-color: #e3aaaa;
}

body.light-theme .profile-avatar-flag-btn:hover {
  background: #ffe3e3;
  color: #9b3333;
  border-color: #d59191;
}

body.light-theme .upload-btn:hover {
  box-shadow: none;
}

body.light-theme .profile-report-close {
  background: #f3f3f3;
  border-color: #bbb;
  color: #111;
}

body.light-theme .profile-report-form label {
  color: #222;
}

body.light-theme .profile-report-form textarea {
  background: #fff;
  color: #111;
  border-color: #cfcfcf;
}

body.light-theme .profile-report-field-label {
  color: #222;
}

body.light-theme .profile-report-reason-display {
  background: #fff;
  color: #666;
  border-color: #cfcfcf;
}

body.light-theme .profile-report-reason-display.has-value {
  color: #111;
}

body.light-theme .profile-report-reason-options {
  background: #fff;
  border-color: #cfcfcf;
}

body.light-theme .profile-report-reason-options button {
  color: #b27a00;
}

body.light-theme .profile-report-reason-options button + button {
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .profile-report-reason-options button:hover {
  background: rgba(245, 181, 68, 0.12);
}

body.light-theme .profile-report-limit-progress {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.06);
}

body.light-theme .profile-report-limit-counter {
  color: #808080;
}

body.light-theme .profile-report-actions {
  background: transparent;
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .profile-report-photo-slot {
  background: #fbfbfb;
  border-color: rgba(0, 0, 0, 0.2);
}

body.light-theme .profile-report-photo-plus {
  color: #b27a00;
}

body.light-theme .profile-report-attach-hint {
  color: #666;
}
