* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.container {
  padding: 40px 20px;
  max-width: 500px;
}

.logo {
  width: 160px;
  margin-bottom: 30px;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffb300, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffb300, #ff6a00);
  margin: 30px auto;
  border-radius: 2px;
}

.subtext {
  font-size: 1rem;
  color: #aaaaaa;
  margin-bottom: 25px;
}

.contact {
  font-size: 0.9rem;
  color: #888888;
}

.contact a {
  color: #ffb300;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}
