:root{
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --panel: #0f0f10;
  --panel-2: #141416;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.12);
  --text: #f5f5f5;
  --text-soft: #a6a6ab;
  --text-muted: #7b7b82;
  --hover: rgba(255,255,255,0.06);
  --active: rgba(255,255,255,0.09);
  --danger: #ff4d4f;
  --success: #30ff00;
  --radius: 18px;
  --radius-sm: 12px;
  --sidebar-width: 248px;
  --sidebar-width-collapsed: 0px;
  --transition: 220ms ease;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
  width: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", sans-serif;
}

body{
  overflow-x: hidden;
}

img{
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select{
  font: inherit;
}

button{
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

a{
  color: inherit;
  text-decoration: none;
}

input{
  outline: none;
}

.btn-primary{
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-weight: 700;
  transition: transform var(--transition), opacity var(--transition);
}

.btn-primary:hover{
  transform: translateY(-1px);
}

.btn-primary:disabled{
  opacity: .7;
  cursor: not-allowed;
}

.page-loading{
  color: var(--text-soft);
  font-size: 14px;
}