/* 공통 스타일 초기화(간단 버전) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  background-color: #fff;
  color: #333;
}

/* 헤더 영역 */
header {
  background-color: #3576c5;
  padding: 10px;
}
.header-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-logo {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

/* 메인 컨테이너 */
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
}

/* 게임 정보 영역 */
.game-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
	margin-top: 5px;
}
.game-icon {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 10px;
  object-fit: cover;
  /* 실제 게임 아이콘 경로로 수정 필요 */
}
.game-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.game-title {
  font-size: 17px;
  font-weight: bold;
}
.inquiry-link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  margin-top: 4px;
}

/* 섹션 타이틀 */
.section-title {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 10px 0;
}

/* 문의 유형 목록 */
.inquiry-type {
  list-style: none;
}
.inquiry-type li {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.inquiry-type a {
  text-decoration: none;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.arrow {
  color: #999;
  margin-left: 5px;
}

/* 폼 영역 */
form {
  margin-top: 10px;
}
label {
  display: block;
  margin: 12px 0 5px 0;
  font-size: 14px;
  font-weight: 500;
}
input[type="text"],
input[type="date"],
input[type="time"],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}
/* 셀렉트 박스 스타일 */
select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}
textarea {
	resize: none;
}

/* 체크박스 컨테이너 */
.checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
}
.checkbox-container input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  cursor: pointer;
}
.checkbox-container a {
  margin-left: 5px;
  color: #007bff;
  text-decoration: none;
}
	
/* 버튼 */
.submit-btn {
  margin-top: 20px;
  width: 100%;
  background-color: #dd9700;
  color:#ffffff;
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.market-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* 좁은 화면에서도 줄바꿈 가능 */
  gap: 0px;
}
.market-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex: 0 0 calc(50% - 10px); /* 2개씩 배치 (gap 고려) */
}
.market-option input[type="radio"] {
  margin-right: 8px;
}
.market-option img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.market-option span {
  font-size: 14px;
}
	
/* 반응형 처리 */
@media (max-width: 600px) {
  .header-inner {
	padding: 0 10px;
  }
  .container {
	padding: 10px;
  }
  .game-icon {
	width: 40px;
	height: 40px;
  }
  .section-title {
	font-size: 15px;
  }
  .modal-content {
    width: calc(100% - 40px);
  }
}