body {
  background-color: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0 1em;
  line-height: 1.6;
}

/* Logo */
.logo {
  display: block;
  margin: 2em auto 1em auto;
  max-width: 150px;
  border-radius: 8px;
}

/* Heading */
h1 {
  font-size: 1.8em;
  margin: 0.3em 0;
}

/* Larger Intro Text + tighter spacing */
.intro {
  max-width: 600px;
  margin: 0.5em auto 1em auto;
  font-size: 1.25em;
  line-height: 1.6;
}

/* Divider with reduced spacing */
hr {
  border: 0;
  border-top: 1px solid #555;
  margin: 1.2em auto;
  width: 80%;
}

/* Button Styling */
.button {
  display: block;
  background: #111;
  border: 2px solid #4d94ff;
  color: #cce0ff;
  padding: 15px;
  margin: 1em auto;
  text-decoration: none;
  width: 85%;
  max-width: 500px;
  font-size: 1.2em;
  border-radius: 20px;
}

.button:hover {
  background: #1a1a1a;
}

/* Social icons row at bottom */
.social-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 2em;
  margin-bottom: 2em;
}

.social-icon svg {
  width: 38px;
  height: 38px;
  fill: white;
  transition: opacity 0.2s;
}

.social-icon:hover svg {
  opacity: 0.7;
}