* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Vazir', sans-serif;
  background: #F8F6F3;
  color: #1F2937;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 24px;
}

.container {
  max-width: 550px;
  width: 100%;
  text-align: center;
}

/* Logo */
.logo {
  width: 220px;
  margin-bottom: 16px;
}

/* Main message */
.title {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Secondary message */
.subtitle {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.9;
  margin-bottom: 32px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid #1F2937;
  color: #1F2937;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #1F2937;
  color: #fff;
}

/* Brand tagline */
.tagline {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #9CA3AF;
  letter-spacing: 0.3px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .logo {
    width: 170px;
  }

  .title {
    font-size: 1.05rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }
}
