
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f3f3;
  color: #222;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}

.container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 900px;
  background: white;
  border-radius: 28px;
  padding: 50px 40px 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-top: 10px solid #b10000;
}

.logo {
  width: 100%;
  max-width: 520px;
  margin-bottom: 20px;
}

.pill {
  display: inline-block;
  background: #b10000;
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.15;
  color: #920000;
}

.subtitle {
  font-size: 24px;
  margin-top: 18px;
  font-weight: bold;
}

.description {
  max-width: 700px;
  margin: 30px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.primary-btn,
.secondary-btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-weight: bold;
  transition: 0.2s ease;
}

.primary-btn {
  background: #b10000;
  color: white;
}

.secondary-btn {
  background: #f0f0f0;
  color: #222;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.footer {
  margin-top: 45px;
  color: #777;
  font-size: 14px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 20px;
  }

  .description {
    font-size: 16px;
  }

  .container {
    padding: 35px 22px 45px;
  }
}
