/* 기본 리셋 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		Roboto, sans-serif;
	background-color: #ffffff;
	min-height: 100vh;
}

/* 컨테이너 */
.container {
	max-width: 480px;
	width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	padding: 0 20px;
}

/* 코인구매 메인 컨테이너 */
.coin-purchase {
	width: 100%;
	max-width: 360px;
	background-color: #ffffff;
	border-radius: 0;
	padding: 0;
	position: relative;
	margin: 0 auto;
	padding-top: 60px;
}

/* 코인 선택 영역 */
.coin-selector {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 20px;
	justify-content: center;
}

/* QR 컨테이너 내부의 코인 선택 영역 */
.qr-container .coin-selector {
	margin-bottom: 20px;
}

.coin-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.coin-svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.coin-name {
	font-family: 'pretendard', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #000000;
	margin-left: 4px;
}

/* QR 코드 영역 */
.qr-section {
	min-height: 245px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	background-color: #f8f8f8;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
}

.qr-container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

/* 지갑 주소 영역 */
.wallet-section {
	text-align: center;
	margin-bottom: 40px;
}

/* QR 컨테이너 내부의 지갑 주소 */
.qr-container .wallet-section {
	margin-bottom: 0;
	width: 100%;
	padding: 0 10px;
}

.wallet-title {
	font-family: 'pretendard', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #009393;
	margin-bottom: 8px;
}

.wallet-address {
	font-family: 'pretendard', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #000000;
	margin-bottom: 20px;
	word-break: break-all;
	line-height: 1.2;
}

.copy-button {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background-color: #ffffff;
	border: 1px solid #009393;
	border-radius: 8px;
	padding: 10px 24px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.copy-button:hover {
	background-color: #f0f9f9;
}

.copy-icon {
	width: 24px;
	height: 24px;
	transform: rotate(180deg);
}

.copy-button span {
	font-family: 'pretendard', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #009393;
}

/* 복사 메시지 */
.copy-message {
	font-family: 'pretendard', sans-serif;
	font-size: 14px;
	color: #ff0000;
	text-align: center;

	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

.copy-message.show {
	margin-top: 8px;
	height: 20px;
	opacity: 1;
}

/* 주의사항 영역 */
.notice-section {
	width: 100%;
	background-color: #ffffff;
	border-radius: 0;
	margin-bottom: 40px;
}

.notice-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.notice-item {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.notice-bullet-dot {
	width: 6px;
	height: 6px;
	background-color: #999999;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 6px;
}

.notice-bullet {
	font-family: 'pretendard', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	flex-shrink: 0;
	margin-top: 2px;
}

.notice-item p {
	font-family: 'pretendard', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #999999;
	line-height: 1.4;
	flex: 1;
}

.notice-item.important p {
	font-size: 16px;
	font-weight: 500;
	color: #000000;
}

/* 코인구매 버튼 */
.purchase-button {
	width: 100%;
	height: 54px;
	background-color: #009393;
	border: none;
	border-radius: 8px;
	font-family: 'pretendard', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.purchase-button:hover {
	background-color: #007a7a;
}
