html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	font-family: 'Freesentation-4Regular', sans-serif;
	background-color: #000
}

/* 네비게이션 기본 스타일 */
.main-nav {
	width: 100%;
	background-color: rgba(0, 0, 0, 1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

/* 로고 스타일 */
.nav-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.nav-logo img {
	height: 40px;
	width: auto;
}

.nav-logo span {
	font-size: 1.5rem;
	font-weight: bold;
	color: #146FF4;
}

/* 메뉴 스타일 */
..nav-menu {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.nav-list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
}

.nav-item {
	white-space: nowrap;
	font-family: 'Freesentation-7Bold', sans-serif;
	position: relative;
	/* 추가 */
}

.nav-link {
	text-decoration: none;
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	/* color → all로 변경 */
	padding: 0.5rem 0;
	position: relative;
	display: inline-block;
}

/* 구분선 스타일 */
.nav-separator {
	color: #666;
	font-weight: 300;
	user-select: none;
	transition: color 0.3s ease;
}

/* 활성 메뉴와 구분선 */
.nav-link.active {
	color: #00BEBD;
	font-family: 'Freesentation-9Black', sans-serif;
}

.nav-separator.active {
	color: #00BEBD;
}

/* 밑줄 효과 */
.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	/* 추가: 전체 너비 확보 */
	height: 2px;
	background-color: #00BEBD;
	transform: scaleX(0);
	/* width 대신 transform 사용 */
	transform-origin: left;
	transition: transform 0.3s ease;
}

.nav-link:hover::after {
	transform: scaleX(1);
}

.nav-link.active::after {
	transform: scaleX(1) !important;
}

/* 호버 효과 */
.nav-link:hover {
	color: #00BEBD;
}

/* 구분선 스타일 */
.nav-separator {
	color: #ccc;
	font-weight: 300;
	user-select: none;
}

/* 모바일 메뉴 버튼 */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.mobile-menu-btn span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #333;
	transition: all 0.3s ease;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
	.nav-container {
		padding: 0 1rem;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.944);
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		transition: transform 0.3s ease;
		opacity: 0;
		visibility: hidden;
	}

	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-list {
		flex-direction: column;
		padding: 1rem 0;
		gap: 0;
	}

	.nav-item {
		width: 100%;
		text-align: center;
		padding: 0.75rem 0;
		border-bottom: 1px solid #f0f0f0;
	}

	.nav-separator {
		display: none;
	}

	.nav-link::after {
		display: none;
	}
}

/* 다크 테마 버전 (옵션) */
.main-nav.dark {
	background-color: #1a1a1a;
}

.main-nav.dark .nav-link {
	color: #fff;
}

.main-nav.dark .nav-link:hover {
	color: #146FF4;
}

.main-nav.dark .mobile-menu-btn span {
	background-color: #fff;
}

.main-visual {
	background-color: #000;
	position: relative;
	width: 100vw;
	height: 100vh;
	max-height: 75vh;
	top: 50px;
	overflow: hidden;
}

.main-gradient {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0% 80%, #101014 100%);
	z-index: 1;
}

.main-visual video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	z-index: 0;
	pointer-events: none;
}

.visual-content {
	position: relative;
	z-index: 1;
	max-width: 1440px;
	height: 100%;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	/* 가운데 정렬 */
	text-align: center;
}

.visual-content img {
	max-width: 400px;
	height: auto;
	display: block;
	padding-top: 50px;
	text-align: center;
	top: 50px;
}

@media (max-width: 768px) {
	.visual-content {
		justify-content: center;
		text-align: center;
	}

	.visual-content img {
		width: 100%;
		margin-left: 0;
		/* ⬅️ 모바일에서는 왼쪽 여백 없앰 */
		padding-top: 20px;
		/* 필요 시 조절 */
	}
}

.video-section {
	background-color: #000;
	padding: 4rem 1rem 0rem 1rem;
	color: #000;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
}

.video-wrapper {
	width: 70%;
	aspect-ratio: 16 / 9;
	margin: 0 auto 2rem;
	position: relative;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 12px;
	background-color: #000;
}

.video-description {
	font-size: 1.65rem;
	font-family: 'Freesentation-2ExtraLight', sans-serif;
	word-spacing: -0.05em;
	line-height: 1.3;
	max-width: 1240px;
	word-break: keep-all;
	margin: 0 auto;
	color: #D9D9D9;
}

.hi2 {
	font-family: 'Freesentation-8ExtraBold';
	color: #fff;
}

/* 원하는 강조 색상으로 변경 가능 */
.hi3 {
	font-family: 'Freesentation-1Thin';
	color: #E8E8E8;
	font-size: 0.8em;
	/* 원하는 강조 색상으로 변경 가능 */
}

.hi {
	font-family: 'Freesentation-5Medium';
	color: #fff;
	/* 원하는 강조 색상으로 변경 가능 */
}

.button-wrapper {
	text-align: center;
	margin: 50px 0px;
	padding: 0 20px;
	/* 모바일에서 여백 추가 */
}

.button-container {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.register-btn {
	background-color: #fff;
	color: #030A19;
	border: none;
	border-radius: 15px;
	padding: 18px 40px;
	font-size: 28px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
	min-width: 280px;
	/* 최소 너비 설정 */
	width: 100%;
	max-width: 350px;
	/* 최대 너비 설정 */
}

.register-btn2 {
	background-color: #00E068;
}

.register-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.register-btn2:hover {
	box-shadow: 0 5px 15px rgba(0, 224, 104, 0.3);
}

.info-text {
	font-size: 1.1rem;
	margin: 10px 0;
	line-height: 1.5;
}

.info-text.primary {
	color: #00D4FF;
}

.info-text.secondary {
	color: #00E068;
}

/* 태블릿 */
@media (max-width: 768px) {
	.register-btn {
		font-size: 24px;
		padding: 16px 30px;
		min-width: 240px;
		max-width: 320px;
	}

	.info-text {
		font-size: 1rem;
	}
}

/* 모바일 */
@media (max-width: 480px) {
	.button-container {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.register-btn {
		font-size: 20px;
		padding: 15px 25px;
		min-width: 100%;
		max-width: 100%;
	}

	.info-text {
		font-size: 0.9rem;
		padding: 0 10px;
	}
}

@media (max-width: 768px) {

	.register-btn {
		border-radius: 5px;
		padding: 18px 60px;
		font-size: 18px;
		font-weight: 600;
		text-transform: uppercase;
		cursor: pointer;
		transition: all 0.3s;
		text-align: center;
	}

	.register-btn2 {
		border-radius: 5px;
		padding: 18px 35px;
		font-size: 18px;
		font-weight: 600;
		text-transform: uppercase;
		cursor: pointer;
		transition: all 0.3s;
		text-align: center;
	}
}

.register-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.register-btn2:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn {
	font-size: 1.2rem;
	font-family: 'Freesentation-4Regular', sans-serif;
	padding: 0.8rem 4rem;
	line-height: 1.5rem;
	border-radius: 4.851px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-live {
	background: var(--left_pink, linear-gradient(279deg, #00AFFF 21.76%, #26BBFF 78.24%));
	color: white;
	font-weight: bold;
	border: none;

}

.btn-primary {
	background: var(--left_pink, linear-gradient(279deg, #00AFFF 21.76%, #C41E71 78.24%));
	color: white;
	font-weight: bold;
	border: none;

}

.btn-outline {
	background: transparent;
	color: #4291B5;
	border: 1px solid #4291B5;
	Export
}

.btn:hover {
	opacity: 1;

}

.btn-outline:hover {
	color: #fff;
	border: 1px solid #00AFFF;
	background: rgba(0, 183, 255, 0.705);
}

@media (max-width: 768px) {
	.visual-content {
		justify-content: center;
		text-align: center;
	}

	.video-wrapper {
		width: 100%;
	}

	.video-description {
		font-size: 1rem;
		padding-right: 10px;
	}
}



/**/
.feature-section {
	max-width: 1240px;
	margin: 0 auto;
	padding: 2rem 1rem;
	background-color: #000;
}

.feature-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1.25rem;
	color: #00BEBD;
	font-family: 'Freesentation-8ExtraBold', sans-serif;

}

.feature-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: space-between;
}

.feature-card {
	flex: 1 1 calc(25% - 1.5rem);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	min-width: 240px;

}

.feature-card img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	transition: transform 0.4s ease;
}

.feature-card:hover img {
	transform: scale(1.08);
}

.feature-card:hover .feature-text {
	color: #00BEBD;
	filter: brightness(1.3);
}

.feature-card:hover .feature-subtitle {
	padding-top: 15px;
	background: linear-gradient(207deg, #00C1BF 14.25%, #4481F2 83.43%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: transform 0.4s ease;

}

.feature-subtitle {
	font-size: 1.5rem;
	/* font-size: 1.1rem; */
	font-family: 'Freesentation-7Bold', sans-serif;
	line-height: 1.2;
	color: #000;
	word-break: keep-all;
	word-spacing: -0.05em;
	padding-top: 5px;
}

.feature-text {
	font-size: 1.2rem;
	/* font-size: 1.1rem; */
	font-family: 'Freesentation-5Medium', sans-serif;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	word-break: keep-all;
	word-spacing: -0.05em;

}



@media (max-width: 1024px) {
	.feature-card {
		flex: 1 1 calc(50% - 1rem);
	}
}

@media (max-width: 600px) {
	.feature-card {
		flex: 1 1 100%;
	}

	.feature-title {
		font-size: 1.5rem;
		text-align: left;
	}

	.feature-text {
		font-size: 1.1rem;
	}
}

/* 아젠다 테이블 섹션 */
.agenda-table-section {
	background-color: #000;
	padding: 50px 0 60px;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 30px;
}

/* 섹션 타이틀 */
.section-title {
	font-family: 'Freesentation', sans-serif;
	font-weight: 900;
	font-size: 36px;
	color: #00BEBD;
	letter-spacing: -2px;
	margin-bottom: 40px;
	line-height: 1.2;
}


/* 아젠다 테이블 */
.agenda-table {
	width: 100%;
	border-radius: 25px;
	overflow: hidden;
	background-color: #1a1a1a;
}

/* 아젠다 행 */
.agenda-row {
	display: flex;
	align-items: center;
	padding: 12px 80px;
	border-top: 2px solid #131313;
	min-height: 90px;
}

.agenda-row.first-row {
	border-top: none;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.agenda-row.last-row {
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

/* 다크/라이트 행 스타일 */
.dark-row {
	background-color: #2A2A2A;
}

.light-row {
	background-color: transparent;
}

/* 시간 스타일 */
.time-start,
.time-end {
	font-family: 'Freesentation', sans-serif;
	font-weight: 200;
	font-size: 22px;
	color: #F5F5F5;
	text-align: center;
	width: 100px;
	letter-spacing: -0.5px;
	flex-shrink: 0;
}

.time-end {
	margin: 0 80px 0 40px;
}

/* 아젠다 행 (4열 그리드) */
.agenda-row {
	display: grid;
	/* grid-template-columns: 100px 40px 1fr 320px; */
	grid-template-columns: 100px 60px 1fr 240px;
	gap: 10px;
	align-items: center;
	padding: 25px 40px;
}

/* 시간 열 */
.time-start,
.time-end {
	font-family: 'Freesentation', sans-serif;
	font-weight: 600;
	font-size: 24px;
	color: #F5F5F5;
	text-align: center;
}

/* 아젠다 제목 (3열) */
.agenda-title {
	font-family: 'Freesentation-8ExtraBold', sans-serif;
	font-size: 24px;
	color: #F5F5F5;
	text-transform: capitalize;
	letter-spacing: -0.6px;
	line-height: 1.4;
	word-break: keep-all;

}

/* 아젠다 부제목 (4열 - 세로 중앙정렬) */
.agenda-subtitle {
	font-family: 'Freesentation-7Bold', sans-serif;
	font-weight: 200;
	font-size: 18px;
	color: #fff;
	letter-spacing: -0.5px;
	opacity: 0.8;
	/* display: flex; */
	align-items: center;
	word-break: keep-all;
}

.agenda-subtitle .sub {
	font-family: 'Freesentation-4Regular', sans-serif;
	font-weight: 200;
	font-size: 16px;
	color: #F5F5F5;
	letter-spacing: -0.5px;
	opacity: 0.8;
	/* display: flex; */
	align-items: center;
	word-break: keep-all;
}


/* 공지사항 */
.agenda-notice {
	font-family: 'Freesentation', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #fff;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: -0.5px;
	margin-top: 40px;
	opacity: 0.7;
	word-break: keep-all;
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
	.agenda-row {
		grid-template-columns: 60px 60px 1fr 200px;
		padding: 20px 40px;
		gap: 15px;
	}

	.time-start,
	.time-end {
		font-size: 22px;
	}

	.agenda-title {
		font-size: 20px;
	}

	.agenda-subtitle {
		font-size: 18px;
	}
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.agenda-table-section {
		padding: 40px 0;
	}

	.container {
		padding: 0 20px;
	}

	.section-title {
		font-size: 36px;
		margin-bottom: 30px;
	}

	.agenda-row {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		padding: 20px;
		gap: 10px;
		align-items: flex-start;
	}

	.time-start,
	.time-end {
		font-size: 18px;
		text-align: left;
	}

	.time-start::after {
		content: ' - ';
	}

	.time-end {
		display: inline;
	}

	.agenda-title {
		font-size: 16px;
		grid-column: 1;
	}

	.agenda-subtitle {
		font-size: 16px;
		grid-column: 1;
	}

	.agenda-notice {
		font-size: 14px;
		text-align: center;
		margin-top: 30px;
	}
}

/* 작은 모바일 */
@media (max-width: 480px) {
	.section-title {
		font-size: 28px;
		letter-spacing: -2px;
	}

	.agenda-row {
		padding: 15px;
	}

	.time-start,
	.time-end {
		font-size: 16px;
	}

	.agenda-title {
		font-size: 14px;
	}

	.agenda-subtitle {
		font-size: 14px;
	}

	.agenda-notice {
		font-size: 12px;
	}
}

/*사전준비*/
.prep-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem 1rem;
	color: #fff;
	width: 100%;
	box-sizing: border-box;
}

.prep-title {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 1.25rem;
	font-family: 'Freesentation-8ExtraBold', sans-serif;
}

prep-grid {
	font-size: 0;
	/* inline-block 간격 제거용 */
}

.prep-card {
	display: inline-block;
	vertical-align: top;
	/* width: 32.5%; */
	width: 100%;
	/* margin-bottom: 2rem; */
	background-image: url('images/www/preprep.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 2.5rem;
	border-radius: 25px;
	box-sizing: border-box;
	font-size: 1rem;
	text-align: center;
	/* 내부 콘텐츠 폰트 복구 */
}

.prep-card:nth-child(3n) {
	margin-right: 0;
}

.prep-step {
	font-size: 1.5rem;
	color: #00c0ff;
	margin-bottom: 0.5rem;
	font-family: 'Freesentation-8ExtraBold', sans-serif;
}

.prep-card h3 {
	font-size: 3.85rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
}

.prep-card p {
	font-size: 1.25rem;
	color: #ccc;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	word-spacing: -0.05rem;
	word-break: keep-all;
}

.prep-buttons {
	text-align: center;
	margin: 2rem 0rem;
	padding-top: 1rem;
	/* display: flex; */
	gap: 0.5rem;
	flex-wrap: wrap;
	font-family: 'Freesentation-6SemiBold', sans-serif;
}

.btn.pink {
	font-size: 1.45rem;
	text-decoration: none;
	background: #000;
	color: #fff;
	padding: 1rem 2.4rem;
	border-radius: 15px;
	text-align: center;
	font-family: 'Freesentation-6SemiBold', sans-serif;
	transition: all 0.3s ease;

}

.btn.pink:hover {
	font-size: 1.45rem;
	text-decoration: none;
	background: linear-gradient(0deg, #4481F2 0%, #4481F2 100%), linear-gradient(238deg, #00C1BF 3.08%, #4481F2 90.05%);
	color: #fff;
	padding: 1rem 2.4rem;
	border-radius: 15px;
	text-align: center;
	font-family: 'Freesentation-6SemiBold', sans-serif;

}



.btn.blue {
	font-size: 1rem;
	background: #00aaff;
	color: #fff;
	padding: 0.6rem 1.4rem;
	border-radius: 4px;
	text-align: center;
	font-family: 'Freesentation-6SemiBold', sans-serif;

}

.btn.outline {
	background: transparent;
	border: 1px solid #00c0ff;
	color: #fff;
	font-size: 1rem;
	font-family: 'Freesentation-6SemiBold', sans-serif;
	transition: all 0.3s ease;
	padding: 0.6rem 1rem;
}

.btn.outline:hover {
	color: #00c0ff;
}

.btn.gradient {
	font-size: 1rem;
	background: linear-gradient(to right, #e44197, #00c0ff);
	color: #fff;
	padding: 0.6rem 1rem;
	border-radius: 4px;
	text-align: center;
	font-family: 'Freesentation-6SemiBold', sans-serif;

}

.btn:hover {
	opacity: 0.85;
}

/* 📱 반응형: 768px 이하일 때 1열 */
/* ✅ 태블릿: 2개씩 나열 */
@media (max-width: 1024px) {
	.prep-card {
		width: 48%;
		margin-right: 4%;
	}

	.prep-card:nth-child(2n) {
		margin-right: 0;
	}

	.prep-card:nth-child(3n) {
		margin-right: 4%;
		/* 덮어쓰기 */
	}
}

/* ✅ 모바일: 1개씩 */
@media (max-width: 768px) {
	.prep-card {
		width: 100%;
		margin-right: 0 !important;
	}
}

/*mx11*/

.mx-visual {
	background-image: url('images/www/mx11_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	/* 선택사항: 패럴랙스 효과 */
	width: 100%;
	height: 70vh;
	/* 또는 원하는 높이 */
	position: relative;
}

.mx-visual video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	z-index: 0;
	pointer-events: none;
}

.mx-content {
	position: relative;
	z-index: 1;
	max-width: 1440px;
	height: 100%;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	/* 가운데 정렬 */
	text-align: center;
}

.mx-content img {
	max-width: 800px;
	width: 90%;
	height: auto;
	display: block;
	padding-top: 50px;
	text-align: center;
	top: 50px;
}

@media (max-width: 768px) {
	.mx-content {
		justify-content: center;
		text-align: center;
	}

	.mx-content img {
		max-width: 80%;
		margin-left: 0;
		/* ⬅️ 모바일에서는 왼쪽 여백 없앰 */
		padding-top: 20px;
		/* 필요 시 조절 */
	}
}

/*mx11*/


.event-note {
	font-size: 1.2rem;
	color: #000;
	text-align: right;
	font-family: 'Freesentation-4Regular', sans-serif;

}

.asterisk {
	color: #7200E3;
	margin-right: 0.2rem;
	font-weight: 800;
}

/* ========== 행사장소 안내 섹션 ========== */
.location-section {
	background-color: #000;
	padding: 50px 0 60px;
	position: relative;
}

.location-section .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 30px;
	width: 100%;
	box-sizing: border-box;
}

.location-section .location-title {
	font-family: 'Freesentation', sans-serif;
	font-weight: 900;
	font-size: 36px;
	color: #00BEBD;
	text-transform: uppercase;
	letter-spacing: -2px;
	margin-bottom: 40px;
	line-height: 1.2;
	text-align: left;
}

/* 지도와 정보 래퍼 */
.location-wrapper {
	display: flex;
	gap: 24px;
	align-items: stretch;
	height: 450px;
	width: 100%;
}

/* 지도 컨테이너 */
.map-container {
	flex: 1.5;
	position: relative;
	background-color: #146FF4;
	border-radius: 30px;
	overflow: hidden;
	height: 100%;
}

.map-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* 지도 마커 */
.map-marker {
	position: absolute;
	top: 58%;
	left: 42%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
}

.map-marker a {
	display: block;
	width: 100%;
	height: 100%;
}

.marker-icon {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
	cursor: pointer;
	transition: transform 0.3s ease;
	animation: bounce 2s infinite;
}

.marker-icon:hover {
	transform: scale(1.1);
}

/* 마커 애니메이션 */
@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translate(0, 0);
	}

	40% {
		transform: translate(0, -10px);
	}

	60% {
		transform: translate(0, -5px);
	}
}

/* 정보 컨테이너 */
.info-container {
	flex: 0.5;
	background-color: #7200E3;
	border-radius: 30px;
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 320px;
	max-width: 380px;
}

/* 주소 정보 */
.address-info {
	color: #000;
}

.address-line1 {
	font-family: 'Freesentation', sans-serif;
	font-weight: 400;
	font-size: 28px;
	color: #fff;
	line-height: 1.3;
	margin: 0 0 10px 0;
	letter-spacing: -0.5px;
}

.address-line2 {
	font-family: 'Freesentation', sans-serif;
	font-weight: 800;
	font-size: 32px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.2;
	margin: 0 0 25px 0;
	letter-spacing: -0.5px;
}

.venue-name {
	font-family: 'Freesentation', sans-serif;
	font-weight: 800;
	font-size: 34px;
	color: #FDC63A;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: -0.5px;
}

.share-button {

	background-color: #146FF4;
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 15px 30px;
	margin-top: 20px;
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: -2.5px;
	cursor: pointer;
	transition: all 0.3s ease;

}

/* ========== 반응형 디자인 ========== */

/* 태블릿 (1024px) */
@media screen and (max-width: 1024px) {
	.location-section .container {
		padding: 0 25px;
	}

	.location-wrapper {
		height: 400px;
		gap: 20px;
	}

	.info-container {
		min-width: 280px;
		padding: 40px 30px;
	}

	.address-line1 {
		font-size: 24px;
	}

	.address-line2 {
		font-size: 28px;
	}

	.venue-name {
		font-size: 30px;
	}

	.map-marker {
		width: 60px;
		height: 60px;
	}
}

/* 모바일 (768px) - 중요! */
@media screen and (max-width: 768px) {
	.location-section {
		padding: 40px 0;
	}

	.location-section .container {
		padding: 0 20px;
	}

	.location-section .location-title {
		font-size: 28px;
		margin-bottom: 30px;
		text-align: left;
	}

	/* 세로 배치로 변경 - 중요! */
	.location-wrapper {
		display: flex;
		flex-direction: column !important;
		/* 강제 세로 배치 */
		height: auto !important;
		gap: 20px;
		width: 100%;
	}

	/* 지도 크기 조정 */
	.map-container {
		flex: none;
		width: 100%;
		height: 300px;
		border-radius: 20px;
	}

	.map-marker {
		width: 50px;
		height: 50px;
		left: 41%;
		/* 중앙 정렬 */
		top: 58%;
	}

	/* 정보 영역 전체 너비 */
	.info-container {
		flex: none;
		/* width: 100%; */
		/* min-width: 100%; */
		max-width: 100%;
		padding: 35px 25px;
		border-radius: 20px;
	}

	.address-line1 {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.address-line2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.venue-name {
		font-size: 26px;
	}
}

/* 작은 모바일 (480px) */
@media screen and (max-width: 480px) {
	.location-section {
		padding: 30px 0;
	}

	.location-section .container {
		padding: 0 15px;
	}

	.location-section .location-title {
		font-size: 24px;
		margin-bottom: 25px;
		letter-spacing: -1.5px;
	}

	.location-wrapper {
		gap: 15px;
	}

	/* 지도 높이 더 축소 */
	.map-container {
		height: 250px;
		border-radius: 15px;
	}

	.map-marker {
		width: 40px;
		height: 40px;
	}

	/* 정보 영역 더 컴팩트하게 */
	.info-container {
		padding: 25px 15px;
		border-radius: 15px;
	}

	.address-line1 {
		font-size: 18px;
		margin-bottom: 6px;
	}

	.address-line2 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.venue-name {
		font-size: 22px;
	}
}

/* 아주 작은 화면 (360px) */
@media screen and (max-width: 360px) {
	.location-section .location-title {
		font-size: 20px;
	}

	.map-container {
		height: 200px;
	}

	.map-marker {
		width: 35px;
		height: 35px;
	}

	.info-container {
		padding: 20px 5px;
	}

	.address-line1 {
		font-size: 16px;
	}

	.address-line2 {
		font-size: 18px;
	}

	.venue-name {
		font-size: 20px;
	}
}

/* FAQ 섹션 */
.faq-section {
	background-color: #000;
	padding: 50px 0 60px;
	position: relative;
}

.faq-section .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 30px;
}

/* 섹션 타이틀 */
.faq-section .section-title {
	font-family: 'Freesentation', sans-serif;
	font-weight: 900;
	font-size: 36px;
	color: #00BEBD;

	letter-spacing: -2px;
	margin-bottom: 40px;
	line-height: 1.2;
}

/* FAQ 리스트 */
.faq-list {
	display: flex;
	flex-direction: column;
}

/* FAQ 아이템 */
.faq-item {
	border-top: 1px solid #D6D6D6;
	transition: all 0.3s ease;
}

.faq-item:last-child {
	border-bottom: 1px solid #D6D6D6;
}

/* FAQ 질문 */
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px 30px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	background-color: #000;

}

.faq-question:hover {
	background-color: rgba(0, 0, 0, 0.844);
}

.faq-question p {
	font-family: 'Freesentation', sans-serif;
	font-weight: 400;
	font-size: 28px;
	color: #00BEBD;
	letter-spacing: -1.4px;

	line-height: 1.3;
	margin: 0;
	flex: 1;
	padding-right: 20px;
}

/* FAQ 토글 버튼 */
.faq-toggle {
	background: #030A19;
	border: 2px solid #030A19;
	/* 검은색 테두리 원 */
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	flex-shrink: 0;
	position: relative;
}

/* Plus/Minus 기호 만들기 */
.faq-toggle::before,
.faq-toggle::after {
	content: '';
	position: absolute;
	background-color: #fff;
	/* 검은색 선 */
	transition: all 0.3s ease;
}

/* 가로선 (공통) */
.faq-toggle::before {
	width: 20px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* 세로선 (Plus일 때만) */
.faq-toggle::after {
	width: 2px;
	height: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
}

/* 활성화 상태 (Minus) */
.faq-item.active .faq-toggle {
	background-color: #00C1BF;
	/* 민트색 배경 */
	border-color: #00C1BF;
	/* 민트색 테두리 */
}

.faq-item.active .faq-toggle::before {
	background-color: #000;
	/* 흰색 선 */
}

.faq-item.active .faq-toggle::after {
	opacity: 0;
	/* 세로선 숨기기 (Minus 상태) */
}

/* 호버 효과 */
.faq-toggle:hover {
	background-color: #f0f5ff;
	border-color: #146FF4;
}

.faq-toggle:hover::before,
.faq-toggle:hover::after {
	background-color: #146FF4;
}

.faq-item.active .faq-toggle:hover {
	background-color: #00A8A6;
	/* 더 진한 민트색 */
	border-color: #00A8A6;
}

.faq-item.active .faq-toggle:hover::before {
	background-color: white;
	/* 흰색 유지 */
}

/* 부드러운 회전 애니메이션 (선택사항) */
.faq-toggle {
	transform: rotate(0deg);
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
}

/* 아이콘 상태 */
.faq-item .icon-open {
	display: block;
}

.faq-item .icon-close {
	display: none;
}

.faq-item.active .icon-open {
	display: none;
}

.faq-item.active .icon-close {
	display: block;
}

/* FAQ 답변 */
.faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease;
	opacity: 0;
	background-color: #000;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 30px 30px 30px;
	opacity: 1;
}

.faq-answer p {
	font-family: 'Freesentation', sans-serif;
	font-weight: 400;
	font-size: 24px;
	color: #ADADAD;
	letter-spacing: -1.2px;
	line-height: 1.5;

	margin: 0;
}

/* 활성화된 FAQ 스타일 */
.faq-item.active {
	/* background-color: #fafafa; */
}

.faq-item.active .faq-question p {
	color: #00BEBD;
	font-weight: 500;
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
	.faq-section .section-title {
		font-size: 32px;
	}

	.faq-question {
		padding: 20px 25px;
	}

	.faq-question p {
		font-size: 24px;
	}

	.faq-answer p {
		font-size: 20px;
	}

	.faq-toggle {
		width: 45px;
		height: 45px;
	}
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.faq-section {
		padding: 40px 0;
	}

	.faq-section .container {
		padding: 0 20px;
	}

	.faq-section .section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.faq-question {
		padding: 18px 20px;
	}

	.faq-question p {
		font-size: 20px;
		letter-spacing: -0.8px;
	}

	.faq-answer p {
		font-size: 18px;
	}

	.faq-item.active .faq-answer {
		padding: 0 20px 20px 20px;
	}

	.faq-toggle {
		width: 40px;
		height: 40px;
	}
}

/* 모바일 작은 화면 */
@media (max-width: 480px) {
	.faq-section .section-title {
		font-size: 24px;
	}

	.faq-question {
		padding: 15px;
	}

	.faq-question p {
		font-size: 17px;
		padding-right: 10px;
	}

	.faq-answer p {
		font-size: 15px;
	}

	.faq-toggle {
		width: 35px;
		height: 35px;
	}

	.faq-toggle svg {
		width: 20px;
		height: 20px;
	}
}

/* Footer 섹션 전체 */
.footer-section {
	width: 100%;
	background-color: #030A19;
}

/* 컨테이너 (max-width 1240px) */
.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 30px;
}

/* 파트너 섹션 */
.partner-section {
	background-color: #323232;
	height: 110px;
	display: flex;
	align-items: center;
}

.partner-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.partner-text {
	font-family: 'Freesentation', sans-serif;
	font-weight: 700;
	font-size: 26px;
	color: #B9B8B8;

	letter-spacing: -0.8px;
	margin-right: 40px;
	/* 오른쪽 여백 추가 */
}

.partner-logo {
	height: 45px;
}

.partner-logo img {
	height: 100%;
	width: auto;
}

/* 메인 푸터 */
.footer-main {
	background-color: #030A19;
	padding: 80px 0 60px;
}

/* CTA 섹션 */
.footer-cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}

/* 이미지로 변경된 타이틀 */
.cta-title {
	display: block;
	max-width: 600px;
	/* 이미지 최대 너비 제한 */
}

.cta-title img {
	width: 100%;
	height: auto;
	display: block;
}

/* 기존 텍스트 스타일 제거 (사용하지 않음) */
/* 
.highlight-dot 관련 CSS도 제거 가능
*/

/* CTA 버튼은 그대로 유지 */
.cta-button {
	background-color: #146FF4;
	color: #fff;
	border: none;
	border-radius: 14px;
	padding: 25px 60px;
	font-family: 'Brutal Type', sans-serif;
	font-weight: 700;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: -2.5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #0E5AD8;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(20, 111, 244, 0.3);
}

/* 반응형 */
@media (max-width: 768px) {
	.footer-cta {
		flex-direction: column;
		gap: 30px;
		align-items: center;
	}

	.cta-title {
		max-width: 100%;
		text-align: center;
	}

	.cta-title img {
		margin: 0 auto;
	}

	.cta-button {
		width: 100%;
		font-size: 20px;
		padding: 18px 40px;
	}
}

@media (max-width: 480px) {
	.cta-title {
		max-width: 300px;
		/* 모바일에서 이미지 크기 조정 */
	}

	.cta-button {
		font-size: 18px;
		padding: 15px 30px;
	}
}

/* 구분선 */
.footer-divider {
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.1);
	margin: 50px 0;
}

/* 하단 정보 섹션 */
.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

/* Mendix 로고 */
.footer-logo {
	height: 50px;
}

.footer-logo img {
	height: 100%;
	width: auto;
	filter: brightness(0) invert(1);
}

/* 카피라이트 */
.footer-copyright {
	font-family: 'Freesentation', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #fff;
	text-align: center;
	margin: 0;
	text-transform: capitalize;
	opacity: 0.8;
}

/* 소셜 아이콘 */
.footer-social {
	display: flex;
	gap: 20px;
	align-items: center;
}

.footer-social a {
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border-radius: 50%;
}

.footer-social a:hover {
	transform: scale(1.1);
	opacity: 0.8;
}

.footer-social a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* 흰색 아이콘으로 변경 (이미지가 검은색인 경우) */
	filter: brightness(0) invert(1);
}

.footer-social a:hover img {
	/* 호버시 색상 변경 효과 */
	filter: brightness(0) invert(1) opacity(0.8);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.footer-social {
		gap: 15px;
	}

	.footer-social a {
		width: 30px;
		height: 30px;
	}
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
	.partner-text {
		font-size: 22px;
	}

	.cta-title {
		font-size: 60px;
	}

	.cta-button {
		font-size: 24px;
		padding: 20px 45px;
	}

	.footer-main {
		padding: 60px 0 50px;
	}
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}

	.partner-section {
		height: auto;
		padding: 20px 0;
	}

	.partner-content {
		flex-direction: column;
		gap: 20px;
	}

	.partner-text {
		font-size: 18px;
		text-align: center;
	}

	.footer-cta {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}

	.cta-title {
		font-size: 45px;
	}

	.highlight-dot::after {
		left: 50%;
		transform: translateX(-50%);
		bottom: 10px;
		width: 150px;
	}

	.cta-button {
		width: 100%;
		font-size: 20px;
		padding: 18px 40px;
	}

	.footer-main {
		padding: 40px 0;
	}

	.footer-divider {
		margin: 30px 0;
	}

	.footer-bottom {
		gap: 20px;
	}

	.footer-copyright {
		font-size: 14px;
	}

	.footer-social {
		gap: 15px;
	}

	.footer-social a {
		width: 30px;
		height: 30px;
	}
}

/* 작은 모바일 */
@media (max-width: 480px) {
	.partner-text {
		font-size: 16px;
	}

	.cta-title {
		font-size: 36px;
	}

	.cta-button {
		font-size: 18px;
		padding: 15px 30px;
	}

	.footer-logo {
		height: 40px;
	}

	.footer-copyright {
		font-size: 12px;
	}
}

#scrollbar {
	display: none !important;
}