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

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: #eaeaea;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  line-height: 1.6;
}

/* Headings */
h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 30px;
  animation: fadeInDown 1s ease-in-out;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 20px;
}

p {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #ddd;
  max-width: 800px;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Navigation Buttons */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

a {
  text-decoration: none;
}

.button {
  padding: 14px 30px;
  background: rgba(0, 123, 255, 0.2);
  border: 1px solid #007bff;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.button:hover {
  background: #007bff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

/* Main Content Container */
main {
  width: 100%;
  max-width: 900px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Contact Info */
.contact {
  margin-top: 30px;
  font-size: 1rem;
  animation: fadeIn 1.4s ease-in-out;
}

.contact a {
  color: #1da1f2;
  text-decoration: none;
  transition: color 0.3s;
}

.contact a:hover {
  color: #63c5ff;
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 50px;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #2a2a2a;
  width: 100%;
  text-align: center;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
