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

body {
  background-color: #fdfcf0;
  color: #212121;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.6;
}

.container {
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.logo-container {
  margin-bottom: 3rem;
}

.logo {
  font-size: 3.5rem;
  font-weight: 300;
  color: #212121;
  letter-spacing: 8px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #ff6b6b;
}

.tagline {
  font-size: 1.1rem;
  color: #212121;
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
}

.message-container {
  background-color: #f0ece2;
  padding: 3rem 2.5rem;
  border-radius: 0;
  margin-bottom: 2.5rem;
  position: relative;
}

.message-container::before,
.message-container::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #ff6b6b;
}

.message-container::before {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}

.message-container::after {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ff6b6b;
  opacity: 0.7;
}

.status-message {
  font-size: 1rem;
  line-height: 1.8;
  color: #212121;
  font-weight: 400;
  margin-bottom: 1rem;
}

.highlight {
  color: #ff6b6b;
  font-weight: 500;
  font-style: italic;
}

.divider {
  width: 50px;
  height: 1px;
  background-color: #212121;
  margin: 2rem auto;
  opacity: 0.3;
}

.coming-soon {
  font-size: 0.85rem;
  color: #212121;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
}
.contact-info {
  font-size: 0.9rem;
  color: #212121;
  margin-top: 1rem;
  opacity: 0.8;
  letter-spacing: 1px;
}
a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.8;
}
.footer-text {
  font-size: 0.8rem;
  color: #212121;
  opacity: 0.6;
  margin-top: 3rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
    letter-spacing: 6px;
  }

  .tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .message-container {
    padding: 2.5rem 1.5rem;
  }

  .status-message {
    font-size: 0.95rem;
  }
}
