/* ── Player profile & battle pass ── */
.bp-page {
  --bp-bg: #0d111c;
  --bp-panel: #161d2e;
  --bp-panel-2: #1c253a;
  --bp-border: rgba(58, 76, 120, 0.55);
  --bp-accent: #00c1ce;
  --bp-accent-glow: rgba(0, 193, 206, 0.35);
  --bp-accent-dim: #007a83;
  --bp-gold: #ff9900;
  --bp-gold-glow: rgba(255, 153, 0, 0.3);
  --bp-muted: #8498c4;
  --bp-text: #d6ddeb;
  --bp-unlock: #3ddc97;
  --bp-lock: #26324f;
  --bp-radius: 20px;
  --bp-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.bp-page .panel-box {
  background: transparent;
  border: none;
  padding: 0;
}

/* ── Hero banner ── */
.bp-hero-banner {
  position: relative;
  border-radius: var(--bp-radius);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--bp-border);
  box-shadow: var(--bp-shadow);
}

.bp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #1a2744 0%, #131927 45%, #0d111c 100%);
  pointer-events: none;
}

.bp-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 193, 206, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 153, 0, 0.14), transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(58, 76, 120, 0.06) 48px,
      rgba(58, 76, 120, 0.06) 49px
    );
}

.bp-hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bp-accent), transparent);
  opacity: 0.5;
}

.bp-hero-inner {
  position: relative;
  z-index: 1;
  padding: 28px 24px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 20px 24px;
  align-items: center;
}

.bp-avatar-wrap {
  grid-row: 1 / 3;
  position: relative;
}

.bp-avatar-ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--bp-accent), var(--bp-gold));
  box-shadow: 0 0 28px var(--bp-accent-glow);
}

.bp-avatar-ring .AZ-img-container {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #131927;
}

.bp-avatar-ring .AZ-img-container::after {
  padding-bottom: 100%;
}

.bp-player-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bp-gold), #e67e00);
  border: 2px solid #131927;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--bp-gold-glow);
}

.bp-player-badge span {
  font-size: 18px;
  color: #fff;
}

.bp-hero-info {
  min-width: 0;
}

.bp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-family: "yekanBakh-Bold";
  color: var(--bp-accent);
  background: rgba(0, 193, 206, 0.12);
  border: 1px solid rgba(0, 193, 206, 0.35);
  margin-bottom: 8px;
}

.bp-hero-name {
  font-size: clamp(22px, 4vw, 32px);
  color: #fff;
  font-family: "yekanBakh-Bold";
  margin: 0 0 6px;
  line-height: 1.25;
}

.bp-hero-season {
  font-size: 13px;
  color: var(--bp-muted);
  margin: 0;
}

.bp-quick-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

.bp-quick-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(19, 25, 39, 0.72);
  border: 1px solid var(--bp-border);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.bp-quick-stat:hover {
  border-color: rgba(0, 193, 206, 0.45);
  transform: translateY(-2px);
}

.bp-quick-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.bp-quick-stat-icon.is-cyan {
  background: rgba(0, 193, 206, 0.15);
  color: var(--bp-accent);
}

.bp-quick-stat-icon.is-gold {
  background: rgba(255, 153, 0, 0.15);
  color: var(--bp-gold);
}

.bp-quick-stat-icon.is-green {
  background: rgba(61, 220, 151, 0.15);
  color: var(--bp-unlock);
}

.bp-quick-stat-value {
  font-size: 20px;
  color: #fff;
  font-family: "yekanBakh-Bold-En";
  line-height: 1.1;
}

.bp-quick-stat-label {
  font-size: 11px;
  color: var(--bp-muted);
  margin-top: 2px;
}

/* ── Tabs ── */
.bp-tabs-wrap {
  margin-bottom: 24px;
}

.bp-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 16px;
  background: var(--bp-panel);
  border: 1px solid var(--bp-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.bp-tabs::-webkit-scrollbar {
  display: none;
}

.bp-tab-btn {
  flex: 1;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--bp-muted);
  font-family: "yekanBakh-Bold";
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.bp-tab-btn span.bp-tab-count {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(132, 152, 196, 0.2);
  font-family: "yekanBakh-Bold-En";
}

.bp-tab-btn:hover {
  color: var(--bp-text);
  background: rgba(58, 76, 120, 0.2);
}

.bp-tab-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--bp-accent-dim), #0099a3);
  box-shadow: 0 4px 16px var(--bp-accent-glow);
}

.bp-tab-btn.is-active .bp-tab-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.bp-tab-panel {
  display: none;
  animation: bp-fade-up 0.4s ease;
}

.bp-tab-panel.is-active {
  display: block;
}

@keyframes bp-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Section header ── */
.bp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.bp-section-title {
  font-size: 18px;
  color: #fff;
  font-family: "yekanBakh-Bold";
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bp-section-title::before {
  content: "";
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--bp-accent), var(--bp-accent-dim));
}

.bp-section-sub {
  font-size: 12px;
  color: var(--bp-muted);
  margin: 0;
}

/* ── Battle pass track ── */
.bp-track-card {
  border-radius: var(--bp-radius);
  border: 1px solid var(--bp-border);
  background: var(--bp-panel-2);
  padding: 22px;
  margin-bottom: 20px;
  transition: border-color 0.25s;
}

.bp-track-card:hover {
  border-color: rgba(0, 193, 206, 0.35);
}

.bp-track-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.bp-track-title {
  font-size: 20px;
  color: var(--bp-accent);
  font-family: "yekanBakh-Bold";
  margin: 0 0 4px;
}

.bp-track-desc {
  font-size: 13px;
  color: var(--bp-muted);
  margin: 0;
  max-width: 420px;
}

.bp-track-score-pill {
  text-align: center;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(0, 193, 206, 0.1);
  border: 1px solid rgba(0, 193, 206, 0.3);
}

.bp-track-score-pill .value {
  font-size: 26px;
  color: #fff;
  font-family: "yekanBakh-Bold-En";
  line-height: 1;
}

.bp-track-score-pill .label {
  font-size: 10px;
  color: var(--bp-muted);
  margin-top: 4px;
}

.bp-pass-scroll {
  overflow-x: auto;
  margin: 20px -8px 0;
  padding: 8px 8px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--bp-accent-dim) transparent;
}

.bp-pass-scroll::-webkit-scrollbar {
  height: 4px;
}

.bp-pass-scroll::-webkit-scrollbar-thumb {
  background: var(--bp-accent-dim);
  border-radius: 4px;
}

.bp-pass-lane {
  position: relative;
  min-width: min(100%, 520px);
  padding-top: 8px;
}

.bp-pass-rail {
  position: absolute;
  top: 34px;
  left: 24px;
  right: 24px;
  height: 8px;
  border-radius: 999px;
  background: var(--bp-lock);
  overflow: hidden;
}

.bp-pass-rail-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bp-accent-dim), var(--bp-accent), #5eead4);
  box-shadow: 0 0 12px var(--bp-accent-glow);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.bp-pass-nodes {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
  min-width: 480px;
}

.bp-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100px;
}

.bp-node-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--bp-border);
  background: var(--bp-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bp-node-marker span {
  font-size: 18px;
  color: var(--bp-muted);
}

.bp-node.is-unlocked .bp-node-marker {
  border-color: var(--bp-accent);
  background: linear-gradient(145deg, var(--bp-accent-dim), var(--bp-accent));
  box-shadow: 0 0 20px var(--bp-accent-glow);
}

.bp-node.is-unlocked .bp-node-marker span {
  color: #fff;
}

.bp-node.is-next .bp-node-marker {
  border-color: var(--bp-gold);
  background: rgba(255, 153, 0, 0.15);
  animation: bp-pulse 2s ease-in-out infinite;
}

.bp-node.is-next .bp-node-marker span {
  color: var(--bp-gold);
}

.bp-node.is-locked .bp-node-marker {
  opacity: 0.5;
}

.bp-node-points {
  font-size: 11px;
  color: var(--bp-muted);
  margin-top: 10px;
  font-family: "yekanBakh-Bold-En";
}

.bp-node-title {
  font-size: 11px;
  color: var(--bp-text);
  margin-top: 4px;
  line-height: 1.35;
}

.bp-node.is-unlocked .bp-node-title {
  color: var(--bp-accent);
}

.bp-rewards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.bp-reward-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--bp-border);
  background: rgba(13, 17, 28, 0.6);
  position: relative;
  overflow: hidden;
}

.bp-reward-card.is-unlocked {
  border-color: rgba(0, 193, 206, 0.4);
  background: linear-gradient(135deg, rgba(0, 122, 131, 0.15), rgba(13, 17, 28, 0.8));
}

.bp-reward-card.is-unlocked::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--bp-accent-glow), transparent 70%);
  pointer-events: none;
}

.bp-reward-card.is-locked {
  opacity: 0.7;
}

.bp-reward-card.is-next {
  border-color: var(--bp-gold);
  box-shadow: 0 0 0 1px rgba(255, 153, 0, 0.2);
}

.bp-reward-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-family: "yekanBakh-Bold";
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.bp-reward-badge.unlocked {
  color: var(--bp-unlock);
  background: rgba(61, 220, 151, 0.15);
}

.bp-reward-badge.locked {
  color: var(--bp-muted);
  background: rgba(132, 152, 196, 0.12);
}

.bp-reward-badge.next {
  color: var(--bp-gold);
  background: rgba(255, 153, 0, 0.15);
}

.bp-reward-title {
  font-size: 15px;
  color: #fff;
  font-family: "yekanBakh-Bold";
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bp-reward-desc {
  font-size: 12px;
  color: var(--bp-muted);
  margin: 0;
  line-height: 1.5;
}

.bp-code-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0d111c;
  border: 1px dashed var(--bp-accent);
  color: var(--bp-accent);
  font-family: "yekanBakh-Bold-En";
  font-size: 16px;
  letter-spacing: 0.08em;
}

.bp-code-box button {
  flex-shrink: 0;
}

/* ── Comments grid ── */
.bp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.bp-review-card {
  border-radius: var(--bp-radius);
  border: 1px solid var(--bp-border);
  background: var(--bp-panel-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow);
  border-color: rgba(0, 193, 206, 0.4);
}

.bp-review-media {
  position: relative;
  display: block;
  text-decoration: none;
}

.bp-review-media .AZ-img-container::after {
  padding-bottom: 56%;
}

.bp-review-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 17, 28, 0.95) 100%);
  pointer-events: none;
}

.bp-review-media-title {
  position: absolute;
  bottom: 12px;
  right: 14px;
  left: 14px;
  font-size: 15px;
  color: #fff;
  font-family: "yekanBakh-Bold";
  margin: 0;
  z-index: 1;
}

.bp-review-play {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 193, 206, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  z-index: 1;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s ease;
}

.bp-review-card:hover .bp-review-play {
  opacity: 1;
  transform: scale(1);
}

.bp-review-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bp-review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.bp-review-stars span {
  font-size: 13px;
  color: var(--bp-gold);
}

.bp-review-rating-num {
  font-size: 12px;
  color: var(--bp-muted);
  margin-right: 6px;
  font-family: "yekanBakh-Bold-En";
}

.bp-review-text {
  font-size: 14px;
  color: var(--bp-text);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bp-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--bp-border);
}

.bp-review-date {
  font-size: 11px;
  color: var(--bp-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.bp-review-link {
  font-size: 12px;
  color: var(--bp-accent);
  text-decoration: none;
  font-family: "yekanBakh-Bold";
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.bp-review-link:hover {
  color: #fff;
}

/* ── Timeline history ── */
.bp-timeline {
  position: relative;
  padding-right: 24px;
}

.bp-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 7px;
  width: 2px;
  background: linear-gradient(180deg, var(--bp-accent), var(--bp-border));
  border-radius: 2px;
}

.bp-timeline-item {
  position: relative;
  padding: 0 0 20px 0;
  padding-right: 28px;
}

.bp-timeline-item:last-child {
  padding-bottom: 0;
}

.bp-timeline-dot {
  position: absolute;
  right: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bp-panel-2);
  border: 2px solid var(--bp-accent);
  z-index: 1;
}

.bp-timeline-item.is-negative .bp-timeline-dot {
  border-color: #ff4242;
}

.bp-timeline-card {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--bp-border);
  background: rgba(13, 17, 28, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.2s;
}

.bp-timeline-card:hover {
  border-color: rgba(0, 193, 206, 0.35);
}

.bp-timeline-rank {
  font-size: 14px;
  color: #fff;
  font-family: "yekanBakh-Bold";
  margin: 0 0 2px;
}

.bp-timeline-room {
  font-size: 12px;
  color: var(--bp-muted);
  margin: 0 0 4px;
}

.bp-timeline-time {
  font-size: 11px;
  color: #5c75b0;
}

.bp-timeline-points {
  font-size: 18px;
  font-family: "yekanBakh-Bold-En";
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 10px;
}

.bp-timeline-points.positive {
  color: var(--bp-unlock);
  background: rgba(61, 220, 151, 0.12);
}

.bp-timeline-points.negative {
  color: #ff6b6b;
  background: rgba(255, 66, 66, 0.12);
}

/* ── Empty state ── */
.bp-empty {
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--bp-radius);
  border: 1px dashed var(--bp-border);
  background: rgba(22, 29, 46, 0.5);
}

.bp-empty-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(58, 76, 120, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-empty-icon-wrap span {
  font-size: 32px;
  color: var(--bp-muted);
}

.bp-empty h3 {
  font-size: 18px;
  color: #fff;
  font-family: "yekanBakh-Bold";
  margin: 0 0 8px;
}

.bp-empty p {
  font-size: 13px;
  color: var(--bp-muted);
  margin: 0;
  max-width: 360px;
  margin-inline: auto;
}

/* ── Season strip ── */
.bp-season-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, rgba(0, 122, 131, 0.2), rgba(22, 29, 46, 0.8));
  border: 1px solid rgba(0, 193, 206, 0.25);
}

.bp-season-strip-title {
  font-size: 15px;
  color: #fff;
  font-family: "yekanBakh-Bold";
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bp-season-strip-title span {
  color: var(--bp-accent);
}

.bp-season-dates {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "yekanBakh-Regular";
}

@keyframes bp-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 153, 0, 0);
  }
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .bp-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
  }

  .bp-avatar-wrap {
    grid-row: auto;
    justify-self: center;
  }

  .bp-quick-stats {
    grid-column: 1;
  }

  .bp-pass-nodes {
    min-width: 420px;
  }

  .bp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .bp-tab-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .bp-hero-inner {
    padding: 32px 32px 28px;
  }
}

/* ── Public player profile ── */
.pp-public-page .panel-box {
  background: var(--bp-panel);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 24px;
  margin-bottom: 24px;
}

.pp-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.pp-item-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--bp-border);
  background: var(--bp-panel-2);
}

.pp-item-card.is-unlocked {
  border-color: rgba(61, 220, 151, 0.35);
}

.pp-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 193, 206, 0.12);
  color: var(--bp-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.pp-item-title {
  font-size: 14px;
  color: #fff;
  margin: 0 0 4px;
  font-family: "yekanBakh-Bold", sans-serif;
}

.pp-item-desc {
  font-size: 12px;
  color: var(--bp-muted);
  margin: 0 0 6px;
}

.pp-item-points {
  font-size: 11px;
  color: var(--bp-unlock);
}

.pp-review-type {
  display: inline-block;
  font-size: 11px;
  color: var(--bp-accent);
  margin-bottom: 8px;
}

.pp-comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pp-comment-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--bp-border);
  background: var(--bp-panel-2);
}

.pp-comment-game-img {
  width: 90px;
  min-width: 90px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.pp-comment-body {
  flex: 1;
  min-width: 0;
}

.pp-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.pp-comment-game-name {
  display: block;
  font-size: 15px;
  color: #fff;
  font-family: "yekanBakh-Bold", sans-serif;
  text-decoration: none;
  margin-bottom: 4px;
}

.pp-comment-title {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}

.pp-comment-text {
  font-size: 13px;
  color: var(--bp-text);
  line-height: 1.7;
  margin: 0 0 10px;
}

.pp-comment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .pp-comment-item {
    flex-direction: column;
  }

  .pp-comment-game-img {
    width: 100%;
    height: 160px;
  }
}

.pp-avatar-picker-title {
  font-size: 14px;
  color: var(--bp-text);
  margin-bottom: 12px;
}

.pp-avatar-picker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pp-avatar-picker-form {
  margin: 0;
}

.pp-avatar-picker-item {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--bp-border);
  background: var(--bp-panel-2);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pp-avatar-picker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pp-avatar-picker-item.is-active {
  border-color: #ff6c00;
  box-shadow: 0 0 0 2px rgba(255, 108, 0, 0.25);
}

.pp-avatar-picker-item:hover {
  border-color: #00c1ce;
}
