:root {
  --primary: #6200ea;
  --primary-light: #9d46ff;
  --primary-dark: #0a0e23;
  --success: #10b981;
  --warning: #ffab00;
  --danger: #ff3d00;
  --neutral: #757575;
  --partial: #00b8d4;
  --coming: #7c4dff;
  --rlai: #F97316;
  --perm-color: #00b8d4;
  --temp-color: #9d46ff;
  --background: #0a0e1a;
  --card-bg: rgba(26, 31, 75, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: rgba(0, 0, 0, 0.3);
  --text: #ffffff;
  --text-secondary: #a0aec0;
  --border-radius: 16px;
  --border-radius-sm: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #080810;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
  padding-top: 30px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(0, 200, 255, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(180, 90, 255, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 40% 40%, rgba(255, 130, 40, 0.05) 0%, transparent 20%),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 24px 24px;
}

body::after {
  display: none;
}

.glass {
  background: rgba(15, 20, 40, 0.4);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px var(--glass-shadow);
}

main {
  max-width: 900px;
  width: 100%;
  margin: 40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background: rgba(15, 20, 40, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.back-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(-4px);
  background: rgba(20, 25, 50, 0.6);
}

.back-link svg {
  transition: transform 0.3s ease;
}

.back-link:hover svg {
  transform: translateX(-3px);
}

.dashboard-header {
  margin-bottom: 24px;
  text-align: center;
}

.dashboard-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #a0aec0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dashboard-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 400;
}

.filter-section {
  margin-bottom: 32px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-radius: var(--border-radius);
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(15, 20, 40, 0.5);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 30px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  will-change: background, border-color, color;
}

.filter-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.filter-tab.active {
  background: linear-gradient(135deg, rgba(98, 0, 234, 0.3) 0%, rgba(157, 70, 255, 0.15) 100%);
  border-color: var(--primary);
  color: var(--text);
}

.filter-tab.active[data-filter="permanent"] {
  background: linear-gradient(135deg, rgba(0, 184, 212, 0.3) 0%, rgba(0, 184, 212, 0.1) 100%);
  border-color: var(--perm-color);
  color: var(--perm-color);
}

.filter-tab.active[data-filter="temp"] {
  background: linear-gradient(135deg, rgba(157, 70, 255, 0.3) 0%, rgba(157, 70, 255, 0.1) 100%);
  border-color: var(--temp-color);
  color: var(--temp-color);
}

.filter-tab.active[data-filter="rlai"] {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(249, 115, 22, 0.1) 100%);
  border-color: var(--rlai);
  color: var(--rlai);
}

.filter-tab.active[data-filter="other"] {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-color: var(--success);
  color: var(--success);
}

.tab-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}

.tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  transform: translateZ(0);
}

.tab-icon svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.tab-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-tab.active .tab-count {
  background: var(--primary);
}

.filter-tab.active[data-filter="permanent"] .tab-count {
  background: var(--perm-color);
}

.filter-tab.active[data-filter="temp"] .tab-count {
  background: var(--temp-color);
}

.filter-tab.active[data-filter="rlai"] .tab-count {
  background: var(--rlai);
}

.filter-tab.active[data-filter="other"] .tab-count {
  background: var(--success);
}

.timeline-container {
  position: relative;
}

.changelog-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  will-change: contents;
}

.changelog-list.fading-out {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.changelog-list.fading-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.changelog-card {
  position: relative;
  border-radius: var(--border-radius);
  padding: 24px;
  padding-left: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(16px);
  background: rgba(15, 20, 40, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  will-change: transform, opacity;
  contain: layout style;
}

.changelog-card.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.changelog-card.no-animation {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

body.hash-link .changelog-card {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

.changelog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary) 50%, transparent 100%);
}

.changelog-card.permanent::before {
  background: linear-gradient(180deg, var(--perm-color) 0%, var(--perm-color) 50%, transparent 100%);
}

.changelog-card.temp::before {
  background: linear-gradient(180deg, var(--temp-color) 0%, var(--temp-color) 50%, transparent 100%);
}

.changelog-card.rlai::before {
  background: linear-gradient(180deg, var(--rlai) 0%, var(--rlai) 50%, transparent 100%);
}

.changelog-card.other::before {
  background: linear-gradient(180deg, var(--success) 0%, var(--success) 50%, transparent 100%);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.changelog-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(20, 25, 50, 0.7);
}

.changelog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.changelog-header-left {
  display: flex;
  flex-direction: column;
}

.changelog-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.changelog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.share-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-family: inherit;
}

.share-link-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  transform: scale(1.02);
}

.share-link-btn.copied {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(16, 185, 129, 0.9);
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.highlight-card {
  animation: highlightPulse 3s ease-out;
}

@keyframes highlightPulse {
  0%, 20%, 40% {
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 0 4px rgba(255, 255, 255, 0.4),
      0 0 30px rgba(255, 255, 255, 0.3),
      0 15px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
  }
  10%, 30% {
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 0 2px rgba(255, 255, 255, 0.2),
      0 0 15px rgba(255, 255, 255, 0.15),
      0 15px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 15px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.08);
  }
}

.changelog-type {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.changelog-type.permanent {
  background: rgba(0, 184, 212, 0.15);
  color: var(--perm-color);
  border: 1px solid rgba(0, 184, 212, 0.3);
}

.changelog-type.temp {
  background: rgba(157, 70, 255, 0.15);
  color: var(--temp-color);
  border: 1px solid rgba(157, 70, 255, 0.3);
}

.changelog-type.rlai {
  background: rgba(249, 115, 22, 0.15);
  color: var(--rlai);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.changelog-type.other {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.type-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.type-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  transform: translateZ(0);
}

.type-icon svg {
  width: 14px;
  height: 14px;
}

.type-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.type-link:hover {
  opacity: 0.8;
}

.changelog-version {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  font-family: monospace;
}

.changelog-date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.date-relative {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.date-full {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.changelog-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  color: var(--text);
}

.changelog-highlight {
  background: rgba(255, 171, 0, 0.08);
  border: 1px solid rgba(255, 171, 0, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  margin-bottom: 24px;
}

.highlight-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--warning);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--warning);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 171, 0, 0.5);
}

.highlight-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.changelog-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 16px;
  position: relative;
}

.changelog-notes::before {
  content: 'UPDATE NOTES';
  position: absolute;
  top: -9px;
  left: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(15, 20, 40, 1) 0%, rgba(20, 25, 50, 1) 100%);
  padding: 0 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.note-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--perm-color);
  border-radius: 2px;
  margin-top: 5px;
  box-shadow: 0 0 6px rgba(0, 184, 212, 0.4);
}

.changelog-card.temp .note-bullet {
  background: var(--temp-color);
  box-shadow: 0 0 6px rgba(157, 70, 255, 0.4);
}

.changelog-card.rlai .note-bullet {
  background: var(--rlai);
  box-shadow: 0 0 6px rgba(249, 115, 22, 0.4);
}

.changelog-card.other .note-bullet {
  background: var(--success);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.note-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.note-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}

.changelog-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 8px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  color: var(--success);
}

.footer-icon svg {
  width: 12px;
  height: 12px;
}

.footer-text {
  font-size: 11px;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.load-more-btn {
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid rgba(98, 0, 234, 0.5);
  background: rgba(98, 0, 234, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary-light);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.load-more-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98, 0, 234, 0.4);
}

.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  gap: 16px;
  color: var(--text-secondary);
  background: rgba(15, 20, 40, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.no-results svg {
  opacity: 0.4;
}

.no-results p {
  font-size: 15px;
}

.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeOutSmooth 0.4s ease-out forwards 1.5s;
  will-change: opacity;
}

@keyframes fadeOutSmooth {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.intro-logo {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 50px rgba(98, 0, 234, 0.5);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8);
  animation: logoAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
}

@keyframes logoAppear {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.intro-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: imgFadeIn 0.3s ease-out forwards 0.4s;
}

@keyframes imgFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.intro-logo::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(45deg) translateX(-200%);
  animation: smoothShine 0.8s ease-out forwards 0.6s;
}

@keyframes smoothShine {
  0% {
    transform: rotate(45deg) translateX(-200%);
  }
  100% {
    transform: rotate(45deg) translateX(200%);
  }
}

.intro-text {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards 0.7s;
}

.intro-subtext {
  color: var(--text-secondary);
  font-size: 15px;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards 0.9s;
}

.particle {
  position: absolute;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.orbs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  filter: blur(50px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  transition: --orb-1-color 0.8s ease, --orb-2-color 0.8s ease, --orb-3-color 0.8s ease, --orb-4-color 0.8s ease, --orb-5-color 0.8s ease;
}

.orb-1 {
  width: 650px;
  height: 650px;
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, var(--orb-1-color, rgba(0, 200, 255, 0.8)) 0%, transparent 70%);
  animation: float1 25s ease-in-out infinite;
}

.orb-2 {
  width: 550px;
  height: 550px;
  top: 45%;
  right: -20%;
  background: radial-gradient(circle, var(--orb-2-color, rgba(180, 90, 255, 0.7)) 0%, transparent 70%);
  animation: float2 30s ease-in-out infinite;
}

.orb-3 {
  width: 500px;
  height: 500px;
  bottom: -15%;
  left: 20%;
  background: radial-gradient(circle, var(--orb-3-color, rgba(255, 130, 40, 0.7)) 0%, transparent 70%);
  animation: float3 20s ease-in-out infinite;
}

.orb-4 {
  width: 400px;
  height: 400px;
  top: 20%;
  left: 50%;
  background: radial-gradient(circle, var(--orb-4-color, rgba(0, 200, 255, 0.6)) 0%, transparent 70%);
  animation: float4 35s ease-in-out infinite;
}

.orb-5 {
  width: 350px;
  height: 350px;
  top: 40%;
  left: 0%;
  background: radial-gradient(circle, var(--orb-5-color, rgba(180, 90, 255, 0.6)) 0%, transparent 70%);
  animation: float5 28s ease-in-out infinite;
}

body[data-filter="all"] .orb-1 { --orb-1-color: rgba(0, 200, 255, 0.7); }
body[data-filter="all"] .orb-2 { --orb-2-color: rgba(180, 90, 255, 0.6); }
body[data-filter="all"] .orb-3 { --orb-3-color: rgba(255, 130, 40, 0.6); }
body[data-filter="all"] .orb-4 { --orb-4-color: rgba(0, 220, 255, 0.5); }
body[data-filter="all"] .orb-5 { --orb-5-color: rgba(160, 80, 255, 0.5); }

body[data-filter="permanent"] .orb-1 { --orb-1-color: rgba(0, 200, 255, 0.7); }
body[data-filter="permanent"] .orb-2 { --orb-2-color: rgba(0, 230, 255, 0.6); }
body[data-filter="permanent"] .orb-3 { --orb-3-color: rgba(0, 180, 220, 0.6); }
body[data-filter="permanent"] .orb-4 { --orb-4-color: rgba(0, 250, 255, 0.5); }
body[data-filter="permanent"] .orb-5 { --orb-5-color: rgba(0, 160, 200, 0.5); }

body[data-filter="temp"] .orb-1 { --orb-1-color: rgba(180, 90, 255, 0.7); }
body[data-filter="temp"] .orb-2 { --orb-2-color: rgba(200, 120, 255, 0.6); }
body[data-filter="temp"] .orb-3 { --orb-3-color: rgba(150, 60, 240, 0.6); }
body[data-filter="temp"] .orb-4 { --orb-4-color: rgba(220, 140, 255, 0.5); }
body[data-filter="temp"] .orb-5 { --orb-5-color: rgba(140, 50, 220, 0.5); }

body[data-filter="rlai"] .orb-1 { --orb-1-color: rgba(255, 130, 40, 0.7); }
body[data-filter="rlai"] .orb-2 { --orb-2-color: rgba(255, 160, 70, 0.6); }
body[data-filter="rlai"] .orb-3 { --orb-3-color: rgba(240, 100, 20, 0.6); }
body[data-filter="rlai"] .orb-4 { --orb-4-color: rgba(255, 180, 100, 0.5); }
body[data-filter="rlai"] .orb-5 { --orb-5-color: rgba(220, 90, 10, 0.5); }

body[data-filter="other"] .orb-1 { --orb-1-color: rgba(30, 210, 150, 0.7); }
body[data-filter="other"] .orb-2 { --orb-2-color: rgba(50, 240, 170, 0.6); }
body[data-filter="other"] .orb-3 { --orb-3-color: rgba(20, 180, 130, 0.6); }
body[data-filter="other"] .orb-4 { --orb-4-color: rgba(70, 255, 190, 0.5); }
body[data-filter="other"] .orb-5 { --orb-5-color: rgba(10, 160, 110, 0.5); }

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, 80px) scale(1.1); }
  50% { transform: translate(100px, 30px) scale(0.95); }
  75% { transform: translate(30px, -50px) scale(1.05); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-70px, -40px) scale(1.05); }
  50% { transform: translate(-30px, 60px) scale(1.1); }
  75% { transform: translate(-80px, 20px) scale(0.95); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -60px) scale(0.95); }
  50% { transform: translate(-50px, -30px) scale(1.1); }
  75% { transform: translate(60px, -80px) scale(1); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-60px, 50px) scale(1.1); }
  50% { transform: translate(40px, 80px) scale(0.9); }
  75% { transform: translate(-30px, -40px) scale(1.05); }
}

@keyframes float5 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, -30px) scale(0.95); }
  50% { transform: translate(50px, 50px) scale(1.1); }
  75% { transform: translate(-40px, 30px) scale(1); }
}

@media (max-width: 768px) {
  body {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  main {
    padding: 0 12px;
    margin-top: 16px;
  }

  .back-link {
    padding: 7px 12px;
    font-size: 11px;
    margin-bottom: 16px;
    border-radius: 20px;
  }

  .dashboard-header {
    margin-bottom: 20px;
  }

  .dashboard-title {
    font-size: 26px;
  }

  .dashboard-subtitle {
    font-size: 12px;
  }

  .filter-tabs {
    gap: 5px;
    padding: 8px;
  }

  .filter-tab {
    padding: 7px 11px;
    font-size: 11px;
    gap: 6px;
  }

  .tab-icon {
    width: 14px;
    height: 14px;
  }

  .tab-count {
    font-size: 9px;
    padding: 2px 5px;
  }

  .changelog-card {
    padding: 14px;
    padding-left: 18px;
    border-radius: 12px;
  }

  .changelog-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }

  .changelog-header-left {
    flex: 1;
  }

  .changelog-header-right {
    flex-shrink: 0;
  }

  .changelog-meta {
    gap: 6px;
  }

  .changelog-type {
    font-size: 9px;
    padding: 4px 8px;
    gap: 4px;
  }

  .type-icon {
    width: 12px;
    height: 12px;
  }

  .changelog-version {
    font-size: 10px;
    padding: 4px 8px;
  }

  .share-link-btn {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 5px;
  }

  .date-relative {
    font-size: 10px;
  }

  .date-full {
    font-size: 9px;
  }

  .changelog-title {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .changelog-highlight {
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 8px;
  }

  .highlight-title {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .highlight-title::before {
    width: 6px;
    height: 6px;
  }

  .highlight-text {
    font-size: 11px;
  }

  .changelog-notes {
    margin-bottom: 14px;
    padding: 10px;
    gap: 10px;
    border-radius: 6px;
  }

  .changelog-notes::before {
    font-size: 8px;
    top: -7px;
  }

  .note-item {
    gap: 10px;
  }

  .note-bullet {
    width: 6px;
    height: 6px;
    min-width: 6px;
    margin-top: 5px;
  }

  .note-text {
    font-size: 11px;
  }

  .changelog-footer {
    padding: 10px 12px;
    border-radius: 6px;
  }

  .footer-icon {
    width: 16px;
    height: 16px;
  }

  .footer-icon svg {
    width: 10px;
    height: 10px;
  }

  .footer-text {
    font-size: 9px;
  }

  .changelog-list {
    gap: 20px;
  }

  .load-more-container {
    margin-top: 28px;
  }

  .load-more-btn {
    padding: 10px 22px;
    font-size: 12px;
  }

  .no-results {
    padding: 40px 16px;
    gap: 12px;
  }

  .no-results p {
    font-size: 13px;
  }

  .orbs-container {
    filter: blur(50px);
  }

  .orb {
    opacity: 0.5;
  }

  .orb-1, .orb-2, .orb-3 {
    width: 300px;
    height: 300px;
  }

  .orb-4, .orb-5 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 16px;
    padding-bottom: 30px;
  }

  main {
    padding: 0 10px;
    margin-top: 12px;
  }

  .back-link {
    padding: 6px 10px;
    font-size: 10px;
    margin-bottom: 14px;
  }

  .dashboard-header {
    margin-bottom: 16px;
  }

  .dashboard-title {
    font-size: 22px;
  }

  .dashboard-subtitle {
    font-size: 11px;
  }

  .filter-tabs {
    gap: 4px;
    padding: 6px;
  }

  .filter-tab {
    padding: 5px 8px;
    font-size: 10px;
    gap: 4px;
  }

  .filter-tab .type-label {
    display: none;
  }

  .tab-icon {
    width: 14px;
    height: 14px;
  }

  .tab-count {
    font-size: 9px;
    padding: 1px 5px;
  }

  .changelog-card {
    padding: 12px;
    padding-left: 16px;
    border-radius: 10px;
  }

  .changelog-card::before {
    width: 3px;
  }

  .changelog-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
  }

  .changelog-header-left {
    flex: 1;
  }

  .changelog-header-right {
    flex-shrink: 0;
  }

  .changelog-meta {
    gap: 5px;
  }

  .changelog-type {
    font-size: 8px;
    padding: 3px 6px;
    letter-spacing: 0.3px;
  }

  .type-icon {
    width: 11px;
    height: 11px;
  }

  .changelog-version {
    font-size: 9px;
    padding: 3px 6px;
  }

  .share-link-btn {
    padding: 3px 6px;
    font-size: 9px;
    gap: 4px;
  }

  .share-link-btn svg {
    width: 10px;
    height: 10px;
  }

  .date-relative {
    font-size: 9px;
  }

  .date-full {
    font-size: 8px;
  }

  .changelog-title {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .changelog-highlight {
    padding: 10px;
    margin-bottom: 12px;
  }

  .highlight-title {
    font-size: 9px;
    gap: 6px;
  }

  .highlight-title::before {
    width: 5px;
    height: 5px;
  }

  .highlight-text {
    font-size: 10px;
  }

  .changelog-notes {
    gap: 8px;
    padding: 10px;
    margin-bottom: 12px;
  }

  .changelog-notes::before {
    font-size: 7px;
    top: -6px;
    padding: 0 6px;
  }

  .note-item {
    gap: 8px;
  }

  .note-bullet {
    width: 5px;
    height: 5px;
    min-width: 5px;
    margin-top: 4px;
  }

  .note-text {
    font-size: 10px;
    line-height: 1.4;
  }

  .changelog-footer {
    padding: 8px 10px;
    gap: 6px;
  }

  .footer-icon {
    width: 14px;
    height: 14px;
  }

  .footer-text {
    font-size: 8px;
  }

  .changelog-list {
    gap: 16px;
  }

  .load-more-container {
    margin-top: 24px;
  }

  .load-more-btn {
    padding: 9px 18px;
    font-size: 11px;
  }

  .no-results {
    padding: 32px 12px;
    border-radius: 10px;
  }

  .no-results svg {
    width: 40px;
    height: 40px;
  }

  .no-results p {
    font-size: 12px;
  }
}