@import "https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Fira+Code&display=swap";

/* src/styles.scss */
:root {
  --dt-bg-primary: #171D2C;
  --dt-bg-secondary: #222B40;
  --dt-bg-interactive: rgba(255, 255, 255, 0.05);
  --dt-bg-interactive-hover: rgba(255, 255, 255, 0.07);
  --gradient-aurora-primary:
    linear-gradient(
      135deg,
      #00d4ff 0%,
      #5865f2 50%,
      #ff006e 100%);
  --gradient-aurora-secondary:
    linear-gradient(
      135deg,
      #00d4ff 0%,
      #5865f2 50%,
      #ff006e 100%);
  --gradient-aurora-cta:
    linear-gradient(
      135deg,
      #ff006e 0%,
      #5865f2 50%,
      #00d4ff 100%);
  --gradient-aurora-accent:
    linear-gradient(
      135deg,
      #5865f2 0%,
      #00d4ff 100%);
  --dt-text-primary: #F0F2FF;
  --dt-text-secondary: #B0B3C8;
  --dt-text-tertiary: #797C93;
  --dt-text-link: #00d4ff;
  --dt-text-link-hover: #5865f2;
  --dt-border-subtle: rgba(176, 179, 200, 0.2);
  --dt-border-strong: rgba(176, 179, 200, 0.4);
  --dt-success-glow: #00d4ff;
  --dt-pending-glow: #5865f2;
  --dt-error-glow: #FF005C;
  --lt-bg-primary: #F8F9FA;
  --lt-bg-secondary: #FFFFFF;
  --lt-bg-interactive-hover: rgba(0, 0, 0, 0.03);
  --lt-gradient-primary-accent:
    linear-gradient(
      135deg,
      #ff6b35 0%,
      #f7931e 25%,
      #ffd23f 50%,
      #ff6b9d 75%,
      #c44569 100%);
  --lt-gradient-secondary-accent:
    linear-gradient(
      135deg,
      #f7931e 0%,
      #ffd23f 50%,
      #ff6b9d 100%);
  --lt-gradient-cta:
    linear-gradient(
      135deg,
      #c44569 0%,
      #ff6b9d 50%,
      #ffd23f 100%);
  --lt-gradient-accent:
    linear-gradient(
      135deg,
      #ff6b35 0%,
      #f7931e 100%);
  --lt-text-primary: #1A202C;
  --lt-text-secondary: #4A5568;
  --lt-text-tertiary: #718096;
  --lt-text-link: #f7931e;
  --lt-text-link-hover: #ff6b35;
  --lt-border-subtle: #E2E8F0;
  --lt-success-text: #f7931e;
  --lt-pending-text: #ff6b35;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.7;
  background-color: var(--dt-bg-primary);
  color: var(--dt-text-secondary);
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Space Grotesk",
    "Orbitron",
    "Montserrat",
    sans-serif;
  color: var(--dt-text-primary);
  letter-spacing: 0.5px;
}
h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  background: var(--gradient-aurora-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.5rem 0;
}
h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--dt-border-subtle);
}
h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}
h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1.8rem;
  font-size: 1.1rem;
}
a {
  color: var(--dt-text-link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, filter 0.2s ease;
}
.ai-highlight {
  display: inline-block;
  background: var(--gradient-aurora-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.ai-highlight-green {
  display: inline-block;
  background: var(--gradient-aurora-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.illuminate-card {
  border-radius: 12px;
  background-color: var(--dt-bg-secondary);
  border: 1px solid var(--dt-border-subtle);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out,
    outline 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
  outline-offset: 2px;
  outline: 2px solid transparent;
}
.illuminate-card:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(0, 239, 255, 0.15),
    0 0 25px rgba(0, 255, 135, 0.1);
}
.illuminate-card:focus-visible {
  transform: translateY(-5px) scale(1.005);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.18),
    0 0 12px var(--dt-text-link-hover),
    0 0 20px rgba(168, 187, 255, 0.3);
  outline: 2px solid var(--dt-text-link-hover);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.button:focus-visible {
  outline: 2px solid var(--dt-text-link);
}
.button-primary {
  background: var(--gradient-aurora-primary);
  color: var(--dt-text-primary);
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}
.button-secondary {
  background: var(--dt-bg-secondary);
  color: var(--dt-text-secondary);
  border: 1px solid var(--dt-border-subtle);
}
.button-secondary:hover {
  background: var(--dt-bg-interactive-hover);
  color: var(--dt-text-primary);
  border-color: var(--dt-text-link);
}
.button-cta {
  background: var(--gradient-aurora-cta);
  color: var(--dt-text-primary);
}
.button-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 92, 0.3);
}
.section-padding {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.8rem;
}
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--dt-text-secondary);
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}
.mobile-sidebar-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 999999;
  background: var(--dt-bg-interactive);
  border: 1px solid var(--dt-border-subtle);
  color: var(--dt-text-primary);
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.mobile-sidebar-toggle:hover {
  background: var(--dt-bg-interactive-hover);
  border-color: var(--dt-border-strong);
}
.sidebar {
  width: 160px;
  background: var(--dt-bg-secondary);
  border-right: 1px solid var(--dt-border-subtle);
  padding: 1.5rem;
  height: 100vh;
  overflow-y: auto;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sidebar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }
}
.sidebar.collapsed {
  width: 70px;
  padding: 1rem 0.5rem;
}
.sidebar-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0.5rem 0 1rem 0;
  border-bottom: 1px solid var(--dt-border-subtle);
  min-height: 3rem;
  padding-right: 2rem;
}
.sidebar.collapsed .sidebar-header {
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  align-items: center;
  min-height: 2.5rem;
}
.sidebar-logo-full {
  font-family:
    "Space Grotesk",
    "Orbitron",
    sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  background:
    linear-gradient(
      135deg,
      #00d4ff 0%,
      #5865f2 40%,
      #ff006e 70%,
      #ff69b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
  line-height: 1;
  text-decoration: none;
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 2rem;
  padding-top: 0.125rem;
  margin-right: 0;
}
.sidebar.collapsed .sidebar-logo-full {
  opacity: 0;
  transform: translateX(-20px);
  position: absolute;
  pointer-events: none;
  width: 0;
  overflow: hidden;
  left: -100px;
}
.sidebar-logo-collapsed {
  display: none;
  font-family:
    "Space Grotesk",
    "Orbitron",
    sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  background:
    linear-gradient(
      135deg,
      #00d4ff 0%,
      #5865f2 40%,
      #ff006e 70%,
      #ff69b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  position: relative;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 1.2;
  width: 100%;
  pointer-events: none;
}
.sidebar.collapsed .sidebar-logo-collapsed {
  display: block;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  left: auto;
  transform: none;
  text-align: center;
  width: 100%;
}
.sidebar-logo-collapsed .logo-k-blue {
  display: inline-block;
  font-weight: 700;
  position: relative;
}
.sidebar-logo-collapsed .logo-ai-aurora {
  display: inline-block;
  font-weight: 700;
}
.sidebar-toggle-desktop {
  background: transparent;
  border: none;
  padding: 0.4rem;
  color: var(--dt-text-secondary);
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  z-index: 1001;
  border-radius: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.collapsed .sidebar-toggle-desktop {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
  z-index: 1002;
  min-width: 24px;
  min-height: 24px;
  padding: 0.3rem;
}
.sidebar-toggle-desktop:hover {
  color: var(--dt-text-secondary);
  background-color: transparent;
  transform: translateY(-50%);
}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}
.sidebar-nav li a {
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  color: var(--dt-text-secondary);
  font-weight: 500;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    outline 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.sidebar.collapsed .sidebar-nav li a {
  justify-content: center;
  padding: 0.9rem 0.5rem;
}
.sidebar-nav li a span {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0.8rem;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  background-color: var(--dt-bg-interactive-hover);
  color: var(--dt-text-primary);
}
.sidebar-nav li a:focus-visible {
  background-color: var(--dt-bg-interactive-hover);
  color: var(--dt-text-primary);
  outline: 2px solid var(--dt-text-link-hover);
}
.sidebar-nav li a:hover lucide-icon,
.sidebar-nav li a.active lucide-icon,
.sidebar-nav li a:focus-visible lucide-icon {
  color: var(--dt-text-link-hover);
}
.sidebar-nav li a lucide-icon {
  width: 20px;
  text-align: center;
  color: var(--dt-text-link);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.sidebar.collapsed .sidebar-nav li a lucide-icon {
  margin-left: 0;
  transform: scale(1.1);
}
.sidebar.collapsed .sidebar-nav li a span {
  opacity: 0 !important;
  transform: translateX(-10px) !important;
  position: absolute !important;
  pointer-events: none !important;
  width: 0 !important;
  overflow: hidden !important;
  left: -100px !important;
}
.logout-link {
  margin-top: auto;
  border-top: 1px solid var(--dt-border-subtle);
  padding-top: 1rem;
}
.dashboard {
  max-width: 1200px;
  margin: 0 auto;
}
.dashboard-header {
  margin-bottom: 2.5rem;
  text-align: center;
}
.dashboard-header h1 {
  margin-bottom: 1rem;
  background: var(--gradient-aurora-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  font-weight: 700;
}
.kai-inline-insight {
  font-size: 1.1rem;
  color: var(--dt-text-secondary);
  margin-bottom: 2.5rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.kai-inline-insight strong {
  color: var(--dt-text-primary);
}
.kai-inline-insight .ai-highlight {
  background: var(--gradient-aurora-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dashboard-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.illuminate-card {
  padding: 2rem;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.kai-logo {
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--gradient-aurora-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-icc {
  font-weight: 600;
  color: var(--dt-text-secondary);
  font-size: 1rem;
}
.pro-tag {
  background: var(--dt-text-link);
  color: var(--dt-bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.notification-dot {
  width: 8px;
  height: 8px;
  background: #ff006e;
  border-radius: 50%;
  margin-top: 0.5rem;
}
.card-category {
  font-size: 0.8rem;
  color: var(--dt-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.illuminate-card h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  color: var(--dt-text-primary);
  line-height: 1.3;
}
.card-subtitle {
  color: var(--dt-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.progress-section {
  margin-top: auto;
}
.progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: var(--gradient-aurora-primary);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.hub-link a {
  color: var(--dt-text-link);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.hub-link a:hover {
  color: var(--dt-text-link-hover);
}
#community-trending {
  grid-area: community;
  margin-bottom: 2.5rem;
}
.trending-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--dt-error-glow);
  background: rgba(255, 0, 92, 0.1);
  padding: 0.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.light-theme {
  background-color: var(--lt-bg-primary);
  color: var(--lt-text-secondary);
}
body.light-theme strong {
  color: var(--lt-text-primary);
}
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
  color: var(--lt-text-primary);
}
body.light-theme h1 {
  background: var(--lt-gradient-primary-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.light-theme .ai-highlight {
  background: var(--lt-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.light-theme .ai-highlight-cta {
  background: var(--lt-gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.light-theme .illuminate-card {
  background-color: var(--lt-bg-secondary);
  border-color: var(--lt-border-subtle);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
body.light-theme .illuminate-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 25px rgba(255, 107, 53, 0.4),
    0 0 35px rgba(247, 147, 30, 0.3);
}
body.light-theme .button-primary {
  background: var(--lt-text-link);
  color: #fff;
  box-shadow: 0 3px 10px rgba(247, 147, 30, 0.25);
}
body.light-theme .button-primary:hover {
  background: var(--lt-text-link-hover);
  filter: brightness(1.1);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}
body.light-theme .button-secondary {
  color: var(--lt-text-link);
  border-color: var(--lt-text-link);
  border-radius: 50px;
  background-color: transparent;
}
body.light-theme .button-secondary:hover {
  background-color: var(--lt-text-link);
  color: #fff;
  border-color: var(--lt-text-link);
  border-radius: 50px;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(247, 147, 30, 0.2);
}
body.light-theme .button-cta {
  background: var(--lt-gradient-cta);
  color: #fff;
  box-shadow: 0 3px 10px rgba(196, 69, 105, 0.25);
}
body.light-theme .button-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 5px 15px rgba(196, 69, 105, 0.3);
}
body.light-theme h2 {
  border-bottom-color: var(--lt-border-subtle);
}
body.light-theme p {
  color: var(--lt-text-primary);
}
body.light-theme .section-subtitle {
  color: var(--lt-text-secondary);
}
body.light-theme .section-title {
  color: var(--lt-text-primary);
}
body.light-theme .mobile-sidebar-toggle {
  background: var(--lt-bg-secondary);
  border-color: var(--lt-border-subtle);
  color: var(--lt-text-secondary);
}
body.light-theme .mobile-sidebar-toggle:hover {
  background: var(--lt-bg-interactive-hover);
  color: var(--lt-text-primary);
}
body.light-theme .sidebar {
  background-color: var(--lt-bg-secondary);
  border-right-color: var(--lt-border-subtle);
}
body.light-theme .sidebar-logo-collapsed {
  color: var(--lt-text-primary);
}
body.light-theme .sidebar-toggle-desktop {
  color: var(--lt-text-tertiary);
}
body.light-theme .sidebar-toggle-desktop:hover {
  color: var(--lt-text-primary);
  background: var(--lt-bg-interactive-hover);
}
body.light-theme .sidebar-nav li a {
  color: var(--lt-text-secondary);
}
body.light-theme .sidebar-nav li a:hover,
body.light-theme .sidebar-nav li a.active {
  background-color: var(--lt-bg-interactive-hover);
  color: var(--lt-text-primary);
}
body.light-theme .sidebar-nav li a lucide-icon {
  color: var(--lt-text-link);
}
body.light-theme .logout-link {
  border-top-color: var(--lt-border-subtle);
}
body.light-theme .kai-chat-input-dashboard {
  background: var(--lt-bg-primary);
  border-color: var(--lt-border-subtle);
  color: var(--lt-text-primary);
}
body.light-theme .kai-chat-input-dashboard:focus {
  border-color: var(--lt-text-link);
}
body.light-theme .kai-chat-input-dashboard::placeholder {
  color: var(--lt-text-tertiary);
}
body.light-theme .send-icon {
  color: var(--lt-text-link);
}
body.light-theme .send-icon:hover {
  color: var(--lt-text-link-hover);
  background: var(--lt-bg-interactive-hover);
}
body.light-theme .kai-chat-actions {
  border-top-color: var(--lt-border-subtle);
}
body.light-theme .path-goal {
  color: var(--lt-text-link);
}
body.light-theme .category {
  color: var(--lt-text-tertiary);
}
body.light-theme .path-card h4 {
  color: var(--lt-text-primary);
}
body.light-theme .progress-bar-container {
  background: rgba(0, 0, 0, 0.1);
}
body.light-theme .progress-bar {
  background: var(--lt-gradient-accent);
}
body.light-theme .trending-indicator {
  color: var(--lt-error-glow);
  background: rgba(255, 107, 53, 0.1);
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
  h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .mobile-sidebar-toggle {
    display: block;
  }
  .dashboard-content-grid {
    gap: 2rem;
  }
  .kai-chat-widget {
    padding: 1.5rem;
  }
  .path-card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .path-card {
    padding: 1rem;
  }
  .section-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
@media (min-width: 769px) {
  .sidebar .sidebar-nav li a {
    justify-content: flex-start;
    padding: 0.9rem 1rem;
  }
  .sidebar .sidebar-nav li a span {
    opacity: 1;
    transform: translateX(0);
    position: static;
    margin-left: 0.8rem;
  }
  .sidebar .sidebar-nav li a lucide-icon {
    margin-left: 0;
    transform: scale(1);
  }
  .sidebar .sidebar-toggle-desktop {
    display: block;
  }
  .mobile-sidebar-toggle {
    display: none;
  }
}
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background: var(--dt-bg-primary);
  z-index: 99999;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  overflow-y: auto;
  display: none;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}
body:has(.mobile-sidebar-overlay.expanded-mobile) {
  overflow: hidden;
}
@media (max-width: 768px) {
  .mobile-sidebar-overlay {
    display: block;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
  }
  .mobile-sidebar-overlay.expanded-mobile {
    left: 0 !important;
    transform: translateX(0);
  }
  .mobile-sidebar-overlay .sidebar-header {
    padding-right: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--dt-border-subtle);
    padding-bottom: 1rem;
  }
  .mobile-sidebar-overlay .sidebar-logo-full {
    font-family:
      "Space Grotesk",
      "Orbitron",
      sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    background:
      linear-gradient(
        135deg,
        #00d4ff 0%,
        #5865f2 40%,
        #ff006e 70%,
        #ff69b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    opacity: 1;
    transform: none;
    position: relative;
    left: auto;
    width: auto;
    overflow: visible;
    pointer-events: auto;
  }
  .mobile-sidebar-overlay .sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1.5rem;
  }
  .mobile-sidebar-overlay .sidebar-nav li a {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    color: var(--dt-text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
  }
  .mobile-sidebar-overlay .sidebar-nav li a span {
    margin-left: 0.8rem;
    font-size: 1.1rem;
  }
  .mobile-sidebar-overlay .sidebar-nav li a:hover,
  .mobile-sidebar-overlay .sidebar-nav li a.active {
    background-color: var(--dt-bg-interactive-hover);
    color: var(--dt-text-primary);
  }
  .mobile-sidebar-overlay .logout-link {
    margin-top: auto;
    border-top: 1px solid var(--dt-border-subtle);
    padding-top: 1rem;
  }
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
