/* ==========================================================================
   SLIME SMP - CORE DESIGN SYSTEM
   Clean, Minimalist Dark Theme (No Emoji Clutter, Pure SVG & Typography)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Dark Slate / Obsidian Palette */
  --bg-body: #090d12;
  --bg-surface: #0f1722;
  --bg-card: #141e2c;
  --bg-card-hover: #192738;
  --bg-elevated: #1e2e42;
  --bg-input: #0c131c;

  /* Slime Green & Blue Accents */
  --accent-green: #22c55e;
  --accent-green-hover: #16a34a;
  --accent-green-subtle: rgba(34, 197, 94, 0.12);
  --accent-green-glow: rgba(34, 197, 94, 0.25);

  /* Status Colors */
  --status-online: #22c55e;
  --status-online-bg: rgba(34, 197, 94, 0.12);
  --status-offline: #ef4444;
  --status-offline-bg: rgba(239, 68, 68, 0.12);

  /* Borders & Dividers */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(34, 197, 94, 0.35);
  --border-subtle: rgba(255, 255, 255, 0.04);

  /* Typography */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-green: #4ade80;

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Sizing & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  min-height: 100vh;
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Subtle Background */
body {
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 10% 40%, rgba(16, 185, 129, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Layout Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Common Classes */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  outline: none;
}

input, select {
  font-family: inherit;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.font-mono { font-family: var(--font-mono); }
.text-green { color: var(--text-green); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }

/* SVG Icon Helper */
.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}
