.drawer-item-ic--emoji {
  font-size: 22px;
  line-height: 1;
}
  padding: 0 14px 24px;
}

.achievements-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 14px;
}

.achievements-page-title {
  flex: 1;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #e2e8f0;
}

.journey-hero-card {
  padding: 18px 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(14, 116, 144, 0.22), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(56, 189, 248, 0.28);
  text-align: center;
  margin-bottom: 14px;
}

.journey-rank-emoji {
  font-size: 42px;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.journey-rank-label {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #7dd3fc;
}

.journey-rank-sub {
  margin: 6px 0 0;
  font-size: 11px;
  color: #94a3b8;
}

.journey-progress-wrap {
  margin-top: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.journey-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #22d3ee);
  transition: width 0.4s ease;
}

.journey-next-rank,
.journey-points-needed,
.journey-max-rank {
  margin: 8px 0 0;
  font-size: 11px;
  color: #cbd5e1;
}

.journey-max-rank {
  color: #fde68a;
  font-weight: 700;
}

.journey-tiers-title,
.achievements-grid-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: #e2e8f0;
}

.journey-tiers-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.journey-tier-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.journey-tier-row.is-current {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(14, 116, 144, 0.18);
}

.journey-tier-row.is-reached:not(.is-current) {
  opacity: 0.85;
}

.journey-tier-row.is-locked {
  opacity: 0.5;
}

.journey-tier-emoji {
  font-size: 22px;
  flex-shrink: 0;
}

.journey-tier-body {
  flex: 1;
  min-width: 0;
}

.journey-tier-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
}

.journey-tier-points {
  font-size: 10px;
  color: #94a3b8;
}

.journey-tier-state {
  font-size: 14px;
  color: #38bdf8;
  flex-shrink: 0;
}

.achievements-grid-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.achievements-progress {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
}

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

.achievement-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(16, 185, 129, 0.22);
  min-height: 118px;
}

.achievement-card--locked {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.55);
}

.achievement-card-emoji {
  font-size: 24px;
  line-height: 1;
}

.achievement-card-title {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: #e2e8f0;
}

.achievement-card-desc {
  margin: 0;
  flex: 1;
  font-size: 10px;
  line-height: 1.35;
  color: #94a3b8;
}

.achievement-card-reward {
  font-size: 10px;
  font-weight: 700;
  color: #6ee7b7;
}

.achievements-status {
  margin: 0 0 12px;
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

.profile-journey-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 12px;
  background: rgba(14, 116, 144, 0.15);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.profile-journey-btn:active {
  transform: scale(0.98);
}

.profile-recent-achievements {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.profile-achievement-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 16px;
}

.profile-whale-rank--clickable {
  cursor: pointer;
}

.profile-whale-rank--clickable:active {
  opacity: 0.85;
}

@media (max-width: 360px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}
