/* ============================================================
   Curation System — Episode Grid States
   pending | curated | reviewed
   ============================================================ */

/* --- Lock icon (curated + reviewed) --- */
.ep-item--locked {
  position: relative;
}

.ep-item--locked::after {
  content: "\f023";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 2px;
  left: 2px;
  font-size: 8px;
  line-height: 1;
  pointer-events: none;
  opacity: 0.8;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  z-index: 2;
}

/* Reviewed: checkmark icon */
.ep-item--locked[data-status="reviewed"]::after {
  content: "\f00c";
}

/* --- Pending state (subtle pulse for new episodes) --- */
.ep-item[data-status="pending"] {
  animation: curation-pulse 2.5s ease-in-out infinite;
}

@keyframes curation-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb, 99, 102, 241), 0); }
  50% { box-shadow: 0 0 0 2px rgba(var(--accent-rgb, 99, 102, 241), 0.25); }
}

/* Disable pulse when grid has many items (>70 visible) */
.episode-grid .ep-item:nth-child(n+71) {
  animation: none;
}

/* --- Curation Progress Bar --- */
.curation-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.curation-progress__bar {
  flex: 1;
  height: 6px;
  background: var(--bg3, #1a1a2e);
  border-radius: 3px;
  overflow: hidden;
}

.curation-progress__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #00a640, #00c853);
  transition: width 0.4s ease;
}

.curation-progress__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted, #888);
  white-space: nowrap;
}

/* --- Curation Stats (below grid) --- */
.curation-stats {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.curation-stats__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted, #888);
}

.curation-stats__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.curation-stats__dot--curated {
  background: #00a640;
}

.curation-stats__dot--pending {
  background: var(--bg3, #333);
}

.curation-stats__dot--reviewed {
  background: #2196f3;
}

/* --- CTA Button (Quero ajudar) --- */
.curation-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent, #6366f1);
  background: rgba(var(--accent-rgb, 99, 102, 241), 0.1);
  border: 1px solid rgba(var(--accent-rgb, 99, 102, 241), 0.25);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Nunito", sans-serif;
}

.curation-cta:hover {
  background: rgba(var(--accent-rgb, 99, 102, 241), 0.18);
  border-color: rgba(var(--accent-rgb, 99, 102, 241), 0.4);
  transform: translateY(-1px);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 780px) {
  .ep-item--locked::after {
    font-size: 7px;
    top: 1px;
    left: 1px;
  }

  .curation-progress {
    gap: 8px;
  }

  .curation-stats {
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .ep-item--locked::after {
    font-size: 6px;
  }

  .curation-cta {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ============================================================
   Curation Modal
   ============================================================ */

.curation-modal {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: none;
}

.curation-modal.is-open {
  display: block;
}

.curation-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.curation-modal__dialog {
  position: relative;
  width: min(480px, calc(100% - 16px));
  margin: 22px auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg2);
  padding: 16px;
  max-height: calc(100vh - 44px);
  overflow-y: auto;
}

.curation-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.curation-modal__head h3 {
  font-family: "Outfit", "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.curation-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(6, 12, 22, 0.8);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.curation-modal__close:hover {
  border-color: var(--accent);
}

.curation-modal__episode-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(var(--accent-rgb, 99, 102, 241), 0.12);
  margin-bottom: 12px;
}

.curation-modal__form {
  display: grid;
  gap: 10px;
}

.curation-modal__field {
  display: grid;
  gap: 5px;
}

.curation-modal__field span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-family: "Nunito", sans-serif;
}

.curation-modal__field input,
.curation-modal__field select,
.curation-modal__field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(6, 12, 22, 0.9);
  color: var(--text);
  padding: 9px 10px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  resize: vertical;
}

.curation-modal__field input:focus,
.curation-modal__field select:focus,
.curation-modal__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.curation-modal__msg {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.curation-modal__msg--error {
  background: rgba(var(--danger-rgb, 248, 113, 113), 0.12);
  color: #ffc5cc;
  border: 1px solid rgba(var(--danger-rgb, 248, 113, 113), 0.3);
}

.curation-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

.curation-modal__btn {
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(6, 12, 22, 0.9);
  color: var(--text);
  padding: 8px 14px;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.curation-modal__btn--primary {
  border-color: rgba(0, 166, 64, 0.7);
  background: rgba(0, 166, 64, 0.15);
  color: #b8f5d0;
}

.curation-modal__btn--primary:hover {
  background: rgba(0, 166, 64, 0.25);
}

.curation-modal__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

body.curation-modal-open {
  overflow: hidden;
}

/* ============================================================
   Curation Details Modal
   ============================================================ */

.curation-details {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}

.curation-details__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.curation-details__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  min-width: 60px;
  padding-top: 2px;
}

.curation-details__value {
  font-size: 14px;
  color: var(--text);
}

.curation-details__value--note {
  color: var(--text-muted);
  font-style: italic;
}

.curation-details__curator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.curation-details__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.curation-details__type {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.curation-details__type--canon {
  background: rgba(0, 166, 64, 0.15);
  color: #00c853;
}

.curation-details__type--mixed {
  background: rgba(255, 202, 41, 0.15);
  color: #ffca29;
}

.curation-details__type--filler {
  background: rgba(255, 49, 41, 0.15);
  color: #ff6b6b;
}

.curation-details__type--special {
  background: rgba(var(--accent-rgb, 99, 102, 241), 0.12);
  color: var(--accent);
}

.curation-details__status {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.curation-details__status--curated {
  background: rgba(0, 166, 64, 0.15);
  color: #00c853;
}

.curation-details__status--reviewed {
  background: rgba(33, 150, 243, 0.15);
  color: #2196f3;
}

/* ============================================================
   Skeleton Loader
   ============================================================ */

[hidden] { display: none !important; }

.skeleton {
  background: linear-gradient(90deg, var(--bg3, #1a1a2e) 25%, rgba(255,255,255,0.06) 50%, var(--bg3, #1a1a2e) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 6px;
}

.skeleton--circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skeleton--text {
  width: 100%;
  height: 14px;
}

.skeleton--text-sm {
  width: 60%;
  height: 14px;
}

.skeleton--badge {
  width: 80px;
  height: 20px;
}

/* skeleton-shimmer keyframe — defined in animations.css */

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
  }
}

/* ============================================================
   Responsive — Modal
   ============================================================ */

@media (max-width: 780px) {
  .curation-modal__dialog {
    margin: 12px auto;
    padding: 14px;
  }

  .curation-details__row {
    flex-direction: column;
    gap: 4px;
  }

  .curation-details__label {
    min-width: auto;
  }
}

@media (max-width: 680px) {
  .curation-modal__dialog {
    width: min(400px, calc(100% - 12px));
    margin: 8px auto;
    padding: 12px;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .curation-progress__fill {
    transition: none;
  }

  .curation-cta {
    transition: none;
  }
}

/* ============================================================
   Review Footer (Details Modal)
   ============================================================ */

.curation-details__footer {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 8px;
}

.curation-details__review-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent, #6366f1);
  background: rgba(var(--accent-rgb, 99, 102, 241), 0.1);
  border: 1px solid rgba(var(--accent-rgb, 99, 102, 241), 0.25);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Nunito", sans-serif;
}

.curation-details__review-btn:hover {
  background: rgba(var(--accent-rgb, 99, 102, 241), 0.18);
  border-color: rgba(var(--accent-rgb, 99, 102, 241), 0.4);
  transform: translateY(-1px);
}

.curation-details__review-pending {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted, #888);
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 8px;
}

.curation-details__review-pending i {
  color: #fbbf24;
}

.curation-details__review-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.curation-details__review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* ============================================
   RANKING PAGE
   ============================================ */

.ranking-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px 80px;
}

.ranking-hero {
  text-align: center;
  margin-bottom: 32px;
}

.ranking-hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.ranking-hero h1 i {
  color: #fbbf24;
  margin-right: 8px;
}

.ranking-hero p {
  color: var(--text-muted);
  margin: 0;
}

.ranking-board {
  background: rgba(var(--bg2-rgb, 26, 26, 46), 0.65);
  border-radius: 12px;
  padding: 16px;
}

.ranking-loading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 50px 1fr 100px 100px 80px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}

.ranking-row:hover:not(.ranking-row--header) {
  background: rgba(255, 255, 255, 0.05);
}

.ranking-row--header {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.ranking-row--gold {
  background: rgba(251, 191, 36, 0.1);
}

.ranking-row--silver {
  background: rgba(192, 192, 192, 0.1);
}

.ranking-row--bronze {
  background: rgba(205, 127, 50, 0.1);
}

.ranking-col--rank {
  text-align: center;
  font-weight: 700;
}

.ranking-col--user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ranking-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.ranking-avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, #6366f1);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.ranking-name {
  color: var(--text, #fff);
  text-decoration: none;
  font-weight: 600;
}

.ranking-name:hover {
  text-decoration: underline;
}

.ranking-col--level {
  text-align: center;
}

.ranking-col--count {
  text-align: center;
}

.ranking-col--achievements {
  text-align: center;
  color: var(--text-muted);
}

.ranking-col--achievements i {
  color: #fbbf24;
  margin-right: 4px;
}

.ranking-col--reputation {
  text-align: center;
}

.ranking-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold, #f59e0b);
  font-size: 0.85rem;
}

.ranking-stars--none {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.ranking-crown {
  color: var(--gold, #fbbf24);
  font-size: 1.2rem;
}

.ranking-medal--silver {
  color: #c0c0c0;
}

.ranking-medal--bronze {
  color: #cd7f32;
}

.ranking-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--text-muted);
}

.ranking-empty i {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

/* ============================================
   CURATOR LEVEL BADGES
   ============================================ */

.curator-level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.curator-level--bronze {
  background: rgba(205, 127, 50, 0.2);
  color: #cd7f32;
}

.curator-level--prata {
  background: rgba(192, 192, 192, 0.2);
  color: #c0c0c0;
}

.curator-level--ouro {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.curator-level--diamante {
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */

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

.achievement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.achievement--unlocked {
  background: rgba(var(--accent-rgb, 99, 102, 241), 0.1);
  border: 1px solid rgba(var(--accent-rgb, 99, 102, 241), 0.3);
}

.achievement--unlocked i:first-child {
  color: var(--accent, #818cf8);
  font-size: 1.5rem;
}

.achievement--locked {
  background: rgba(var(--bg-rgb), 0.62);
  border: 1px solid var(--border);
  opacity: 0.5;
}

.achievement--locked i:first-child {
  color: var(--text-dim);
  font-size: 1.5rem;
}

.achievement__name {
  font-size: 0.8rem;
  font-weight: 600;
}

.achievement__lock {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  color: var(--text-dim);
}

.achievement__date {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.achievements-recent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.achievement--recent {
  flex-direction: row;
  text-align: left;
  padding: 10px 14px;
}

.achievement--recent i:first-child {
  font-size: 1.2rem;
}

.achievement--recent div {
  display: flex;
  flex-direction: column;
}

/* ============================================
   CURATION PROFILE (Profile Page)
   ============================================ */

.curation-profile__header {
  margin-bottom: 24px;
}

.curation-profile__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.curation-profile__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px;
  background: rgba(var(--bg-rgb), 0.62);
  border-radius: 12px;
}

.curation-profile__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text, #fff);
}

.curation-profile__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.curation-profile__achievements {
  margin-top: 24px;
}

.curation-profile__achievements h3,
.curation-profile__recent h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.curation-profile__recent {
  margin-top: 24px;
}

.profile-empty-text {
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}

/* ============================================
   CURATION DASHBOARD (profile tab)
   ============================================ */

.curation-dash-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.curation-dash-stat {
  background: rgba(var(--bg-rgb), 0.62);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}

.curation-dash-stat__icon {
  font-size: 1.1rem;
  color: var(--accent, #8b5cf6);
  margin-bottom: 6px;
}

.curation-dash-stat__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.curation-dash-stat__max {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.5;
}

.curation-dash-stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.curation-dash-stat__bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.curation-dash-stat__bar-fill {
  height: 100%;
  background: var(--accent, #8b5cf6);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.curation-dash-reputation {
  background: rgba(var(--bg-rgb), 0.62);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}

.curation-dash-reputation h3,
.curation-dash-adopted h3,
.curation-dash-reviews h3,
.curation-dash-achievements h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.curation-dash-reputation h3 i,
.curation-dash-adopted h3 i,
.curation-dash-reviews h3 i,
.curation-dash-achievements h3 i {
  color: var(--accent, #8b5cf6);
}

.curation-dash-reputation__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.curation-dash-reputation__bar-wrap {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.curation-dash-reputation__bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.curation-dash-reputation__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold, #f59e0b), var(--success, #10b981));
  border-radius: 4px;
  transition: width 0.6s ease;
}

.curation-dash-reputation__rate {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  min-width: 45px;
  text-align: right;
}

.curation-dash-reputation__stars {
  font-size: 1.1rem;
}

.curation-dash-reputation__detail {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.curation-dash-adopted {
  margin-bottom: 24px;
}

.curation-dash-anime-grid {
  display: grid;
  gap: 10px;
}

.curation-dash-anime {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: rgba(var(--bg-rgb), 0.62);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.curation-dash-anime:hover {
  background: var(--border);
}

.curation-dash-anime__cover {
  width: 44px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.curation-dash-anime__cover--empty {
  width: 44px;
  height: 60px;
  border-radius: 6px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.curation-dash-anime__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.curation-dash-anime__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.curation-dash-anime__progress {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.curation-dash-anime__role {
  background: rgba(var(--accent-rgb, 139, 92, 246), 0.15);
  color: var(--accent, #8b5cf6);
  font-size: 0.6rem;
  padding: 1px 6px;
  border-radius: 8px;
  margin-left: 4px;
  font-weight: 600;
}

.curation-dash-reviews {
  background: rgba(var(--bg-rgb), 0.62);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 24px;
}

.curation-dash-count {
  background: var(--accent, #8b5cf6);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.curation-dash-empty,
.curation-dash-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.curation-dash-adopted {
  margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 680px) {
  .ranking-row {
    grid-template-columns: 40px 1fr 80px 60px;
    padding: 10px 12px;
  }

  .ranking-col--achievements,
  .ranking-col--reputation {
    display: none;
  }

  .curation-profile__stats {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .curation-dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .curation-dash-anime-grid {
    grid-template-columns: 1fr;
  }

  .curation-dash-anime {
    padding: 8px;
    gap: 8px;
  }

  .curation-dash-anime__cover {
    width: 36px;
    height: 50px;
  }

  .curation-dash-anime__cover--empty {
    width: 36px;
    height: 50px;
  }

  .curation-dash-anime__title {
    font-size: 0.75rem;
  }

  .curation-dash-reputation__content {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.curation-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 99999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.curation-toast--show {
  transform: translateY(0);
  opacity: 1;
}

.curation-toast--achievement {
  background: linear-gradient(135deg, var(--accent2, #6366f1), var(--accent, #8b5cf6));
  color: #fff;
}

.curation-toast--achievement i {
  margin-right: 8px;
  color: var(--gold, #fbbf24);
}
