@import "https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --font-heading: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg-dark: #090d16;
  --bg-surface: #0f172a;
  --bg-surface-elevated: #1e293b;
  --bg-glass-card: #1e293bb3;
  --border-glass: #ffffff14;
  --border-glass-glow: #6366f159;
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-glow: #6366f166;
  --secondary: #ec4899;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --shadow-md: 0 8px 24px #00000059;
  --shadow-lg: 0 16px 40px #00000080;
  --shadow-glow: 0 0 25px var(--primary-glow);
  --shadow-emerald: 0 0 25px #10b98159;
  --shadow-amber: 0 0 25px #f59e0b59;
  --shadow-rose: 0 0 25px #f43f5e59;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: all .25s cubic-bezier(.16, 1, .3, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body:before {
  content: "";
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
  background: radial-gradient(circle, #6366f12e 0%, #6366f100 70%);
  width: 500px;
  height: 500px;
  position: fixed;
  top: -150px;
  right: -100px;
}

body:after {
  content: "";
  z-index: -1;
  pointer-events: none;
  filter: blur(50px);
  background: radial-gradient(circle, #ec48991f 0%, #ec489900 70%);
  width: 600px;
  height: 600px;
  position: fixed;
  bottom: -150px;
  left: -100px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.glass-panel {
  background: var(--bg-glass-card);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn {
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.btn-primary {
  color: #fff;
  box-shadow: 0 4px 14px var(--primary-glow);
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px var(--primary-glow);
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  background: #ffffff14;
}

.btn-secondary:hover {
  background: #ffffff24;
  transform: translateY(-2px);
}

.btn-success {
  color: #fff;
  box-shadow: var(--shadow-emerald);
  background: linear-gradient(135deg, #10b981, #059669);
}

.btn-warning {
  color: #fff;
  box-shadow: var(--shadow-amber);
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.btn-danger {
  color: #fff;
  box-shadow: var(--shadow-rose);
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.btn-sm {
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: .85rem;
}

.badge {
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: var(--radius-full);
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex;
}

.badge-green {
  color: #34d399;
  background: #10b98126;
  border: 1px solid #10b9814d;
}

.badge-yellow {
  color: #fbbf24;
  background: #f59e0b26;
  border: 1px solid #f59e0b4d;
}

.badge-red {
  color: #fb7185;
  background: #f43f5e26;
  border: 1px solid #f43f5e4d;
}

.badge-purple {
  color: #a5b4fc;
  background: #6366f126;
  border: 1px solid #6366f14d;
}

.form-group {
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  display: flex;
}

.form-label {
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 600;
}

.form-control {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  transition: var(--transition);
  background: #0f172acc;
  outline: none;
  padding: 12px 16px;
  font-size: .95rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px #6366f140;
}

.app-header {
  z-index: 100;
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-glass);
  background: #090d16d9;
  position: sticky;
  top: 0;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
}

.brand-logo {
  font-family: var(--font-heading);
  color: #fff;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.brand-icon {
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #6366f1, #ec4899);
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  display: flex;
}

.platform-hub-bar {
  z-index: 1000;
  background: linear-gradient(90deg, #111827 0%, #1e1b4b 50%, #111827 100%);
  border-bottom: 1px solid #6366f140;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: .82rem;
  display: flex;
  position: relative;
}

.hub-title {
  color: #c7d2fe;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  display: flex;
}

.hub-links {
  align-items: center;
  gap: 6px;
  display: flex;
}

.hub-btn {
  border-radius: var(--radius-full);
  transition: var(--transition);
  color: var(--text-muted);
  background: #ffffff0d;
  border: 1px solid #ffffff14;
  padding: 4px 12px;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
}

.hub-btn:hover {
  color: #fff;
  background: #ffffff1f;
}

.hub-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  background: #000c;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-dialog {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid var(--border-glass);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  display: flex;
}

.modal-body {
  flex: 1;
  padding: 24px;
  overflow: hidden auto;
}

.modal-footer {
  border-top: 1px solid var(--border-glass);
  background: #0f172a99;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  display: flex;
}

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