@font-face {
  font-family: "SquadaOne-Regular";
  src: url("./fonts/SquadaOne-Regular.ttf");
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

.landing-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100dvh;
  margin: 0 auto;
  background-color: #fff;
  background: url("./images/banner-bg1.jpg") no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Background Layer */
.background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.7) 31%,
    rgba(0, 0, 0, 0) 49%,
    rgba(0, 0, 0, 0) 48.5%,
    rgba(0, 0, 0, 0.9) 75.5%,
    rgba(0, 0, 0, 1) 100%
  );
}

/* Typography */
.hero-title-primary {
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(58, 0, 0, 1);
  margin: 0;
  font-family: "SquadaOne-Regular";
}

.hero-title-secondary {
  font-family: "SquadaOne-Regular";
  font-weight: 400;
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(58, 0, 0, 1);
  margin: 0;
}

.bonus-percentage {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  text-shadow: 0px 0px 5px rgba(126, 0, 0, 1);
  color: #e3cb6f;
  line-height: 1;
}

.bonus-line {
  font-family: "Franklin Gothic Heavy", sans-serif;
  font-size: 23px;
  text-align: center;
  color: #ffffff;
  display: block;
}

/* Layout Styles */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}

.logo {
  width: 190px;
  /* height: 113px; */
  object-fit: contain;
  margin-bottom: 20px;
}
.hero-section {
  position: relative;
  z-index: 10;
  padding: 0px 10px;
  text-align: center;
}

.hero-text {
  max-width: 941px;
  margin: 0 auto;
}

.social-media {
  position: absolute;
  left: 15px;
  top: 40%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.social-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

.character-section {
  position: relative;
  z-index: 5;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.character-image {
  object-fit: contain;
  position: relative;
  z-index: 6;
  max-width: 70%;
}

.shadow-ellipse {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
/* 
.shadow-left {
  width: 105px;
  height: 13px;
  left: 118px;
  top: 820px;
}

.shadow-right {
  width: 156px;
  height: 13px;
  right: 317px;
  top: 826px;
} */

.bonus-section {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.action-section {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  padding: 0;
}

.disclaimer {
  position: relative;
  z-index: 10;
  margin-top: 15px;
  padding-bottom: 15px;
}

.disclaimer p {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  text-align: center;
  color: #ffffff;
}

/* Component Styles */
.bonus-card {
  background: transparent;
  border: 2px solid #ffffff;
  border-radius: 15px;
  box-shadow: 0px 0px 4px 5px rgba(238, 192, 74, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 8px 8px rgba(238, 192, 74, 0.7);
}

.bonus-content {
  text-align: center;
  padding: 10px 20px;
  background: #00000038;
}
.bonus-text {
  margin-top: 10px;
}

.whatsapp-btn {
  background-color: #ffffff;
  border: none;
  border-radius: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 5px 10px 5px 5px;
}

.whatsapp-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:active {
  transform: translateY(0);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.whatsapp-btn span {
  font-family: "Saira Semi Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  text-align: center;
}

/* Responsive Components */

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

.slide-up {
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
