/* CSS Custom Properties - Color palette and design tokens for consistent theming */
:root {
  --primary-blue: #4dd4ff;
  --accent-purple: #aa55ff;
  --accent-crimson: #ff5511;
  --accent-emerald: #02d536;
  --accent-gold: #ffd700;
  --accent-cyan: #00ffff;
  --secondary-dark: #0f1419;
  --text-light: #e8f0ff;
  --text-secondary: #a0aac5;
  --text-muted: #6b7594;
  --border-subtle: rgba(77, 212, 255, 0.1);
  --glow-blue: 0 0 20px rgba(77, 212, 255, 0.6);
  scroll-behavior: smooth;
}

/* Main container for skills page with centered layout and fade-in animation */
/* Force scroll on mobile for skills page */
html,
body {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: 100%;
  min-height: 100vh;
  position: relative;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.skills-container {
  position: relative;
  z-index: 10;
  padding: 3rem;
  max-width: 1600px;
  margin: 0 auto;
  margin-top: 90px;
  animation: fadeInUp 0.8s ease-out;
}

/* Enhanced page header with animated background */
.page-header {
  position: relative;
  text-align: center;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.4),
    rgba(21, 27, 61, 0.2)
  );
  border-radius: 24px;
  border: 1px solid rgba(77, 212, 255, 0.15);
}

.header-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 212, 255, 0.3), transparent);
  filter: blur(1px);
  animation: floatOrb 6s ease-in-out infinite;
}

.orb-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 80%;
  animation-delay: 4s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.8;
  }
}

/* Enhanced page title with 3D text effect */
.page-title {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.title-word {
  position: relative;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(77, 212, 255, 0.4);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.title-word::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.3),
    rgba(0, 255, 255, 0.3)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translate(2px, 2px);
  z-index: -1;
  filter: blur(1px);
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 30px rgba(77, 212, 255, 0.4);
  }
  100% {
    text-shadow:
      0 0 40px rgba(77, 212, 255, 0.6),
      0 0 60px rgba(0, 255, 255, 0.3);
  }
}

/* Enhanced page subtitle */
.page-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  opacity: 0.9;
}

/* Header statistics bubbles */
.header-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem;
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.9),
    rgba(21, 27, 61, 0.5)
  );
  backdrop-filter: blur(25px);
  border: 1.5px solid rgba(77, 212, 255, 0.35);
  border-radius: 22px;
  min-width: 130px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 212, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-bubble:hover {
  transform: translateY(-8px) scale(1.08);
  border-color: var(--primary-blue);
  box-shadow:
    0 15px 40px rgba(77, 212, 255, 0.4),
    0 0 30px rgba(77, 212, 255, 0.3);
}

.stat-bubble:hover::before {
  opacity: 1;
}

.stat-number {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  text-shadow:
    0 0 20px rgba(77, 212, 255, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-bubble:hover .stat-number {
  transform: scale(1.15);
  color: var(--accent-cyan);
  text-shadow:
    0 0 25px rgba(0, 255, 255, 0.8),
    0 0 40px rgba(77, 212, 255, 0.5);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Enhanced control panel with improved glassmorphism and better layout */
.skills-controls {
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.9),
    rgba(21, 27, 61, 0.6)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(77, 212, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  animation: slideInFromTop 0.6s ease-out 0.2s both;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Search section with chips */
.search-section {
  margin-bottom: 2rem;
}

.search-box {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.95),
    rgba(21, 27, 61, 0.8)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(77, 212, 255, 0.2);
  border-radius: 12px;
  margin-top: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.search-suggestion {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(77, 212, 255, 0.1);
}

.search-suggestion:hover {
  background: rgba(77, 212, 255, 0.1);
}

.search-suggestion:last-child {
  border-bottom: none;
}

/* Filter chips */
.search-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.1),
    rgba(232, 240, 255, 0.05)
  );
  border: 1.5px solid rgba(77, 212, 255, 0.25);
  border-radius: 28px;
  color: var(--text-secondary);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(77, 212, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.filter-chip:hover,
.filter-chip.active {
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.25),
    rgba(77, 212, 255, 0.15)
  );
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 6px 18px rgba(77, 212, 255, 0.4),
    0 0 20px rgba(77, 212, 255, 0.2);
}

.filter-chip:hover::before,
.filter-chip.active::before {
  transform: translateX(100%);
}

.chip-icon {
  font-size: 1rem;
}

.chip-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Controls row layout */
.controls-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.quick-actions {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  min-width: 300px;
}

.advanced-filters {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Enhanced decorative elements */
.skills-controls::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-blue),
    var(--accent-purple),
    var(--accent-cyan),
    transparent
  );
  opacity: 0.8;
  animation: shimmerBorder 3s ease-in-out infinite;
}

.skills-controls::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(77, 212, 255, 0.05),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(170, 85, 255, 0.05),
      transparent 50%
    ),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.03), transparent 70%);
  pointer-events: none;
}

@keyframes shimmerBorder {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Quick actions toolbar */
.quick-actions {
  display: flex;
  gap: 0.75rem;
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid rgba(77, 212, 255, 0.2);
}

.quick-action-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.18),
    rgba(77, 212, 255, 0.1)
  );
  border: 1.5px solid rgba(77, 212, 255, 0.35);
  border-radius: 14px;
  color: var(--primary-blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quick-action-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.quick-action-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.3),
    rgba(77, 212, 255, 0.18)
  );
  border-color: var(--primary-blue);
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 6px 18px rgba(77, 212, 255, 0.4),
    0 0 20px rgba(77, 212, 255, 0.2);
}

.quick-action-btn:hover::before {
  transform: translateX(100%);
}

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

.btn-icon {
  font-size: 1.1rem;
}

.btn-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Skill rarity indicator */
.skill-rarity {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.skill-rarity.common {
  background: linear-gradient(
    135deg,
    rgba(160, 170, 197, 0.2),
    rgba(160, 170, 197, 0.1)
  );
  border: 1px solid rgba(160, 170, 197, 0.3);
  color: var(--text-muted);
}

.skill-rarity.uncommon {
  background: linear-gradient(
    135deg,
    rgba(2, 213, 54, 0.2),
    rgba(2, 213, 54, 0.1)
  );
  border: 1px solid rgba(2, 213, 54, 0.3);
  color: var(--accent-emerald);
}

.skill-rarity.rare {
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.2),
    rgba(77, 212, 255, 0.1)
  );
  border: 1px solid rgba(77, 212, 255, 0.3);
  color: var(--primary-blue);
}

.skill-rarity.epic {
  background: linear-gradient(
    135deg,
    rgba(170, 85, 255, 0.2),
    rgba(170, 85, 255, 0.1)
  );
  border: 1px solid rgba(170, 85, 255, 0.3);
  color: var(--accent-purple);
}

.skill-rarity.legendary {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 215, 0, 0.1)
  );
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--accent-gold);
}

/* Skill mastery indicator */
.skill-mastery-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mastery-circle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--primary-blue) 0deg,
    var(--primary-blue) calc(var(--progress) * 3.6deg),
    rgba(77, 212, 255, 0.2) calc(var(--progress) * 3.6deg),
    rgba(77, 212, 255, 0.2) 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.mastery-circle::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--secondary-dark);
}

.mastery-text {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Enhanced skill meta information */
.skill-meta {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.05),
    rgba(232, 240, 255, 0.02)
  );
  border: 1px solid rgba(77, 212, 255, 0.1);
  border-radius: 12px;
}

.skill-difficulty,
.skill-learning-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.difficulty-icon,
.time-icon {
  font-size: 1rem;
}

/* More characters indicator */
.more-characters {
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.2),
    rgba(77, 212, 255, 0.1)
  );
  border: 1.5px solid rgba(77, 212, 255, 0.25);
  border-radius: 18px;
  font-size: 0.78rem;
  color: var(--primary-blue);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(77, 212, 255, 0.15);
}

.more-characters:hover {
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.3),
    rgba(77, 212, 255, 0.18)
  );
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 4px 12px rgba(77, 212, 255, 0.3),
    0 0 15px rgba(77, 212, 255, 0.2);
}

/* Floating Action Button */
.floating-action-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 25px rgba(77, 212, 255, 0.4),
    0 0 0 0 rgba(77, 212, 255, 0.3);
  animation: fabPulse 2s ease-in-out infinite;
}

.floating-action-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 12px 35px rgba(77, 212, 255, 0.5),
    0 0 0 10px rgba(77, 212, 255, 0.1);
}

.fab-icon {
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.floating-action-btn.active .fab-icon {
  transform: rotate(45deg);
}

.fab-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-action-btn.active .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.95),
    rgba(21, 27, 61, 0.8)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(77, 212, 255, 0.2);
  border-radius: 25px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fab-option:hover {
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.2),
    rgba(77, 212, 255, 0.1)
  );
  border-color: var(--primary-blue);
  transform: translateX(-5px);
}

.fab-option-icon {
  font-size: 1.1rem;
}

.fab-option-text {
  font-size: 0.9rem;
  font-weight: 600;
}

@keyframes fabPulse {
  0%,
  100% {
    box-shadow:
      0 8px 25px rgba(77, 212, 255, 0.4),
      0 0 0 0 rgba(77, 212, 255, 0.3);
  }
  50% {
    box-shadow:
      0 8px 25px rgba(77, 212, 255, 0.4),
      0 0 0 15px rgba(77, 212, 255, 0.1);
  }
}

/* Enhanced search input with better visual feedback */
.search-box {
  flex: 1;
  min-width: 300px;
  position: relative;
  z-index: 10;
}

/* Improved search icon with animation */
.search-box::before {
  content: "🔍";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.search-box:focus-within::before {
  color: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

/* Enhanced search input styling */
.search-box input {
  width: 100%;
  padding: 1.3rem 1.3rem 1.3rem 3.5rem;
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.12),
    rgba(232, 240, 255, 0.06)
  );
  border: 2px solid rgba(77, 212, 255, 0.2);
  border-radius: 18px;
  color: var(--text-light);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow:
    0 0 35px rgba(77, 212, 255, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 0 3px rgba(77, 212, 255, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.1)
  );
  transform: translateY(-3px);
}

.search-box input::placeholder {
  color: rgba(160, 170, 197, 0.6);
  font-style: italic;
}

/* Enhanced filter dropdown styling with better visual hierarchy */
.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

/* Improved filter labels */
.filter-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
}

.filter-group label::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.filter-group:hover label::after {
  width: 100%;
}

/* Enhanced select dropdown with improved styling */
.filter-group select {
  padding: 1.2rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.1),
    rgba(232, 240, 255, 0.05)
  );
  border: 2px solid var(--border-subtle);
  border-radius: 16px;
  color: var(--text-light);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 160px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234dd4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
  padding-right: 3.5rem;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.filter-group select option {
  background: var(--secondary-dark);
  color: var(--text-light);
  padding: 1rem;
  font-weight: 600;
  border: none;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow:
    0 0 25px rgba(77, 212, 255, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.15),
    rgba(232, 240, 255, 0.08)
  );
  transform: translateY(-2px);
}

.filter-group select:hover {
  border-color: var(--accent-cyan);
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.12),
    rgba(232, 240, 255, 0.06)
  );
  transform: translateY(-1px);
}

/* Enhanced statistics panel with improved visual design */
.skills-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.9),
    rgba(21, 27, 61, 0.6)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(77, 212, 255, 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  animation: slideInFromTop 0.6s ease-out 0.1s both;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.skills-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-emerald),
    var(--primary-blue),
    var(--accent-purple),
    transparent
  );
  opacity: 0.8;
  animation: shimmerBorder 3s ease-in-out infinite;
}

.skills-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(2, 213, 54, 0.04), transparent 50%),
    radial-gradient(
      circle at 70% 30%,
      rgba(77, 212, 255, 0.04),
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(170, 85, 255, 0.03),
      transparent 70%
    );
  pointer-events: none;
}

/* Enhanced individual statistic items */
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.08),
    rgba(232, 240, 255, 0.03)
  );
  border: 1px solid rgba(77, 212, 255, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 212, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary-blue);
  box-shadow:
    0 12px 30px rgba(77, 212, 255, 0.25),
    0 0 0 1px rgba(77, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-value {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(77, 212, 255, 0.5);
  transition: all 0.4s ease;
  position: relative;
}

.stat-item:hover .stat-value {
  transform: scale(1.15);
  text-shadow: 0 0 25px rgba(77, 212, 255, 0.7);
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  transition: color 0.4s ease;
}

.stat-item:hover .stat-label {
  color: var(--primary-blue);
}

.results-count {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.05),
    rgba(232, 240, 255, 0.02)
  );
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.4s ease-out 0.3s both;
}

/* Enhanced learning paths section with modern card design */
.skills-learning-path {
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.9),
    rgba(21, 27, 61, 0.6)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(77, 212, 255, 0.2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  animation: slideInFromTop 0.6s ease-out 0.15s both;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.learning-path-title {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  text-align: center;
  text-shadow: 0 0 20px rgba(77, 212, 255, 0.4);
}

.learning-path-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
}

.learning-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.learning-path-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem;
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.1),
    rgba(232, 240, 255, 0.05)
  );
  border: 1.5px solid rgba(77, 212, 255, 0.2);
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.learning-path-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 212, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.learning-path-item:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--primary-blue);
  box-shadow:
    0 12px 35px rgba(77, 212, 255, 0.3),
    0 0 0 2px rgba(77, 212, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.learning-path-item:hover::before {
  opacity: 1;
}

.path-icon {
  font-size: 2.8rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    rgba(77, 212, 255, 0.35),
    rgba(77, 212, 255, 0.15)
  );
  border-radius: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow:
    0 6px 16px rgba(77, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.learning-path-item:hover .path-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow:
    0 8px 20px rgba(77, 212, 255, 0.4),
    0 0 25px rgba(77, 212, 255, 0.3);
}

.path-content {
  flex: 1;
}

.path-name {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.learning-path-item:hover .path-name {
  color: var(--accent-cyan);
}

.path-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.path-skills-count {
  font-size: 0.8rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.path-difficulty {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  opacity: 0.8;
}

.path-arrow {
  font-size: 1.6rem;
  color: var(--primary-blue);
  transition: all 0.3s ease;
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(77, 212, 255, 0.4));
}

.learning-path-item:hover .path-arrow {
  transform: translateX(6px);
  opacity: 1;
  color: var(--accent-cyan);
  filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.6));
}

/* Enhanced main grid layout with list view support */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  animation: staggerIn 0.8s ease-out 0.4s both;
  transition: all 0.4s ease;
}

.skills-grid.list-view {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.skills-grid.list-view .skill-card {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  max-height: 200px;
}

.skills-grid.list-view .skill-header {
  flex: 0 0 auto;
  margin-right: 2rem;
  margin-bottom: 0;
}

.skills-grid.list-view .skill-description {
  flex: 1;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.skills-grid.list-view .skill-characters,
.skills-grid.list-view .skill-prerequisites,
.skills-grid.list-view .skill-applications,
.skills-grid.list-view .skill-meta {
  display: none;
}

/* Enhanced skill card with modern glassmorphism and improved interactions */
.skill-card {
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.95),
    rgba(21, 27, 61, 0.7)
  );
  backdrop-filter: blur(25px);
  border: 1px solid rgba(77, 212, 255, 0.25);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideIn 0.4s ease-out both;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  contain: layout style paint;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(77, 212, 255, 0.1);
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-blue),
    var(--accent-cyan),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.skill-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(77, 212, 255, 0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.skill-card:hover {
  transform: translateY(-15px) scale(1.04);
  border-color: var(--primary-blue);
  box-shadow:
    0 30px 60px rgba(77, 212, 255, 0.35),
    0 0 0 2px rgba(77, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 40px rgba(77, 212, 255, 0.2);
}

.skill-card:hover::before,
.skill-card:hover::after {
  opacity: 1;
}

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

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

/* Category-specific hover effects for different skill types */
.skill-card.combat:hover {
  border-color: var(--accent-crimson);
  box-shadow:
    0 20px 40px rgba(255, 51, 102, 0.2),
    0 0 0 1px rgba(255, 51, 102, 0.1);
}

.skill-card.combat::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-crimson),
    transparent
  );
}

.skill-card.combat::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 51, 102, 0.05),
    transparent 70%
  );
}

.skill-card.magic:hover {
  border-color: var(--accent-purple);
  box-shadow:
    0 20px 40px rgba(170, 85, 255, 0.2),
    0 0 0 1px rgba(170, 85, 255, 0.1);
}

.skill-card.magic::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-purple),
    transparent
  );
}

.skill-card.magic::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(170, 85, 255, 0.05),
    transparent 70%
  );
}

.skill-card.support:hover {
  border-color: var(--accent-emerald);
  box-shadow:
    0 20px 40px rgba(0, 255, 136, 0.2),
    0 0 0 1px rgba(0, 255, 136, 0.1);
}

.skill-card.support::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-emerald),
    transparent
  );
}

.skill-card.support::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 255, 136, 0.05),
    transparent 70%
  );
}

.skill-card.leadership:hover {
  border-color: var(--accent-gold);
  box-shadow:
    0 20px 40px rgba(255, 215, 0, 0.2),
    0 0 0 1px rgba(255, 215, 0, 0.1);
}

.skill-card.leadership::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-gold),
    transparent
  );
}

.skill-card.leadership::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 215, 0, 0.05),
    transparent 70%
  );
}

.skill-card.crafting:hover {
  border-color: var(--accent-cyan);
  box-shadow:
    0 20px 40px rgba(0, 212, 255, 0.2),
    0 0 0 1px rgba(0, 212, 255, 0.1);
}

.skill-card.crafting::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-cyan),
    transparent
  );
}

.skill-card.crafting::after {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 212, 255, 0.05),
    transparent 70%
  );
}

/* Enhanced skill card header with better visual hierarchy */
.skill-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

/* Enhanced skill icon with improved animations and effects */
.skill-icon {
  font-size: 3rem;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    rgba(77, 212, 255, 0.5),
    rgba(77, 212, 255, 0.2)
  );
  border-radius: 22px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 20px rgba(77, 212, 255, 0.4),
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    0 0 0 1px rgba(77, 212, 255, 0.3);
  filter: drop-shadow(0 0 20px rgba(77, 212, 255, 0.5));
  position: relative;
  overflow: hidden;
}

.skill-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.skill-card:hover .skill-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow:
    0 10px 25px rgba(77, 212, 255, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.35),
    0 0 0 2px rgba(77, 212, 255, 0.4);
  filter: drop-shadow(0 0 25px rgba(77, 212, 255, 0.7));
}

.skill-card:hover .skill-icon::before {
  transform: translateX(100%);
}

.skill-info {
  flex: 1;
}

.skill-name {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
  text-shadow:
    0 0 25px rgba(77, 212, 255, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.skill-card:hover .skill-name {
  transform: translateX(8px);
  text-shadow:
    0 0 30px rgba(77, 212, 255, 0.8),
    0 0 50px rgba(0, 255, 255, 0.4);
  color: var(--accent-cyan);
}

.skill-type {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.skill-type::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(77, 212, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.skill-card:hover .skill-type {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.skill-card:hover .skill-type::before {
  transform: translateX(100%);
}

/* Category badges with color-coded styling for skill types */
.category-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.skill-card:hover .category-badge::before {
  transform: translateX(100%);
}

.category-badge.combat {
  background: linear-gradient(
    135deg,
    rgba(255, 85, 17, 0.25),
    rgba(255, 85, 17, 0.15)
  );
  border: 1px solid rgba(255, 85, 17, 0.4);
  color: var(--accent-crimson);
}

.category-badge.combat:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 85, 17, 0.35),
    rgba(255, 85, 17, 0.25)
  );
  transform: translateY(-2px);
}

.category-badge.magic {
  background: linear-gradient(
    135deg,
    rgba(170, 85, 255, 0.25),
    rgba(170, 85, 255, 0.15)
  );
  border: 1px solid rgba(170, 85, 255, 0.4);
  color: var(--accent-purple);
}

.category-badge.magic:hover {
  background: linear-gradient(
    135deg,
    rgba(170, 85, 255, 0.35),
    rgba(170, 85, 255, 0.25)
  );
  transform: translateY(-2px);
}

.category-badge.support {
  background: linear-gradient(
    135deg,
    rgba(2, 213, 54, 0.25),
    rgba(2, 213, 54, 0.15)
  );
  border: 1px solid rgba(2, 213, 54, 0.4);
  color: var(--accent-emerald);
}

.category-badge.support:hover {
  background: linear-gradient(
    135deg,
    rgba(2, 213, 54, 0.35),
    rgba(2, 213, 54, 0.25)
  );
  transform: translateY(-2px);
}

.category-badge.leadership {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.25),
    rgba(255, 215, 0, 0.15)
  );
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--accent-gold);
}

.category-badge.leadership:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.35),
    rgba(255, 215, 0, 0.25)
  );
  transform: translateY(-2px);
}

.category-badge.crafting {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.25),
    rgba(0, 255, 255, 0.15)
  );
  border: 1px solid rgba(0, 255, 255, 0.4);
  color: var(--accent-cyan);
}

.category-badge.crafting:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 255, 0.35),
    rgba(0, 255, 255, 0.25)
  );
  transform: translateY(-2px);
}

.skill-description {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.skill-card:hover .skill-description {
  color: rgba(232, 240, 255, 0.9);
}

.skill-difficulty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: linear-gradient(
    135deg,
    rgba(255, 85, 17, 0.15),
    rgba(255, 85, 17, 0.05)
  );
  border: 1px solid rgba(255, 85, 17, 0.2);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--accent-crimson);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.skill-card:hover .skill-difficulty {
  background: linear-gradient(
    135deg,
    rgba(255, 85, 17, 0.2),
    rgba(255, 85, 17, 0.1)
  );
  transform: translateY(-1px);
}

.skill-bonus {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.2),
    rgba(77, 212, 255, 0.1)
  );
  border: 1px solid rgba(77, 212, 255, 0.3);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skill-bonus::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.skill-card:hover .skill-bonus {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(77, 212, 255, 0.3);
}

.skill-card:hover .skill-bonus::before {
  left: 100%;
}

/* Skill prerequisites section showing required skills */
.skill-prerequisites {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.prerequisites-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prerequisites-title::before {
  content: "🔗";
  font-size: 1rem;
}

.prerequisites-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.prerequisite-tag {
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(170, 85, 255, 0.25),
    rgba(170, 85, 255, 0.12)
  );
  border: 1.5px solid rgba(170, 85, 255, 0.35);
  border-radius: 18px;
  font-size: 0.78rem;
  color: var(--accent-purple);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(170, 85, 255, 0.15);
}

.prerequisite-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(170, 85, 255, 0.35),
    rgba(170, 85, 255, 0.2)
  );
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 4px 12px rgba(170, 85, 255, 0.3),
    0 0 15px rgba(170, 85, 255, 0.2);
}

/* Skill applications section showing practical uses */
.skill-applications {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.applications-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.applications-title::before {
  content: "🎯";
  font-size: 1rem;
}

.applications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.application-tag {
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(2, 213, 54, 0.25),
    rgba(2, 213, 54, 0.12)
  );
  border: 1.5px solid rgba(2, 213, 54, 0.35);
  border-radius: 18px;
  font-size: 0.78rem;
  color: var(--accent-emerald);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(2, 213, 54, 0.15);
}

.application-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(2, 213, 54, 0.35),
    rgba(2, 213, 54, 0.2)
  );
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 4px 12px rgba(2, 213, 54, 0.3),
    0 0 15px rgba(2, 213, 54, 0.2);
}

/* Characters section showing which characters possess the skill */
.skill-characters {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.skill-characters::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-blue),
    transparent
  );
}

.skill-characters-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-characters-title::before {
  content: "👥";
  font-size: 1.1rem;
}

.skill-characters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.character-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(77, 212, 255, 0.2);
  border-radius: 25px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-weight: 500;
}

.character-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 212, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.character-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(77, 212, 255, 0.2),
    rgba(77, 212, 255, 0.1)
  );
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 8px 25px rgba(77, 212, 255, 0.3),
    0 0 20px rgba(77, 212, 255, 0.2);
}

.character-tag:hover::before {
  opacity: 1;
}

.character-tag-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.character-tag:hover .character-tag-icon {
  transform: scale(1.25) rotate(8deg);
  filter: drop-shadow(0 0 8px rgba(77, 212, 255, 0.6));
}

/* Staggered animation delays for skill cards entrance */
.skill-card:nth-child(1) {
  animation-delay: 0.1s;
}
.skill-card:nth-child(2) {
  animation-delay: 0.15s;
}
.skill-card:nth-child(3) {
  animation-delay: 0.2s;
}
.skill-card:nth-child(4) {
  animation-delay: 0.25s;
}
.skill-card:nth-child(5) {
  animation-delay: 0.3s;
}
.skill-card:nth-child(6) {
  animation-delay: 0.35s;
}
.skill-card:nth-child(7) {
  animation-delay: 0.4s;
}
.skill-card:nth-child(8) {
  animation-delay: 0.45s;
}
.skill-card:nth-child(9) {
  animation-delay: 0.5s;
}

/* Modal overlays for detailed skill information and comparisons */
.skill-detail-modal,
.skill-comparison-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.skill-detail-modal.active,
.skill-comparison-modal.active {
  opacity: 1;
  visibility: visible;
}

.skill-detail-content,
.comparison-content {
  background: linear-gradient(
    135deg,
    rgba(21, 27, 61, 0.95),
    rgba(21, 27, 61, 0.8)
  );
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideInFromTop 0.4s ease-out;
}

.comparison-content {
  max-width: 800px;
}

.skill-detail-header,
.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.skill-detail-name {
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(77, 212, 255, 0.3);
}

.skill-detail-type {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.close-detail,
.close-comparison {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-detail:hover,
.close-comparison:hover {
  color: var(--primary-blue);
  background: rgba(77, 212, 255, 0.1);
}

.skill-detail-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.skill-detail-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-detail-section {
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(232, 240, 255, 0.05),
    rgba(232, 240, 255, 0.02)
  );
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.section-title {
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-content {
  color: var(--text-secondary);
  line-height: 1.6;
}

.skill-mastery {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mastery-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  min-width: fit-content;
}

.mastery-level {
  flex: 1;
  height: 8px;
  background: rgba(232, 240, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.mastery-progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--accent-emerald),
    var(--primary-blue)
  );
  border-radius: 4px;
  transition: width 0.8s ease;
  position: relative;
}

.mastery-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 240, 255, 0.3),
    transparent
  );
  animation: shimmer 2s ease-in-out infinite;
}

.mastery-percentage {
  font-size: 0.9rem;
  color: var(--primary-blue);
  font-weight: 700;
  min-width: fit-content;
}

/* Accessibility focus states for interactive elements */
.skill-card:focus,
.character-tag:focus,
.learning-path-item:focus,
.prerequisite-tag:focus,
.application-tag:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

.skill-card[tabindex]:focus {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(77, 212, 255, 0.3);
}

.search-box input:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

.filter-group select:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Performance optimizations for smooth animations */
.skill-card {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar styling for modal content */
.skill-detail-content::-webkit-scrollbar,
.comparison-content::-webkit-scrollbar {
  width: 8px;
}

.skill-detail-content::-webkit-scrollbar-track,
.comparison-content::-webkit-scrollbar-track {
  background: rgba(77, 212, 255, 0.1);
  border-radius: 4px;
}

.skill-detail-content::-webkit-scrollbar-thumb,
.comparison-content::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--primary-blue),
    var(--accent-purple)
  );
  border-radius: 4px;
  transition: background 0.3s ease;
}

.skill-detail-content::-webkit-scrollbar-thumb:hover,
.comparison-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-cyan), var(--primary-blue));
}

/* CSS keyframe animations for entrance effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile-first responsive design breakpoints */
@media (max-width: 767px) {
  .skills-container {
    padding: 1.25rem 1rem;
    margin-top: 80px; /* Account for fixed navbar */
  }

  /* Enhanced header for mobile */
  .page-header {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }

  .floating-orb {
    display: none; /* Hide floating orbs on mobile for performance */
  }

  .page-title {
    font-size: 2.5rem;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .title-word::before {
    display: none; /* Disable 3D effect on mobile */
  }

  .page-subtitle {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0.85;
  }

  .header-stats {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .stat-bubble {
    padding: 1rem;
    min-width: 100px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Controls */
  .skills-controls {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .search-section {
    margin-bottom: 1.5rem;
  }

  .search-box {
    margin-bottom: 1rem;
  }

  .search-filters {
    gap: 0.5rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .filter-chip {
    flex-shrink: 0;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .chip-text {
    display: none;
  }

  .chip-icon {
    font-size: 1.1rem;
  }

  .controls-row {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .quick-actions {
    width: 100%;
    justify-content: space-between;
    min-width: auto;
    gap: 0.5rem;
  }

  .quick-action-btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }

  .btn-text {
    display: none;
  }

  .btn-icon {
    font-size: 1.2rem;
  }

  .advanced-filters {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .search-box {
    min-width: auto;
    width: 100%;
  }

  .search-box input {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 0.875rem 1rem 0.875rem 3rem;
  }

  .filter-group {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .filter-group label {
    font-size: 0.8rem;
    text-align: left;
  }

  .filter-group select {
    width: 100%;
    min-width: auto;
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 0.875rem 3rem 0.875rem 1rem;
  }

  /* Stats */
  .skills-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .stat-item {
    padding: 0.875rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* Learning Paths */
  .skills-learning-path {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .learning-path-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .learning-paths {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .learning-path-item {
    padding: 0.875rem;
  }

  .path-name {
    font-size: 0.9rem;
  }

  .path-description {
    font-size: 0.8rem;
  }

  .path-skills-count {
    font-size: 0.7rem;
  }

  /* Results Count */
  .results-count {
    font-size: 0.8rem;
    padding: 0.875rem;
    margin-bottom: 1rem;
  }

  /* Skills Grid */
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Skill Cards */
  .skill-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .skill-rarity {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }

  .skill-header {
    gap: 0.875rem;
    margin-bottom: 1rem;
  }

  .skill-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .mastery-circle {
    width: 40px;
    height: 40px;
  }

  .mastery-text {
    font-size: 0.6rem;
  }

  .skill-name {
    font-size: 1.1rem;
  }

  .skill-type {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }

  .skill-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .skill-meta {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .skill-difficulty,
  .skill-learning-time {
    font-size: 0.75rem;
  }

  /* Category Badge */
  .category-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  /* Difficulty */
  .skill-difficulty {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }

  /* Bonus */
  .skill-bonus {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
  }

  /* Prerequisites */
  .skill-prerequisites {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
  }

  .prerequisites-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .prerequisite-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  /* Applications */
  .skill-applications {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
  }

  .applications-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .application-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  /* Characters */
  .skill-characters {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .skill-characters-title {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .character-tag {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    gap: 0.4rem;
  }

  .character-tag-icon {
    font-size: 1.1rem;
  }

  /* Modal Adjustments */
  .skill-detail-modal,
  .skill-comparison-modal {
    padding: 1rem;
  }

  .skill-detail-content,
  .comparison-content {
    padding: 1.5rem;
    max-height: 85vh;
    border-radius: 16px;
  }

  .skill-detail-name {
    font-size: 1.5rem;
  }

  .skill-detail-type {
    font-size: 0.8rem;
  }

  .skill-detail-description {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 0.9rem;
  }

  .section-content {
    font-size: 0.85rem;
  }

  /* Disable hover effects on touch devices */
  .skill-card:hover {
    transform: none;
  }

  /* Improve touch targets */
  .character-tag,
  .prerequisite-tag,
  .application-tag,
  .learning-path-item {
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
  }

  /* Performance optimizations */
  .magic-circle,
  .particles,
  .starfield {
    display: none !important;
  }

  /* Scrolling improvements */
  body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* Skill Categories */
  .skill-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  /* Skill Grid */
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Skill Card */
  .skill-card,
  .skill-card-detailed {
    padding: 1.25rem;
    border-radius: 16px;
  }

  /* Skill Card Header */
  .skill-card-header {
    gap: 0.75rem;
  }

  .skill-card-icon {
    font-size: 1.6rem;
  }

  .skill-card-name {
    font-size: 1.1rem;
  }

  .skill-card-type {
    font-size: 0.7rem;
  }

  /* Skill Description */
  .skill-card-description {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  /* Skill Bonus */
  .skill-card-bonus {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }

  /* Action Buttons */
  .skill-actions button {
    width: 100%;
    min-height: 44px;
    font-size: 0.9rem;
    touch-action: manipulation;
  }
}

/* Small phone optimizations for very narrow screens */
@media (max-width: 479px) {
  .skills-container {
    padding: 1rem 0.75rem;
    margin-top: 75px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .page-subtitle {
    font-size: 0.85rem;
  }

  .skills-controls {
    padding: 1.25rem;
  }

  .skills-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    padding: 1.25rem;
  }

  .stat-item {
    padding: 0.75rem;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .skills-learning-path {
    padding: 1.25rem;
  }

  .skill-card {
    padding: 1rem;
  }

  .skill-name {
    font-size: 1rem;
  }

  .skill-icon {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
  }

  .skill-detail-content {
    padding: 1.25rem;
  }

  .skill-detail-name {
    font-size: 1.3rem;
  }
}

/* Tablet layout adjustments for medium screens */
@media (min-width: 768px) {
  .skills-container {
    padding: 2rem;
    margin-top: 100px;
  }

  .page-title {
    font-size: 2.6rem;
  }

  .skills-controls {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .filter-group {
    flex-direction: row;
    width: auto;
  }

  .skills-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

/* Laptop and desktop optimizations for larger screens */
@media (min-width: 1024px) {
  .skills-container {
    max-width: 1400px;
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .learning-paths {
    grid-template-columns: repeat(3, 1fr);
  }

  .skills-stats {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Large screen layout for ultra-wide displays */
@media (min-width: 1280px) {
  .skills-container {
    max-width: 1600px;
  }
}

/* Mobile performance optimizations and touch interaction improvements */
@media (max-width: 767px) {
  /* Floating Action Button on mobile */
  .floating-action-btn {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }

  .fab-icon {
    font-size: 1.3rem;
  }

  .fab-menu {
    bottom: 60px;
    right: -10px;
  }

  .fab-option {
    padding: 0.6rem 0.8rem;
    min-width: 100px;
  }

  .fab-option-text {
    font-size: 0.8rem;
  }

  /* Disable heavy background effects for better performance */
  .magic-circle,
  .particles,
  .starfield,
  .floating-element {
    display: none !important;
  }

  /* Disable hover transforms on touch devices */
  .skill-card:hover,
  .skill-card:hover .skill-icon,
  .skill-card:hover .skill-name,
  .skill-card:hover .skill-type,
  .skill-card:hover .skill-description,
  .skill-card:hover .category-badge,
  .skill-card:hover .skill-difficulty,
  .skill-card:hover .skill-bonus,
  .character-tag:hover,
  .prerequisite-tag:hover,
  .application-tag:hover,
  .learning-path-item:hover,
  .stat-item:hover {
    transform: none !important;
  }

  /* Optimize scrolling */
  body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* Reduce animations for better performance */
  .skill-card {
    animation-duration: 0.2s;
  }

  /* Improve touch interaction */
  .skill-card,
  .character-tag,
  .prerequisite-tag,
  .application-tag,
  .learning-path-item {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(77, 212, 255, 0.2);
  }

  /* Ensure proper touch targets */
  .character-tag,
  .prerequisite-tag,
  .application-tag,
  .learning-path-item,
  .close-detail,
  .close-comparison {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Accessibility support for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .skill-card,
  .skill-card-detailed {
    animation: none;
    transition: none;
  }
}
