*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 700px;
  width: 100%;
}

.logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin-bottom: 3rem;
}

p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.contact {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  line-height: 2;
}

a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s;
}

a:hover {
  color: #f90;
  border-color: #f90;
}
