body {
  background-color: #1d1f27;
  color: #f0f0f0;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.site-title {
  font-size: 3.5em;
  color: #ff4c4c;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.invite-section {
  background-color: #2a2f45;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.invite-title {
  font-size: 2.5em;
  color: #ffdd57;
  margin-bottom: 15px;
}

.invite-description {
  font-size: 1.2em;
  color: #d0d0d0;
  margin-bottom: 25px;
}

.invite-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #7289da;
  color: #fff;
  font-size: 1.5em;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.invite-button:hover {
  background-color: #5e6bb4;
}

.footer {
  text-align: center;
  margin-top: 40px;
}

.footer-text {
  font-size: 1.1em;
  color: #b0b0b0;
}