/**
 * CHANGELOG
 * v1.0.0000 — initial build
 */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #07080d;
  --bg2: #0f1117;
  --bg3: #161820;
  --gold: #f0b429;
  --gold2: #ffcf5c;
  --gold-dim: #7a5c14;
  --white: #f2f0eb;
  --muted: #888a94;
  --muted2: #555761;
  --green: #22c55e;
  --border: rgba(255,255,255,0.07);
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--white);
  background: var(--bg3);
}

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.auth-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card .logo {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}

.auth-card .auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.auth-card .divider {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.auth-card .sso-link {
  text-align: center;
}

.auth-card .sso-link a {
  color: var(--muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-card .sso-link a:hover {
  color: var(--gold);
}

.dev-log-expander {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  transition: all 0.3s;
}

.dev-log-expander.collapsed {
  height: 40px;
}

.dev-log-expander.expanded {
  height: 400px;
}

.dev-log-toggle {
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.dev-log-content {
  padding: 1rem;
  overflow-y: auto;
  max-height: 350px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.75rem;
  line-height: 1.4;
}

.dev-log-content .log-line {
  margin-bottom: 0.25rem;
  color: var(--muted);
}
