/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-subtitle);
  background: #0a0a0a;
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hidden {
  display: none !important;
}

/* Subtitle Styling */
.subtitle-text {
  margin-top: 2rem;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.subtitle-text.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.subtitle-content {
  font-family: var(--font-subtitle);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  transition: all 0.8s ease;
}

/* Login Container */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
}

.login-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1),
    0 0 60px rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: cardAppear 0.8s ease-out 0.5s forwards;
  max-width: 400px;
  width: 100%;
}

@keyframes cardAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.login-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.login-description {
  font-family: var(--font-subtitle);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.discord-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border: none;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  width: 100%;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3),
    0 0 20px rgba(88, 101, 242, 0.2);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.discord-login-btn:active {
  box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3),
    0 0 15px rgba(88, 101, 242, 0.2);
}

/* Dashboard Styles */
.dashboard-container {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  text-align: center;
  padding-top: 2rem;
}

/* Add-Ons Styles */
.addons-content {
  margin-top: 2rem;
}

.addons-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Center loading content in addons-list */
.addons-list .loading-spinner {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(20px);
}

.addons-list .loading-spinner p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 1rem;
}

.addon-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.addon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.addon-card.active {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.1);
}

.addon-card.inactive {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.1);
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.addon-info {
  flex: 1;
}

.addon-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.addon-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-inactive {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.addon-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-switch.enabled,
.toggle-switch.active {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.5);
}

.toggle-switch.disabled {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.5);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.enabled .toggle-slider,
.toggle-switch.active .toggle-slider {
  transform: translateX(26px);
  background: #22c55e;
}

.toggle-switch.disabled .toggle-slider {
  transform: translateX(0);
  background: #ef4444;
}

.toggle-switch:hover {
  transform: scale(1.05);
}

.addon-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.addon-description {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.addon-description p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.addon-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.detail-value {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
}

.no-addons {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(20px);
}

.no-addons-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.no-addons h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.no-addons p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

.user-profile {
  margin-bottom: 3rem;
}

.profile-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  max-width: 600px;
  margin: 0 auto;
}

.profile-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.profile-info {
  flex: 1;
  margin-left: 1.5rem;
  text-align: left;
}

.profile-name {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.profile-discriminator {
  font-family: var(--font-subtitle);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.logout-btn {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-family: var(--font-primary);
  user-select: none;
}

.logout-btn:active {
  transform: translateY(0);
}

.redeem-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  user-select: none;
}

.redeem-btn:active {
  transform: translateY(0);
}

.dashboard-content {
  text-align: left;
}

/* Dashboard Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: nowrap;
}

/* Dashboard Navigation */
.dashboard-nav {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 0.5rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
  flex: 1;
  background: transparent;
  color: #a1a1aa;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.nav-btn.active {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* Auto-refresh Controls */
.refresh-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  flex-shrink: 0;
  min-width: 0;
}

.refresh-indicator {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 500;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.refresh-indicator.refreshing {
  display: flex;
}

.refresh-settings {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
  backdrop-filter: blur(20px);
  flex-shrink: 0;
}

.refresh-toggle-container {
  display: flex;
  align-items: center;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #a1a1aa;
  cursor: pointer;
  user-select: none;
}

.toggle-label input[type="checkbox"] {
  display: none;
}

.toggle-label .toggle-slider {
  width: 40px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.toggle-label .toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.toggle-label input[type="checkbox"]:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.refresh-rate-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  color: white;
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.refresh-rate-select:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.refresh-rate-select option {
  background: #1a1a1a;
  color: white;
}

.manual-refresh-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  color: #a1a1aa;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.manual-refresh-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: rotate(180deg);
}

.manual-refresh-btn:active {
  transform: rotate(180deg) scale(0.95);
}

.last-refresh {
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  flex-shrink: 0;
  min-width: 120px;
}

@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .refresh-controls {
    justify-content: space-between;
  }

  .refresh-settings {
    flex: 1;
    justify-content: center;
  }
}

/* Dashboard Sections */
.dashboard-section {
  display: none;
  animation: fadeIn 0.3s ease;
}

.dashboard-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.stat-info p {
  color: #a1a1aa;
  font-size: 0.9rem;
}

/* Version footer */
.app-version {
  margin-top: 0.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  user-select: none;
}

/* Section Headers */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.create-key-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

/* API Keys List */
.api-keys-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.api-key-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.key-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.key-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.key-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.key-display {
  margin-bottom: 1rem;
}

.masked-key {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Courier New", monospace;
}

.key-value {
  color: #a1a1aa;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.copy-key-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  border: none;
  padding: 0.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.key-metadata {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metadata-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.metadata-item .label {
  color: #a1a1aa;
  font-weight: 500;
}

.metadata-item .value {
  color: #ffffff;
}

.delete-btn {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.action-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chart Container */
.chart-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(20px);
  min-height: 400px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.chart-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timeframe-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-family: var(--font-subtitle);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.timeframe-select:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(139, 92, 246, 0.5);
}

.timeframe-select:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.timeframe-select option {
  background: #1a1a1a;
  color: white;
}

.chart-wrapper {
  position: relative;
  height: 300px;
  width: 100%;
}

.chart-wrapper canvas {
  max-height: 300px;
  border-radius: 8px;
}

/* Responsive design for charts */
@media (max-width: 768px) {
  .chart-container {
    padding: 1rem;
    min-height: 350px;
  }

  .chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .chart-header h3 {
    font-size: 1.1rem;
  }

  .chart-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .timeframe-select {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .chart-wrapper {
    height: 250px;
  }

  .chart-wrapper canvas {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .chart-container {
    padding: 0.8rem;
    min-height: 320px;
  }

  .chart-header h3 {
    font-size: 1rem;
  }

  .timeframe-select {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }

  .chart-wrapper {
    height: 220px;
  }

  .chart-wrapper canvas {
    max-height: 220px;
  }
}

.detailed-stats {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
}

.welcome-message {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.welcome-message h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.welcome-message p {
  font-family: var(--font-subtitle);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Delete Confirmation Modal */
.delete-modal {
  max-width: 450px;
}

.modal-body {
  text-align: center;
  padding: 1rem 0;
}

.warning-icon {
  font-size: 3rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

.delete-message {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.delete-warning {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Modal delete button styling - higher specificity */
.modal .delete-btn.danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: white !important;
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  user-select: none;
}

.danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  color: white !important;
}

/* Loading Styles */
.loading-container {
  text-align: center;
}

.loading-spinner {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-text {
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.button-icon {
  font-size: 1.2rem;
  opacity: 0.9;
}

.button-text {
  font-weight: 700;
}

/* Configuration error styles */
.config-error {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.config-error h2 {
  color: #ff6b6b;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.config-error p {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-subtitle);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.config-error ol {
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-subtitle);
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.config-error li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.config-error a {
  color: #4fc3f7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.retry-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-family: var(--font-subtitle);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.retry-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .animated-text {
    font-size: clamp(3rem, 15vw, 8rem);
    gap: 0.1em;
  }

  .dashboard-title {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .login-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .profile-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .profile-info {
    margin-left: 0;
    text-align: center;
  }

  .dashboard-container {
    padding: 1rem;
  }

  .dashboard-content {
    padding: 2rem;
  }

  .config-error {
    margin: 1rem;
    padding: 1.5rem;
  }

  .config-error h2 {
    font-size: 1.5rem;
  }

  .config-error p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 1.5rem 1rem;
  }

  .login-title {
    font-size: 1.5rem;
  }

  .discord-login-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .profile-avatar {
    width: 60px;
    height: 60px;
  }

  .profile-name {
    font-size: 1.2rem;
  }

  .dashboard-content {
    padding: 1.5rem;
  }

  .welcome-message h2 {
    font-size: 1.5rem;
  }
}

/* Error View Styles */
.error-card {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1),
    rgba(255, 107, 107, 0.05)
  );
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.error-icon {
  font-size: 3rem;
  color: #ff6b6b;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.error-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.error-description {
  font-family: var(--font-subtitle);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.discord-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border: none;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  width: 100%;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3),
    0 0 20px rgba(88, 101, 242, 0.2);
  text-decoration: none;
  margin-bottom: 1rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.discord-link-btn:active {
  box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3),
    0 0 15px rgba(88, 101, 242, 0.2);
  transform: translateY(0);
}

.retry-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.retry-btn:active {
  transform: translateY(0);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-content {
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(25px);
  max-width: 420px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.close-btn,
.close-modal {
  background: none;
  border: none;
  color: #a1a1aa;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.65rem;
  color: #ffffff;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.form-group textarea {
  min-height: 70px;
  max-height: 120px;
}

.form-group input:not([type="number"]) {
  min-height: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a1a1aa;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rate-limit-inputs {
  display: grid;
  gap: 0.75rem;
}

.rate-input {
  display: flex;
  flex-direction: column;
}

.rate-input label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.rate-limit-warning {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 1rem;
  color: #fca5a5;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rate-limit-warning i {
  color: #ef4444;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 80px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cancel-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #a1a1aa;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.create-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.redeem-submit-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

/* API Key Display */
.api-key-display {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  font-family: "Courier New", monospace;
  word-break: break-all;
  color: #ffffff;
  position: relative;
}

.copy-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

/* API Key Display Modal */
.key-display {
  padding: 1rem 0;
}

.warning-text {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-text i {
  color: #f59e0b;
}

.redeem-info {
  margin-top: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.redeem-info.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.redeem-info.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.redeem-aux-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.25rem;
}

.visit-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  text-decoration: none;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  transition: all 0.2s ease;
  user-select: none;
}

.visit-shop-btn:hover {
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.35);
}

.key-value {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.key-value input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  color: #ffffff;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  word-break: break-all;
}

.key-value .copy-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.key-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.key-info p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.key-info strong {
  color: #ffffff;
  font-weight: 600;
}

.done-btn {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Subscription and Billing Styles */
.stat-card.subscription-card {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
}

.subscription-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.stat-card.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.stat-card.clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.5);
}

.billing-modal {
  max-width: 600px;
}

.billing-body {
  padding: 1rem 0;
}

.billing-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.billing-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.billing-section h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.billing-section h4 i {
  color: #8b5cf6;
  font-size: 0.9rem;
}

.billing-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.billing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

.billing-item.billing-total {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin-top: 0.5rem;
  font-weight: 600;
}

.billing-label {
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 500;
}

.billing-value {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.billing-value.active {
  color: #10b981;
}

.billing-value.inactive {
  color: #ef4444;
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  color: #a1a1aa;
  height: 300px;
}

.empty-state p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Error State */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  color: #888;
  height: 300px;
}

/* Loading State */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  height: 300px;
}

.loading-state .loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-state p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 1rem;
}

/* Tier Badge */
.tier-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tier-free {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

.tier-pro {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.tier-enterprise {
  background: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
}

/* Additional Responsive Design */
@media (max-width: 768px) {
  .dashboard-container {
    padding: 1rem;
  }

  .user-profile {
    margin-bottom: 1.5rem;
  }

  .profile-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .profile-info {
    order: 2;
  }

  .profile-actions {
    order: 3;
    align-self: center;
  }

  .dashboard-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .api-key-card {
    padding: 1rem;
  }

  .key-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .key-actions {
    align-self: flex-end;
  }

  .metadata-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .masked-key {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .copy-key-btn {
    align-self: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .create-key-btn {
    width: 100%;
    justify-content: center;
  }

  /* Modal Responsive */
  .modal {
    padding: 0.5rem;
  }

  .modal-content {
    max-width: 100%;
    padding: 1.25rem;
    border-radius: 12px;
    max-height: 90vh;
  }

  .modal-header h3 {
    font-size: 1rem;
  }

  .form-group {
    margin-bottom: 0.875rem;
  }

  .form-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn {
    width: 100%;
    padding: 0.7rem;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 0.25rem;
  }

  .modal-content {
    padding: 1rem;
    border-radius: 8px;
  }

  .modal-header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.55rem;
    font-size: 0.8rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }
}

@media (min-width: 1200px) {
  .modal-content {
    max-width: 450px;
    padding: 1.75rem;
  }

  .api-key-item {
    flex-direction: column;
    gap: 1rem;
  }

  .key-actions {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }
}

/* Statistics Breakdown */
.stats-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1rem;
}

@media (max-width: 768px) {
  .stats-breakdown {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.stat-item h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-details p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-details p:before {
  content: "•";
  color: #667eea;
  margin-right: 0.5rem;
}

/* CSS Variables for Chart Colors */
:root {
  --chart-color-primary: #8b5cf6;
  --chart-color-secondary: #22c55e;
  --chart-color-tertiary: #06b6d4;
  --chart-color-quaternary: #f59e0b;
  --chart-color-quinary: #ef4444;
  --chart-color-senary: #a78bfa;
  --chart-color-septenary: #34d399;
  --chart-color-octonary: #38bdf8;
  --chart-color-nonary: #fbbf24;
  --chart-color-denary: #f87171;

  --chart-bg-alpha: 0.25;
  --chart-border-alpha: 0.5;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
