/* ===== Desktop Dashboard Gaming Styles ===== */
/* Only for Desktop - No Mobile/Tablet Styles */

/* Desktop Main Wrapper */
.desktop-dashboard-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0f, #1a1a2e, #16213e);
  position: relative;
  overflow: hidden;
}

.desktop-dashboard-wrapper::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 0, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: desktop-bg-pulse 10s ease-in-out infinite;
}

@keyframes desktop-bg-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Desktop Layout Container */
.desktop-dashboard-container {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Desktop Sidebar */
.desktop-dashboard-sidebar {
  width: 300px;
  background: rgba(22, 33, 62, 0.95);
  backdrop-filter: blur(25px);
  border-right: 1px solid rgba(168, 85, 247, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.desktop-dashboard-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(168, 85, 247, 0.05) 0%,
    rgba(0, 255, 255, 0.02) 50%,
    rgba(168, 85, 247, 0.05) 100%
  );
  pointer-events: none;
  animation: desktop-sidebar-glow 8s ease-in-out infinite;
}

@keyframes desktop-sidebar-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.desktop-dashboard-sidebar-glow {
  box-shadow:
    inset 0 0 60px rgba(168, 85, 247, 0.1),
    0 0 40px rgba(168, 85, 247, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Desktop Sidebar Header */
.desktop-dashboard-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  position: relative;
  z-index: 10;
}

.desktop-dashboard-header-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.desktop-dashboard-header-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-game-purple-600), var(--color-game-purple-800));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
  position: relative;
  overflow: hidden;
}

.desktop-dashboard-header-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: desktop-icon-shimmer 4s linear infinite;
}

@keyframes desktop-icon-shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.desktop-dashboard-header-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  background: linear-gradient(45deg, var(--color-game-purple-300), var(--color-game-neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: desktop-text-glow 3s ease-in-out infinite alternate;
}

.desktop-dashboard-header-text p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin: 0;
  opacity: 0.9;
}

@keyframes desktop-text-glow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.3); }
}

/* Desktop User Info */
.desktop-dashboard-user {
  padding: 2rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  position: relative;
  z-index: 10;
}

.desktop-dashboard-user-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.desktop-dashboard-user-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-dashboard-user-content:hover::before {
  left: 100%;
}

.desktop-dashboard-user-content:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
  transform: translateY(-2px);
}

.desktop-dashboard-user-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-game-purple-500), var(--color-game-neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
  animation: desktop-avatar-pulse 4s ease-in-out infinite;
}

@keyframes desktop-avatar-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 35px rgba(168, 85, 247, 0.6);
    transform: scale(1.05);
  }
}

.desktop-dashboard-user-status {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid rgba(22, 33, 62, 0.95);
  background: var(--color-game-neon-green);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
  animation: desktop-status-pulse 2s infinite;
}

@keyframes desktop-status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.desktop-dashboard-user-info {
  flex: 1;
  min-width: 0;
}

.desktop-dashboard-user-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-dashboard-user-role {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
  opacity: 0.8;
}

.desktop-dashboard-user-indicator {
  width: 10px;
  height: 10px;
  background: var(--color-game-neon-cyan);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  animation: desktop-indicator-glow 3s infinite;
}

@keyframes desktop-indicator-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
  }
}

/* Desktop Navigation Menu */
.desktop-dashboard-nav {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  position: relative;
  z-index: 10;
}

.desktop-dashboard-nav::-webkit-scrollbar {
  width: 8px;
}

.desktop-dashboard-nav::-webkit-scrollbar-track {
  background: rgba(26, 26, 46, 0.3);
  border-radius: 4px;
}

.desktop-dashboard-nav::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--color-game-purple-500), var(--color-game-purple-700));
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.desktop-dashboard-nav::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--color-game-neon-cyan), var(--color-game-purple-600));
}

.desktop-dashboard-menu-item {
  width: 100%;
  margin-bottom: 0.75rem;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 14px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.desktop-dashboard-menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.15), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-dashboard-menu-item:hover::before {
  left: 100%;
}

.desktop-dashboard-menu-item:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 8px 35px rgba(168, 85, 247, 0.25);
  transform: translateY(-3px);
}

.desktop-dashboard-menu-item.active {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
}

.desktop-dashboard-menu-item.active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--color-game-neon-cyan), var(--color-game-purple-500));
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  border-radius: 0 4px 4px 0;
}

.desktop-dashboard-menu-content {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.desktop-dashboard-menu-icon {
  width: 48px;
  height: 48px;
  background: rgba(168, 85, 247, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-game-purple-300);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.desktop-dashboard-menu-icon.active {
  background: linear-gradient(135deg, var(--color-game-purple-600), var(--color-game-neon-cyan));
  color: white;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
  animation: desktop-icon-float 3s ease-in-out infinite;
}

@keyframes desktop-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.desktop-dashboard-menu-item:hover .desktop-dashboard-menu-icon {
  background: rgba(168, 85, 247, 0.2);
  color: var(--color-game-neon-cyan);
  transform: scale(1.1) rotate(5deg);
}

.desktop-dashboard-menu-text {
  flex: 1;
  min-width: 0;
}

.desktop-dashboard-menu-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-dashboard-menu-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-dashboard-menu-arrow {
  color: var(--color-game-purple-400);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}

.desktop-dashboard-menu-arrow.active {
  color: var(--color-game-neon-cyan);
  transform: rotate(90deg);
}

.desktop-dashboard-menu-item:hover .desktop-dashboard-menu-arrow {
  color: var(--color-game-neon-cyan);
  transform: translateX(6px) scale(1.2);
}

/* Desktop Section Divider */
.desktop-dashboard-divider {
  margin: 2rem 0 1.5rem 0;
}

.desktop-dashboard-divider-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-dashboard-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(168, 85, 247, 0.4),
    rgba(0, 255, 255, 0.4),
    rgba(168, 85, 247, 0.4),
    transparent
  );
  border-radius: 1px;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.desktop-dashboard-divider-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-game-purple-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  background: linear-gradient(45deg, var(--color-game-purple-300), var(--color-game-neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: desktop-divider-glow 4s ease-in-out infinite alternate;
}

@keyframes desktop-divider-glow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.4); }
}

/* Desktop Content Area */
.desktop-dashboard-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Desktop Header Bar */
.desktop-dashboard-topbar {
  background: rgba(22, 33, 62, 0.95);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.desktop-dashboard-topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(168, 85, 247, 0.03) 0%,
    rgba(0, 255, 255, 0.02) 50%,
    rgba(168, 85, 247, 0.03) 100%
  );
  pointer-events: none;
}

.desktop-dashboard-topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.desktop-dashboard-topbar-left h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.5rem 0;
  background: linear-gradient(45deg, var(--color-game-purple-300), var(--color-game-neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: desktop-title-glow 4s ease-in-out infinite alternate;
}

.desktop-dashboard-topbar-left p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin: 0;
  opacity: 0.9;
}

@keyframes desktop-title-glow {
  0% { filter: brightness(1); text-shadow: 0 0 20px rgba(168, 85, 247, 0.3); }
  100% { filter: brightness(1.3); text-shadow: 0 0 30px rgba(0, 255, 255, 0.4); }
}

.desktop-dashboard-topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-dashboard-topbar-button {
  width: 56px;
  height: 56px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-game-purple-300);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.desktop-dashboard-topbar-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.15), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-dashboard-topbar-button:hover::before {
  left: 100%;
}

.desktop-dashboard-topbar-button:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
  color: var(--color-game-neon-cyan);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
  transform: translateY(-3px);
}

.desktop-dashboard-topbar-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.desktop-dashboard-topbar-user::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.15), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-dashboard-topbar-user:hover::before {
  left: 100%;
}

.desktop-dashboard-topbar-user:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.desktop-dashboard-topbar-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-game-purple-500), var(--color-game-neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.desktop-dashboard-topbar-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.desktop-dashboard-topbar-arrow {
  color: var(--color-game-purple-400);
  font-size: 0.875rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-dashboard-topbar-user:hover .desktop-dashboard-topbar-arrow {
  transform: rotate(180deg);
  color: var(--color-game-neon-cyan);
}

/* Desktop Page Content */
.desktop-dashboard-page {
  flex: 1;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.desktop-dashboard-main-card {
  background: rgba(22, 33, 62, 0.95);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(168, 85, 247, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: desktop-card-appear 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s ease;
}

.desktop-dashboard-main-card.loading {
  opacity: 0.7;
  transform: scale(0.98);
}

.desktop-dashboard-main-card.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
  animation: desktop-loading-sweep 1.5s infinite;
}

@keyframes desktop-loading-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes desktop-card-appear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.desktop-dashboard-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.02) 0%,
    rgba(0, 255, 255, 0.01) 50%,
    rgba(168, 85, 247, 0.02) 100%
  );
  pointer-events: none;
}

/* Desktop Error Container */
.desktop-dashboard-error {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.desktop-dashboard-error-icon {
  margin-bottom: 2rem;
  animation: desktop-error-float 3s ease-in-out infinite;
}

@keyframes desktop-error-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-2deg); }
  75% { transform: translateY(-4px) rotate(2deg); }
}

.desktop-dashboard-error-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
  background: linear-gradient(45deg, var(--color-game-purple-300), var(--color-game-neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.desktop-dashboard-error-description {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin: 0;
  opacity: 0.9;
}

/* Desktop Animation Classes */
.desktop-fade-in {
  animation: desktop-fade-in 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-slide-up {
  animation: desktop-slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-glow-effect {
  position: relative;
}

.desktop-glow-effect::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(45deg, var(--color-game-purple-500), var(--color-game-neon-cyan));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-glow-effect:hover::after {
  opacity: 0.6;
}

/* Desktop Tooltip */
.desktop-tooltip {
  position: relative;
}

.desktop-tooltip:hover::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 15, 0.95);
  color: var(--color-text-primary);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  z-index: 100;
  border: 1px solid rgba(168, 85, 247, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  animation: desktop-tooltip-appear 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-tooltip:hover::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(1px);
  border: 6px solid transparent;
  border-top-color: rgba(10, 10, 15, 0.95);
  z-index: 100;
}

@keyframes desktop-tooltip-appear {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes desktop-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes desktop-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop Alpine.js Transitions */
[x-cloak] {
  display: none !important;
}

.desktop-slide-enter {
  transform: translateX(-100%);
}

.desktop-slide-enter-active {
  transform: translateX(0);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-slide-leave-active {
  transform: translateX(-100%);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-fade-enter {
  opacity: 0;
}

.desktop-fade-enter-active {
  opacity: 1;
  transition: opacity 400ms ease-out;
}

.desktop-fade-leave-active {
  opacity: 0;
  transition: opacity 300ms ease-out;
}

.desktop-scale-enter {
  opacity: 0;
  transform: scale(0.9);
}

.desktop-scale-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 400ms ease-out, transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-scale-leave-active {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 250ms ease-in, transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
