* {
  box-sizing: border-box;
  margin: 0; 
  padding: 0;
}

body {
  min-height: 100vh;
  background: #e3e5ea;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.logo-image {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 1200px;
  pointer-events: none;
  z-index: 3;
  animation: fadeIn 1.2s ease-out forwards;
}

.character {
  position: absolute;
  left: 4%;
  bottom: 18%;
  width: 20%;
  max-width: 600px;
  z-index: 2;
}

.floating {
  animation: float 3.8s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.social-buttons {
  position: absolute;
  left: 4%;
  bottom: 5%;
  display: flex;
  gap: 18px;
  z-index: 3;
}

.icon-button {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 999px;
  padding: 10px 14px;
  border: 2px solid #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.icon-button img {
  width: 26px;
  height: auto;
  display: block;
}

.icon-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.85);
}

.icon-button:active {
  transform: scale(0.9);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0.1);
  border-color: #3fd3ff;
}

.about-wrapper {
  position: absolute;
  top: 40%;
  right: 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  z-index: 3;
}

.about-title-box {
  width: fit-content;
  padding: 6px 22px;
  border-radius: 6px;
  text-align: right;
}

.about-title {
  font-family: "Jua", system-ui, sans-serif;
  font-size: clamp(40px, 3vw, 52px);
  color: #ffffff;
  -webkit-text-stroke: 2px #000000;
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.85),
    0 2px 8px rgba(0, 0, 0, 0.9);
}

.about-text-box {
  width: fit-content;
  padding: 14px 20px;
  border-radius: 6px;
  text-align: right;
}

.about-text {
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.35;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow:
    0 0 4px rgba(0, 0, 0, 0.85),
    0 1px 6px rgba(0, 0, 0, 0.7);
}

.about-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .page-frame {
    width: 100vw;
    border-radius: 0;
  }

  .character {
    width: 26%;
    bottom: 20%;
  }

  .about-wrapper {
    top: 34%;
    left: 70%;
  }
}

@media (max-width: 650px) {
  .character {
    width: 30%;
    bottom: 22%;
  }

  .about-wrapper {
    top: 36%;
    left: 68%;
  }

  .social-buttons {
    gap: 12px;
  }
}
