@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #2c2c2c;
}

.container {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* HEADER */
header {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  height: 50px;
  width: auto;
  margin-bottom: 0.5rem;
}

.brand h2 {
  margin: 0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
}

/* MAIN CONTENT */
main {
  text-align: center;
}

main h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.message {
  font-size: 1rem;
  color: #6b6b6b;
  margin: 0 auto 2rem;
  max-width: 600px;
  line-height: 1.6;
}

.image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
}

.new-label {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
}

/* SOCIAL BUTTONS */
.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.social-buttons .btn {
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  min-width: 160px;
  justify-content: center;
}

.social-buttons .btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #0056b3, #00aaff);
}

.social-buttons i {
  font-size: 18px;
}

/* FOOTER */
.footer-message {
  font-size: 0.9rem;
  color: #9a9a9a;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    height: 45px;
  }

  .brand h2 {
    font-size: 1.4rem;
  }

  main h1 {
    font-size: 1.9rem;
  }

  .message {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 40px;
  }

  .brand h2 {
    font-size: 1.3rem;
  }

  main h1 {
    font-size: 1.6rem;
  }

  .message {
    font-size: 0.85rem;
  }

  .footer-message {
    font-size: 0.75rem;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
