/* 푸터 하단 고정: 푸터 밑 검은 공간 제거 (마이페이지·공지 등 짧은 페이지) */
body.page-footer-stick {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
body.page-footer-stick main {
	flex: 1 0 auto;
}

/* 10trix 텍스트 로고 */
.logo-text {
	font-weight: 700;
	font-size: 1.5rem;
	color: #fff;
	text-decoration: none;
	letter-spacing: -0.02em;
}
.logo-text:hover {
	color: #00C4F4;
}
.f-logo.logo-text {
	font-size: 1.25rem;
}

/* 로고만 폰트 크기 1.5배 (네비는 원래 14px 유지) */
#header .menu-nav .logo .logo-text {
	font-size: 2.25rem !important;
}
#header .mobile-menu .nav-logo .logo-text {
	font-size: 2.25rem !important;
}
/* 네비(HOME, ABOUT, CONTACT)는 확실히 14px 고정 */
#header .navbar-wrap .navigation li a,
#header .menu-area .navbar-wrap > ul > li > a {
	font-size: 14px !important;
}

/* Buy 10TRX 버튼 크기 축소 */
#header .header-action .header-btn .btn {
	font-size: 13px !important;
	padding: 10px 20px !important;
}

/* 헤더 높이 축소 (모든 페이지 공통) */
#header .menu-area.menu-style-two {
	padding: 14px 0 !important;
}
#header .menu-area.menu-style-two.sticky-menu {
	padding: 12px 0 !important;
}
#header .menu-area.menu-style-two .navbar-wrap > ul > li > a {
	padding: 14px 0 !important;
}
#header .menu-area.menu-style-two.sticky-menu .navbar-wrap > ul > li > a {
	padding: 12px 0 !important;
}
#header-fixed-height.active-height {
	height: 72px !important;
}

/* 모바일: 헤더 높이 줄이기 */
@media (max-width: 991px) {
	#header .menu-area.menu-style-two {
		padding: 10px 0 !important;
	}
	#header .menu-area.menu-style-two.sticky-menu {
		padding: 8px 0 !important;
	}
	#header-fixed-height.active-height {
		height: 56px !important;
	}
}

/* 10trix 전용: 헤더 텍스트 링크(회원가입/로그인) */
.header-action .header-link {
	color: #A4B4C3;
	text-decoration: none;
	font-size: 15px;
	padding: 0;
	background: none;
	border: none;
}
.header-action .header-link:hover {
	color: #00C4F4;
}

/* 헤더: 회원가입·마이페이지·로그인 간격, 세로 구분선 전부 제거 */
.header-action > ul > li::before {
	display: none !important;
}
.header-action > ul > li {
	margin-left: 14px;
	padding-left: 0;
}
.header-action > ul > li:first-child {
	margin-left: 0;
}

/* 모바일 메뉴: 회원가입·로그인·Buy 10TRX (로고 아래, PC와 동일하게) */
.mobile-menu .mobile-menu-action {
	display: block !important;
	visibility: visible !important;
	padding: 16px 25px 20px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-action ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
}
.mobile-menu-action .header-link {
	color: #A4B4C3;
	text-decoration: none;
	font-size: 15px;
}
.mobile-menu-action .header-link:hover {
	color: #00C4F4;
}
.mobile-menu-action .mobile-menu-btn {
	font-size: 13px;
	padding: 10px 20px;
	border: 1px solid #00C4F4;
	color: #fff;
	background: transparent;
	text-decoration: none;
	border-radius: 5px;
}
.mobile-menu-action .mobile-menu-btn:hover {
	background: #00C4F4;
	color: #fff;
}

/* 10trix 전용: 히어로 세로 넓게 + 비디오 배경 (오버레이/그라데이션 없음) */
.banner-area.banner-bg {
	min-height: 70vh !important;
	height: 70vh !important;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	box-sizing: border-box;
	background-image: none !important;
	background-color: transparent !important;
}
.banner-area.banner-bg .container {
	width: 100%;
	position: relative;
	z-index: 1;
}
.banner-area.banner-bg .banner-content {
	transform: translateY(-20%);
	/* 텍스트 뒤 살짝 어두운 배경으로 가독성 보조 (흐리게) */
	padding: 0.5em 0.75em;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.22);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* 히어로 타이틀: 10trix 텐트릭스는 3배, 차세대 크립토 토큰은 원래 크기, 줄간격 좁게 */
.banner-area.banner-bg .banner-content .title {
	font-size: clamp(2rem, 10vw, 165px);
	line-height: 1.1;
	margin-bottom: 0;
	/* 비디오 위에서도 잘 보이도록 텍스트 그림자 (약간 흐리게) */
	text-shadow:
		0 0 20px rgba(0, 0, 0, 0.85),
		0 0 40px rgba(0, 0, 0, 0.7),
		0 2px 4px rgba(0, 0, 0, 0.7),
		0 4px 8px rgba(0, 0, 0, 0.55),
		1px 1px 0 rgba(0, 0, 0, 0.65),
		-1px -1px 0 rgba(0, 0, 0, 0.5);
}
.banner-area.banner-bg .banner-content .title .title-ko {
	font-size: 0.88em;
}
.banner-area.banner-bg .banner-content .title .title-sub {
	display: block;
	font-size: 55px;
	color: #fff;
	margin-top: 0.35em;
	text-shadow:
		0 0 16px rgba(0, 0, 0, 0.85),
		0 0 32px rgba(0, 0, 0, 0.7),
		0 2px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 768px) {
	.banner-area.banner-bg .banner-content .title .title-sub {
		font-size: 28px;
	}
}

/* 모바일: 히어로 텍스트 세로 중앙 */
@media (max-width: 991px) {
	.banner-area.banner-bg .banner-content {
		transform: translateY(0);
	}
}
@media (max-width: 576px) {
	.banner-area.banner-bg .banner-content {
		transform: translateY(0);
	}
}

/* 히어로 배경 비디오: 최적화 (메타데이터만 선로드, 영역 꽉 채움) */
.hero-bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -2;
	pointer-events: none;
}
/* 메인 히어로 그라데이션/오버레이 완전 제거 (하단 검은색 그라데이션 포함) */
.banner-area.banner-bg::before {
	display: none !important;
	content: none !important;
	background: none !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
.banner-area.banner-bg .banner-shape-wrap {
	position: relative;
	z-index: 0;
}
/* 히어로에서 작은 구체 이미지만 제거, 큰 비트코인/글로우 이미지는 유지 */
.banner-area.banner-bg .banner-shape-wrap img.img-one {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	position: absolute !important;
	left: -9999px !important;
}
/* about 섹션(히어로 밑) 작은 오버레이 이미지 제거, 큰 이미지만 유지 */
.about-area .about-img img.img-two {
	display: none !important;
}

/* About 섹션: 쇼핑 기능을 제공하는 토큰 플랫폼 2pt 작게, 글자색은 제목과 동일(원래대로) */
.title-sub-line {
	font-size: calc(1em - 2pt);
	color: inherit;
}

/* 문서 섹션: 문구 크기 더 크게 + 버튼 간격 */
.document-area .document-desc {
	font-size: 1.5rem !important;
	line-height: 1.65 !important;
	margin-bottom: 2.5rem !important;
	color: #fff;
}
.document-area .document-content .btn {
	margin-top: 2rem !important;
	display: inline-block;
}

/* 푸터 바로가기: 상단 네비와 동일 (Home, About, Contact만, 스타일 맞춤) */
.footer-nav-same-as-header.footer-link ul li a {
	font-size: 14px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
}
.footer-nav-same-as-header.footer-link ul li a:hover {
	color: #00C4F4;
}

/* 푸터 회사 정보: 2단 배치, 높이 맞춤 */
.footer-company-info {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.footer-company-info .footer-company-col {
	flex: 1;
	min-width: 140px;
}
.footer-company-info p {
	margin-bottom: 0.2rem;
	font-size: 0.8rem;
	line-height: 1.4;
}
@media (max-width: 576px) {
	.footer-company-info { flex-direction: column; }
	.footer-bottom .footer-menu ul { justify-content: center; margin-bottom: 10px; }
	.footer-bottom .row.align-items-center { flex-direction: column-reverse; text-align: center; }
	.footer-bottom .copyright-text { margin-bottom: 0; }
}

/* 공지사항 페이지: 히어로 섹션 높이 절반(50vh) 고정 */
section.notice-page-hero.banner-area.banner-bg {
	height: 50vh !important;
	min-height: 50vh !important;
	max-height: 50vh !important;
	padding: 30px 0 !important;
	overflow: hidden;
	display: flex !important;
	align-items: center;
}
section.notice-page-hero .hero-bg-video {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

/* 연락처 섹션: 이메일/전화 아이콘 클릭 시 mailto·tel 연결 */
.contact-info-wrap a.contact-info-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}
.contact-info-wrap a.contact-info-link:hover {
	opacity: 0.9;
	color: inherit;
}
.contact-info-wrap a.contact-info-link:focus {
	outline: 2px solid rgba(0, 196, 244, 0.6);
	outline-offset: 4px;
}
