* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0b0b0f;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  margin-bottom: 10px;
}
.app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
}

.logo {
  width: 42px;
  height: 42px;
  background: #2563eb;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.brand h1 {
  font-size: 18px;
}

.brand span {
  font-size: 12px;
  color: #9ca3af;
}

.app-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-text {
  opacity: 0.7;
}
