@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=JetBrains+Mono:wght@400;700&display=swap";
/* [project]/styles/globals.css [app-client] (css) */
:root {
  --background: #05070a;
  --foreground: #f8fafc;
  --card: #0f172a99;
  --card-border: #ffffff14;
  --primary: #00d9ff;
  --primary-glow: #00d9ff4d;
  --secondary: #7c3aed;
  --accent: #f43f5e;
  --muted: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --nav-height: 80px;
}

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

body {
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  width: 100vw;
  height: 100vh;
  font-family: Outfit, sans-serif;
  overflow: hidden;
}

.glass {
  background: var(--card);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
}

.neon-border {
  border: 1px solid var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.pulse {
  animation: 2s infinite pulse-animation;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px var(--primary-glow);
  }

  100% {
    box-shadow: 0 0 0 20px #00d9ff00;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-item-hover:hover {
  color: #fff !important;
  background: #ffffff0d !important;
}

.glass-button {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: all .2s;
}

.glass-button:hover {
  transform: translateY(-1px);
  background: #ffffff1a !important;
}

.glass-button:active {
  transform: translateY(0);
}

button {
  background: none;
  border: none;
  font-family: inherit;
}

.app-container {
  background: var(--background);
  width: 100vw;
  height: 100vh;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sidebar {
  scrollbar-width: none;
  flex-direction: column;
  display: flex;
  overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.bottom-nav {
  display: none;
}

.main-content {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 10px;
  display: flex;
  overflow: hidden;
}

.dashboard-grid {
  grid-template-columns: 1fr 350px;
  gap: 10px;
  height: 100%;
  display: grid;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .dashboard-grid > section, .dashboard-grid > div {
    min-height: 400px;
    height: auto !important;
  }
}

.radio-player {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.mobile-only {
  display: none !important;
}

.sidebar-overlay {
  display: none;
}

@media (max-width: 768px) {
  .app-container {
    flex-direction: column;
    padding-bottom: 140px;
  }

  .sidebar {
    z-index: 200;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--primary-glow);
    background: #05070afa;
    max-width: 300px;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-110%);
    width: 80% !important;
    height: calc(100% - 60px) !important;
  }

  .sidebar.mobile-open {
    transform: translateX(0);
  }

  .sidebar-overlay.visible {
    z-index: 190;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: #00000080;
    display: block;
    position: fixed;
    inset: 0 0 60px;
  }

  .bottom-nav {
    border-top: 1px solid var(--card-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 90;
    height: 60px;
    padding-bottom: env(safe-area-inset-bottom);
    background: #05070af2;
    justify-content: space-around;
    align-items: center;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .radio-player {
    bottom: 60px;
  }

  .main-content {
    width: 100vw;
    padding: 10px;
    overflow-y: hidden;
  }

  .dashboard-grid {
    flex-direction: column;
    display: flex;
    overflow-y: auto;
  }

  .mobile-only {
    display: flex !important;
  }

  .desktop-only {
    display: none !important;
  }

  .glass {
    border-radius: 12px;
  }

  h1, h2 {
    font-size: 1.2rem !important;
  }

  ::-webkit-scrollbar {
    width: 0;
  }
}

#__next-build-watcher, [data-nextjs-toast], [data-nextjs-dialog-overlay], #nextjs-portal, div[class*="Turbopack"] {
  display: none !important;
}

/*# sourceMappingURL=styles_globals_9fb35f7d.css.map*/