* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(120deg, #0c0f1a, #1e212f);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
}

.logo {
  width: 100px;
  margin-bottom: 25px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

p {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.5;
  opacity: 0.9;
}
