@font-face {
  font-family: "MaplestoryOTFLight";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/MaplestoryOTFLight.woff")
    format("woff");
  font-weight: 300;
  font-style: normal;
}

/* --- 기본 스타일 --- */
body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  font-family: "MaplestoryOTFLight";
  background-image: url("../images/gwangju.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 배경 고정 */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
}

/* 배경 오버레이 */
.overlay {
  position: fixed;
  inset: 0;
  /* 보라색 계열에 맞게 어두운 톤으로 변경 */
  background: rgba(30, 25, 40, 0.6);
  z-index: -1;
}

/* 메인 카드 */
.main-container {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 25px 50px;
  margin-top: 50px; /* 헤더와의 간격 */
  margin-bottom: 50px; /* 하단 여백 */
  max-width: 720px;
  width: 90%;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* 타이틀 이미지 */
.title-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.title-image img {
  width: 280px; /* 필요에 따라 조절 가능 */
  max-width: 80%;
  height: auto;
  object-fit: contain;
}

/* 이미지 버튼 컨테이너 */
.menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* 이미지 버튼 스타일 */
.menu-buttons .image-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px; /* 필요에 따라 조정 */
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 14px rgba(136, 136, 138, 0.3);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #6d48e5 0%, #835de8 100%);
  color: #fff;
  text-align: center;
  padding-bottom: 15px;
}

/* 버튼 안 이미지 */
.menu-buttons .image-button img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

/* 버튼 안 텍스트 */
.menu-buttons .image-button span {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 10px;
  display: block;
  letter-spacing: 0.06em;
}

/* 호버 효과 */
.menu-buttons .image-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(109, 72, 229, 0.4);
  filter: brightness(1.15);
}

/* 클릭 시 */
.menu-buttons .image-button:active {
  transform: scale(0.95);
}

/* 모바일 대응 */
@media screen and (max-width: 480px) {
  .title-image {
    margin-bottom: 0;
  }

  .title-image img {
    width: 200px; /* 필요에 따라 조절 가능 */
    height: 130px;
    object-fit: contain;
  }

  .main-container {
    padding: 0 10px;
    width: 90%;
    margin-top: 10px;
  }

  .menu-buttons {
    gap: 10px;
    margin-bottom: 10px;
  }

  .menu-buttons .image-button {
    width: 250px; /* 이미지 버튼 전체 폭 줄이기 */
    border-radius: 18px;
  }

  .menu-buttons .image-button img {
    width: 100%;
  }

  .menu-buttons .image-button span {
    font-size: 1rem;
  }
}
