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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(116.76deg, #FFD4D3 0.37%, #FFC94A 74.63%, #FFC400 99.28%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.container {
  padding: 80px 60px 120px 60px;
  width: 980px;
  height: 786px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.6s ease-out;
}

.logo {
  font-size: 48px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.tagline {
  font-size: 26px;
  font-weight: 500;
  color: #323926;
  margin-bottom: 8px;
}

.description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.5;
}

.cta-button {
  background: #C84233;
  border: none;
  height: 42px;
  border-radius: 74px;
  padding: 8px 32px;
  font-size: 20px;
  font-weight: 500;
  color: #FCFFF8;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 60px;
  text-decoration: none;
}

.cta-button:hover {
  background: #A3382E; /* recommended hover */
  transform: scale(1.05);
}

.cta-button:active {
  background: #952F25; /* pressed state */
  transform: scale(1.0);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(200, 66, 51, 0.35);
  outline-offset: 2px;
  border-radius: 80px;
}

/* Planet gallery under the CTA */
.planet-gallery {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin: 24px 0 60px 0;
}

.planet-card {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background: rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.planet-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.planet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin-top: 0;
  padding-top: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #323926;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: black;
}

.footer-links a:not(:last-child)::after {
  content: '|';
  margin-left: 8px;
  color: #323926;
}

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

@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 60px 40px 100px 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px 80px 20px;
    width: 95%;
    height: auto;
    min-height: 600px;
  }

  .logo {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .tagline {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 8px 24px;
    font-size: 14px;
    margin-bottom: 40px;
  }

  .planet-card {
    width: 110px;
    height: 110px;
    border-radius: 20px;
  }
  .planet-gallery {
    gap: 20px;
    margin-bottom: 48px;
  }

  .footer {
    bottom: 40px;
  }

  .footer-links {
    gap: 6px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 15px 60px 15px;
    width: 98%;
    min-height: 500px;
  }

  .logo {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .tagline {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .description {
    font-size: 13px;
    margin-bottom: 25px;
    line-height: 1.4;
  }

  .cta-button {
    padding: 6px 20px;
    font-size: 13px;
    margin-bottom: 30px;
  }

  .planet-card {
    width: 90px;
    height: 90px;
    border-radius: 18px;
  }
  .planet-gallery {
    gap: 14px;
    margin-bottom: 36px;
  }

  .footer {
    bottom: 30px;
  }

  .footer-links {
    gap: 4px;
    font-size: 11px;
  }

  .footer-links a:not(:last-child)::after {
    margin-left: 4px;
  }
}
