/* –– Import a clean web font –– */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

:root {
  --purple-light: #5e329a;
  --purple-dark:  #3b1a52;
  --green:        #00C37A;
  --red:          #E63232;
  --white:        #FFFFFF;
}

/* –– Reset & Base –– */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-x: hidden;
}

/* –– Entrance 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);  }
}

/* –– Container –– */
.container {
  text-align: center;
  max-width: 360px;
  width: 100%;
  animation: fadeInDown 0.8s ease-out;
  margin: 0 auto;
}

/* –– Logo –– */
.logo-container {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.logo-container img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* –– Headline –– */
h1 {
  font-size: 1.75rem;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* –– Buttons –– */
.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.button {
  background: var(--green);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  animation: fadeInUp 0.8s ease-out both;
}
.buttons-container .button:nth-child(1) { animation-delay: 0.5s; }
.buttons-container .button:nth-child(2) { animation-delay: 0.6s; }
.buttons-container .button:nth-child(3) { animation-delay: 0.7s; }
.buttons-container .button:nth-child(4) { animation-delay: 0.8s; }
.buttons-container .button:nth-child(5) { animation-delay: 0.9s; }
.buttons-container .button:nth-child(6) { animation-delay: 1.0s; }

.button:hover {
  background: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* –– Social Icons –– */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0 1rem;
}
.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
  color: var(--green);
  transform: translateY(-2px);
}

/* –– Footer –– */
footer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* –– Responsive for all phones (≤768px) –– */
@media (max-width: 768px) {
  body {
    /* 80px top, 25px sides, 100px bottom */
    padding: 80px 25px 100px;
  }
  .container {
    /* 40px top, 60px bottom */
    margin: 40px auto 60px;
    max-width: 100%;
  }
  .logo-container {
    margin-bottom: 1.2rem;
  }
  .logo-container img {
    width: 100px;
    height: 100px;
  }
  h1 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .buttons-container {
    gap: 0.75rem;
  }
  .button {
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
    border-radius: 26px;
  }
  .social-icons {
    gap: 1rem;
    margin: 1.8rem 0 1rem;
  }
  .social-icons a {
    font-size: 1.3rem;
  }
}