@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --color-bg: #000;
  --color-bg-elevated: #09090b;
  --color-surface: #121214;
  --color-surface-2: #1c1c21;
  --color-border: #ffffff14;
  --color-border-hover: #ffffff29;
  --color-accent: #1d268d;
  --color-accent-hover: #2d39b8;
  --color-accent-soft: #1d268d26;
  --color-accent-glow: #1d268d59;
  --color-green: #10b981;
  --color-yellow: #f59e0b;
  --color-red: #ef4444;
  --color-blue: #3b82f6;
  --color-text-primary: #fff;
  --color-text-secondary: #a1a1aa;
  --color-text-muted: #52525b;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px #000c;
  --shadow-md: 0 8px 30px #000000b3;
  --shadow-lg: 0 16px 40px #000000e6;
  --shadow-glow: 0 0 20px var(--color-accent-glow);
  --transition-fast: .15s cubic-bezier(.16, 1, .3, 1);
  --transition-base: .25s cubic-bezier(.16, 1, .3, 1);
  --transition-slow: .4s cubic-bezier(.16, 1, .3, 1);
  --sidebar-width: 240px;
  --header-height: 64px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-bg);
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  background: var(--color-bg);
  color: var(--color-text-secondary);
  min-height: 100vh;
  font-family: Inter, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-primary);
  letter-spacing: -.02em;
  font-family: Outfit, sans-serif;
  font-weight: 600;
}

a {
  color: inherit;
  transition: color var(--transition-fast);
  text-decoration: none;
}

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

input, textarea, select {
  color: inherit;
  font-family: inherit;
}

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

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-surface-2);
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-bg);
}

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

.glass {
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: #09090bbf;
  border: 1px solid #ffffff14;
  box-shadow: inset 0 1px #ffffff0d, 0 12px 40px #0009;
}

.text-xs {
  letter-spacing: .02em;
  font-size: 11px;
}

.text-sm {
  font-size: 12px;
}

.text-base {
  font-size: 14px;
}

.text-lg {
  font-size: 16px;
}

.text-xl {
  font-size: 20px;
}

.text-2xl {
  font-size: 24px;
}

.text-3xl {
  font-family: Outfit, sans-serif;
  font-size: 32px;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-primary {
  color: var(--color-text-primary);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-accent);
}

.btn {
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  border: 1px solid #0000;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 12px #1d268d4d;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 20px #1d268d80, var(--shadow-glow);
  transform: translateY(-1.5px);
}

.btn-primary:active {
  transform: translateY(0)scale(.98);
}

.btn-secondary {
  background: var(--color-surface-2);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-surface);
  border-color: var(--color-border-hover);
  transform: translateY(-1px);
}

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

.btn-ghost {
  color: var(--color-text-secondary);
}

.btn-ghost:hover {
  background: var(--color-surface);
  color: var(--color-text-primary);
}

.btn-sm {
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
}

.badge {
  letter-spacing: .02em;
  text-transform: capitalize;
  border: 1px solid #0000;
  border-radius: 9999px;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
}

.badge-active {
  color: #10b981;
  background: #10b98114;
  border-color: #10b98126;
}

.badge-development {
  color: #f59e0b;
  background: #f59e0b14;
  border-color: #f59e0b26;
}

.badge-planned {
  color: #a1a1aa;
  background: #a1a1aa14;
  border-color: #a1a1aa26;
}

.badge-deprecated {
  color: #ef4444;
  background: #ef444414;
  border-color: #ef444426;
}

.badge-admin {
  color: #a0aec0;
  background: #1d268d1a;
  border-color: #1d268d33;
}

.badge-studio {
  color: #fff;
  border-color: var(--color-accent);
  background: #1d268d26;
}

.badge-guest {
  color: var(--color-text-secondary);
  border-color: var(--color-border);
  background: #ffffff08;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #ffffff14 0%, #ffffff05 100%);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.card-interactive {
  cursor: pointer;
}

.card-interactive:hover {
  border-color: #1d268d66;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px #000000b3, 0 0 20px #1d268d26;
}

.input {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
}

.input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft),
    0 4px 12px #00000080;
  background-color: var(--color-surface);
}

.input::placeholder {
  color: var(--color-text-muted);
}

.app-shell {
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
}

.sidebar {
  width: var(--sidebar-width);
  background: var(--color-bg);
  border-right: 1px solid var(--color-border);
  z-index: 50;
  min-height: 100vh;
  padding: var(--space-4) 0;
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.main-content {
  margin-left: var(--sidebar-current-width, var(--sidebar-width));
  flex-direction: column;
  flex: 1;
  min-height: 100vh;
  transition: margin-left .24s cubic-bezier(.16, 1, .3, 1);
  display: flex;
}

.header {
  height: var(--header-height);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 0 var(--space-8);
  align-items: center;
  gap: var(--space-4);
  z-index: 40;
  background: #000000b3;
  display: flex;
  position: sticky;
  top: 0;
}

.page-content {
  padding: var(--space-10) var(--space-8);
  max-w: 1400px;
  box-sizing: border-box;
  flex: 1;
  width: 100%;
  margin: 0 auto;
}

.page-content.full-width {
  width: 100%;
  max-width: none;
  padding: var(--space-4) var(--space-6);
}

.sidebar-logo {
  padding: var(--space-4) var(--space-6);
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  display: flex;
}

.sidebar-logo-mark {
  border-radius: var(--radius-md);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 12px #1d268d59;
}

.sidebar-nav {
  padding: 0 var(--space-4);
  flex-direction: column;
  flex: 1;
  gap: 4px;
  display: flex;
}

.nav-section-label {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: var(--space-4) var(--space-3) var(--space-2);
  font-family: Outfit, sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.nav-item {
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-4);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.nav-item:hover {
  color: var(--color-text-primary);
  background: #ffffff0a;
}

.nav-item.active {
  background: var(--color-accent-soft);
  color: #fff;
  border: 1px solid #1d268d4d;
}

.sidebar-footer {
  padding: var(--space-4) var(--space-4);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  gap: var(--space-2);
  transition: all var(--transition-base);
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #1d268d4d;
  transform: translateY(-2px);
}

.stat-value {
  color: var(--color-text-primary);
  margin-top: 4px;
  font-family: Outfit, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 500;
}

.stat-icon {
  border-radius: var(--radius-md);
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-1);
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-2 {
  gap: var(--space-6);
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.grid-3 {
  gap: var(--space-6);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.grid-4 {
  gap: var(--space-6);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: .4s cubic-bezier(.16, 1, .3, 1) forwards fadeInUp;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: .4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

.status-dot {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: inline-block;
  box-shadow: 0 0 8px;
}

.status-dot.active {
  background-color: var(--color-green);
  color: var(--color-green);
}

.status-dot.development {
  background-color: var(--color-yellow);
  color: var(--color-yellow);
}

.status-dot.planned {
  background-color: var(--color-text-muted);
  color: var(--color-text-muted);
}

.page-header {
  margin-bottom: var(--space-8);
}

.page-title {
  margin-bottom: var(--space-2);
  color: var(--color-text-primary);
  font-size: 28px;
  font-weight: 700;
}

.page-subtitle {
  color: var(--color-text-secondary);
  font-size: 13px;
}

.table-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

thead {
  border-bottom: 1px solid var(--color-border);
  background: #ffffff05;
}

th {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 600;
}

td {
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: background-color var(--transition-fast);
  padding: 16px 20px;
  font-size: 13px;
}

tbody tr {
  transition: background-color var(--transition-fast);
}

tbody tr:hover {
  background: #ffffff04;
}

tbody tr:hover td {
  color: var(--color-text-primary);
}

.modal-overlay {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: var(--space-6);
  background: #000000d9;
  justify-content: center;
  align-items: center;
  animation: .2s fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  animation: .3s cubic-bezier(.16, 1, .3, 1) fadeInUp;
  position: relative;
}

.modal-title {
  margin-bottom: var(--space-6);
  color: var(--color-text-primary);
  font-family: Outfit, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.form-group {
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-direction: column;
  display: flex;
}

.form-label {
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 500;
}

.form-row {
  gap: var(--space-4);
  display: flex;
}

.form-row .form-group {
  flex: 1;
}

select.input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.divider {
  background: var(--color-border);
  height: 1px;
  margin: var(--space-6) 0;
}

.empty-state {
  text-align: center;
  padding: var(--space-12) var(--space-6);
  color: var(--color-text-muted);
}

.empty-state-icon {
  margin-bottom: var(--space-4);
  font-size: 36px;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: .3;
  }

  50% {
    opacity: .6;
  }
}

.tool-layout {
  gap: var(--space-6);
  grid-template-columns: 360px 1fr;
  display: grid;
}

@media (max-width: 900px) {
  .tool-layout {
    grid-template-columns: 1fr;
  }
}

.checkerboard {
  background-color: #030303;
  background-image: linear-gradient(45deg, #09090b 25%, #0000 25%), linear-gradient(-45deg, #09090b 25%, #0000 25%), linear-gradient(45deg, #0000 75%, #09090b 75%), linear-gradient(-45deg, #0000 75%, #09090b 75%);
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
}

.slider-container {
  -webkit-user-select: none;
  user-select: none;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.slider-image {
  object-fit: contain;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-handle {
  cursor: ew-resize;
  z-index: 10;
  background: #fff;
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  box-shadow: 0 0 10px #1d268dcc, 0 0 20px #1d268d66;
}

.slider-button {
  border: 2px solid var(--color-accent);
  width: 38px;
  height: 38px;
  color: var(--color-accent);
  pointer-events: none;
  letter-spacing: -.05em;
  -webkit-user-select: none;
  user-select: none;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px #0009;
}

.zoom-container {
  gap: var(--space-4);
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  display: grid;
}

.zoom-image-wrapper {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  cursor: crosshair;
  height: 360px;
  padding: var(--space-2);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.zoom-magnifier {
  pointer-events: none;
  z-index: 20;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: none;
  position: absolute;
  box-shadow: 0 8px 30px #000c, inset 0 0 12px #00000080, 0 0 0 1px #1d268d66;
}

.studio-photo-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.studio-photo-card:hover {
  box-shadow: var(--shadow-lg), 
    0 0 24px #1d268d26;
  border-color: #1d268d59;
  transform: translateY(-3px);
}

.studio-photo-card img {
  transition: transform var(--transition-slow);
}

.studio-photo-card:hover img {
  transform: scale(1.05);
}

.studio-card-overlay {
  padding: var(--space-5);
  transition: all var(--transition-base);
  background: linear-gradient(to top, #000000f2 0%, #00000080 50%, #0000 100%);
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  position: absolute;
  inset: 0;
}

.studio-card-badge {
  z-index: 5;
  -webkit-backdrop-filter: blur(8px);
  background: #0009;
  border: 1px solid #ffffff14;
  position: absolute;
  top: 12px;
  right: 12px;
}

@keyframes blink-cursor {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 8px #10b981, 0 0 20px #10b9814d;
  }

  50% {
    box-shadow: 0 0 12px #10b981, 0 0 30px #10b98180;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/