/* Stylish Monotone Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Palette: Strict Black & White */
  --bg-body: #050505;
  --bg-card: #0A0A0A;
  --bg-hover: #1F1F1F;

  --text-main: #FFFFFF;
  --text-muted: #9CA3AF;
  /* Cool Grey */

  --border-light: #262626;
  --border-strong: #404040;

  /* Accents - MONOCHROME ONLY */
  --accent-primary: #FFFFFF;
  --accent-inverse: #000000;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.5;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography styles */
h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Stylish Monochrome Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--accent-primary);
  color: var(--accent-inverse);
  border: 1px solid var(--accent-primary);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-primary);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--text-main);
  background-color: var(--bg-hover);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #7f1d1d;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}

.btn-danger:hover {
  background-color: #7f1d1d;
}

/* Cards */
.card-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 0;
  /* Sharp corners for "Stylish" look? keeping slight radius for modern feel */
  border-radius: 6px;
}

/* Inputs */
input,
textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text-main);
  padding: 12px;
  border-radius: 4px;
  outline: none;
  font-family: var(--font-main);
}

input:focus,
textarea:focus {
  border-color: var(--accent-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}