body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-image: url('../images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  display: flex;
  height: 90vh;
}

.left-section,
.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 18px;
}

/* Logo and slogan positioning */
.logo-container {
  position: relative;
  margin-bottom: 18px;
  text-align: center;
}

.logo {
  max-width: 180px;
  margin-bottom: 9px;
}

.slogan {
  max-width: 200px;
  display: block;
}

/* Title and subtitle */
.title {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 9px;
  text-align: center;
}

.subtitle {
  font-size: 1.08em;
  margin-bottom: 18px;
}

/* Button group and buttons */
.button-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

/* Fixed-width action buttons for both desktop and mobile */
.action-button {
  background: linear-gradient(45deg, #ff69b4, #8a2be2);
  color: #ffffff;
  font-size: 1.35em;
  font-weight: bold;
  padding: 15px 25px;
  border: 3px solid #ffffff;
  border-radius: 7px;
  cursor: pointer;
  text-align: center;
  width: 220px; /* Fixed width for desktop */
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

/* Smaller labels for 5X and 90 DAYS */
.short-label,
.duration-label {
  font-size: 0.72em;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: 600;
}

/* Styling for premium percentage */
.premium {
  font-size: 1.8em;
  color: #ffc559;
}

/* Styling for asset name */
.asset {
  font-size: 2.8em;
}

/* Duration label styling */
.duration-label {
  font-size: 0.75em;
  color: #ffffff;
  font-weight: 600;
  margin-top: 0;
  letter-spacing: 0.1em;
}

/* Button hover effect */
.action-button:hover {
  background: linear-gradient(45deg, #8a2be2, #ff69b4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

/* Bear image styling */
.right-section img {
  max-width: 90%;
  height: auto;
  transition: transform 0.3s ease;
}

.right-section img:hover {
  transform: scale(1.1);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1059px) {
  .container {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    padding: 9px;
    text-align: center;
  }

  .logo {
    max-width: 135px;
  }

  .slogan {
    max-width: 120px;
  }

  .title {
    font-size: 1.62em;
  }

  .subtitle {
    font-size: 0.9em;
    margin-bottom: 13.5px;
  }

  /* Button group in column mode */
  .button-group {
    gap: 10px; /* Smaller gap for stacked buttons */
  }

  /* Adjusted width for mobile */
  .action-button {
    font-size: 0.9em;
    padding: 10px 15px; /* Smaller padding for compact buttons */
    width: 140px; /* Fixed width for mobile */
    margin-left: auto;
    margin-right: auto;
  }

  .asset {
    font-size: 2.2em;
  }

  .premium {
    font-size: 1.5em;
  }

  .right-section img {
    max-width: 270px;
  }
}

/* Responsive adjustments for much smaller screens */
@media (max-width: 767px) {
  .action-button {
    font-size: 0.8em;
    padding: 2px 2px;
    width: 110px;
    margin-left: auto;
    margin-right: auto;
  }
}
