body {
  margin: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  background: radial-gradient(ellipse at right, #2d0d13 60%, #0d0d0d 100%);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.landing_page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px 0 48px;
  z-index: 10;
}

.head_logo img {
  height: 30px;
  margin-left: 20px;
}

.head_icons {
  display: flex;
  gap: 18px;
  margin-right: 30px;
}

.head_icons svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.head_icons svg:hover {
  opacity: 1;
}

.home_page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 48px;
  z-index: 2;
}

.home_bg_img {
  margin-top: 50px;
  flex: 1;
  display: flex;
  justify-content: center;
}

.home_bg_img img {
  width: 100%;
  height: auto;
  max-width: 600px; /* desktop max */
}

.character-img {
  max-width: 100%;
  height: auto;
}

.home_content {
  flex: 1;
  text-align: left;
}

.home_content h1 {
  font-size: 53px;
  font-weight: bold;
  margin-bottom: 10px;
}

.home_content p {
  font-size: 18px;
  line-height: 1.6;
}

.home_content span {
  color: #FD747C;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .header {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .home_bg_img {
    display: none; /* hide image completely on small screens */
  }

  .home_content h1 {
    font-size: 36px; /* reduce heading size on mobile */
  }

  .home_content p {
    font-size: 16px; /* slightly smaller paragraph text */
  }
}
