:root {
  --swish-green: #00c774;
  --bg-dark: #0f1115;
  --text-light: #ffffff;
  --text-muted: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  max-width: 700px;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--swish-green);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}
