body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: url("../images/HF-Background-Animated.gif") center center / cover no-repeat fixed;
  color: #fff;
  overflow: hidden;
  height: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 1600px;
  height: 100vh;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 5vw;
}

.logo {
  width: clamp(120px, 20vw, 300px);
  animation: logoPan 4s ease-in-out infinite alternate;
  margin-bottom: 30px;
}

@keyframes logoPan {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}

.main-heading {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin: 0 0 10px;
}

.sub-heading {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: #e01b24;
  margin: 0 0 30px;
  max-width: 1000px;
}

.sub-heading:nth-of-type(n + 2) {
  display: none !important;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.btn img {
  width: clamp(200px, 20vw, 320px);
  transition: transform 0.3s ease;
}

.btn:hover img {
  transform: scale(1.1);
}

.trusted {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hf-rivals-logo {
  width: auto;
  height: auto;
  max-width: none;
  margin-bottom: 20px;
}

.trusted .stars {
  width: clamp(240px, 24vw, 480px);
  margin-top: 30px;
  margin-bottom: 20px;
}

.footer {
  text-align: center;
  padding: 20px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.footer .disclaimer {
  width: 90%;
  max-width: 600px;
  transform: scale(1.1);
  transform-origin: center;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2.2rem;
  }
  .sub-heading {
    font-size: 1rem;
  }
  .btn img {
    width: 180px;
  }
  .trusted .stars {
    width: 150px;
  }
}
