@charset "utf-8";
/* ==========================================================================
	T 스킨 - 로그인 전(인증) 화면 전용 스타일
	외부 CDN(assets-y) 미사용, T 자체 제작
	========================================================================== */

/*	*****
	ICON FONTS : IcoFont
	https://cdn.dnkdhed372.com/common/webfonts/icofont/preview-icons.html
*/
@import url('https://cdn.dnkdhed372.com/common/webfonts/icofont/icofont.css');
/*	***************
	FONTS : GongGothic 이사만루
	font-family: "GongGothic"
*/
@import url('https://cdn.dnkdhed372.com/common/webfonts/font-GongGothic/fonts.css');
/*	***************
	FONTS : 프리텐다드
	font-family: 'Pretendard';
*/
@import url('https://cdn.skysoft9.com/common/webfonts/font-pretendard/fonts.css');


:root	{
	/* Fonts */
	--font-ff-body: "Pretendard", "GongGothic", "Avenir", Helvetica, "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;;
	--font-ff-heading: "GongGothic", sans-serif;
	--font-fw-heading: 400;

	/* UI Element */
	--space-4-clamp: clamp(0px, 0.33vw, 4px);
	--space-6-clamp: clamp(3px, 0.50vw, 6px);
	--space-8-clamp: clamp(4px, 0.67vw, 8px);
	--space-10-clamp: clamp(5px, 0.83vw, 10px);
	--space-12-clamp: clamp(6px, 1.00vw, 12px);
	--space-14-clamp: clamp(7px, 1.17vw, 14px);
	--space-16-clamp: clamp(8px, 1.33vw, 16px);
	--space-18-clamp: clamp(9px, 1.50vw, 18px);
	--space-20-clamp: clamp(10px, 1.67vw, 20px);
	--space-22-clamp: clamp(11px, 1.83vw, 22px);
	--space-24-clamp: clamp(12px, 2.00vw, 24px);
	--space-26-clamp: clamp(13px, 2.17vw, 26px);
	--space-28-clamp: clamp(14px, 2.33vw, 28px);
	--space-30-clamp: clamp(15px, 2.50vw, 30px);
	--space-32-clamp: clamp(16px, 2.67vw, 32px);
	--space-40-clamp: clamp(20px, 3.33vw, 40px);
	--space-48-clamp: clamp(24px, 4.00vw, 48px);
	--space-56-clamp: clamp(28px, 4.67vw, 56px);
	--space-64-clamp: clamp(32px, 5.33vw, 64px);
	--space-72-clamp: clamp(36px, 6.00vw, 72px);
	--space-80-clamp: clamp(40px, 6.67vw, 80px);

	--font-size-8: 0.8rem;	/* 8px */
	--font-size-10: 1rem;	/* 10px : 기본 */
	--font-size-11: clamp(10px, 0.92vw, 11px);
	--font-size-12: clamp(11px, 1.00vw, 12px);
	--font-size-13: clamp(12px, 1.08vw, 13px);
	--font-size-14: clamp(13px, 1.17vw, 14px);
	--font-size-15: clamp(14px, 1.25vw, 15px);
	--font-size-16: clamp(15px, 1.33vw, 16px);
	--font-size-18: clamp(16px, 1.50vw, 18px);
	--font-size-20: clamp(17px, 1.67vw, 20px);
	--font-size-24: clamp(18px, 2.00vw, 24px);
	--font-size-26: clamp(22px, 2.24vw, 26px);
	--font-size-30: clamp(24px, 2.50vw, 30px);
	--font-size-40: clamp(30px, 3.34vw, 40px);

	--t-bg: #121a24; /* 배경 */
	--t-text: #e9ebec; /* 본문 */
	--t-secondery-point-color: #6a5acd;
	--t-muted: #9399a1; /* 흐린 글씨 / 테두리 */
	--t-accent: #f3e527; /* 버튼 */
	--t-accent-rgb: 243, 229, 39; /* 버튼 */
	--t-underline: #ffef00; /* 활성 탭 밑줄 */
	--t-required: #ff5757; /* 필수 표시 */
	--t-color-point: #00ffe0;
	--t-ui-color-dark-rgb: 41, 55, 71;
	--t-ui-color-dark: #293747;
	--t-ui-color-darkdeep: #1b2938;
	--t-ui-color-darklight: #2e435d;

	--layout-w-max: 1620px;
	--layout-w-min: 1024px;
	--layout-h-header: 110px;
	--ui-btn-height: 48px;
}

@media screen and (max-width: 480px) {
	:root	{
		--layout-w-min: 300px;
	}
}
@media screen and (max-width: 768px) {
	/* :root	{} */
	
}
@media screen and (max-width: 1024px) {
	/* :root	{} */
}



/*	---	reset	------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	border: 0;
	vertical-align: middle;
}
ul,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}
button,
input,
select {
	font-family: inherit;
	font-weight: 500;
}

body.t-auth-page,
body.t-page {
	background-color: var(--t-bg);
	color: var(--t-text);
	font-family: var(--font-ff-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

/*	---	PC 헤더	------------------------------------------------------------ */
.t-pc {
	display: block;
	width: 100%;
	max-width: var(--layout-w-max);
	min-width: var(--layout-w-min);
	margin: 0 auto;
}
.t-mobile {
	display: none;
}

.t-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: var(--layout-w-max);
	height: var(--layout-h-header);
	margin: 0 auto;
	padding: 0 var(--space-20-clamp);
}
.t-logo {
	display: block;
}
.t-logo img {
	width: 163px;
	height: auto;
	cursor: pointer;
}

.t-tabs {
	display: flex;
	height: 63px;
	margin-left: auto;
	align-items: center;
	white-space: nowrap;
}
.t-tab {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	height: 63px;
	padding: 0 12px;
	font-size: 16px;
	color: var(--t-text);
	text-align: center;
	background: none;
	border: 0;
	cursor: pointer;
}
.t-tab.active {
	border-bottom: 2px solid var(--t-underline);
	font-weight: bold;
}

/*	---	본문 영역	--------------------------------------------------------- */
.t-view {
	width: 100%;
	max-width: var(--layout-w-max);
	min-width: var(--layout-w-min);
	margin: 0 auto;
}

.t-form {
	display: flex;
	flex-direction: column;
	max-width: 420px;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 24px;
}
.t-form-title {
	display: flex;
	align-items: center;
	color: var(--t-text);
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
}
.t-form-box {
	max-width: 420px;
	width: 100%;
}

/*	입력창 : 투명배경 + 1px 테두리 + radius 8	*/
.t-form-box input,
.t-form-box select {
	display: block;
	width: 100%;
	height: 42px;
	padding: 0 16px;
	line-height: 42px;
	color: var(--t-text);
	font-size: 15px;
	font-weight: 700;
	text-align: left;
	border: 1px solid var(--t-muted);
	border-radius: 8px;
	background-color: transparent;
	margin: 0 auto;
	margin-bottom: 15px;
	outline: none;
}
.t-form-box input::placeholder {
	color: var(--t-muted);
	font-weight: 700;
}
.t-form-box input:focus,
.t-form-box select:focus {
	border-color: var(--t-text);
}

/*	은행 선택 : 입력창과 동일한 톤으로 통일	*/
.t-form-box select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 34px;
	cursor: pointer;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='11'%3E%3Cpath fill='%239399A1' d='M4 0L0 4h8zm0 11L0 7h8z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
}
.t-form-box select option {
	background-color: var(--t-bg);
	color: var(--t-text);
}

/*	자동완성 배경 덮임 방지	*/
.t-form-box input:-webkit-autofill,
.t-form-box input:-webkit-autofill:hover,
.t-form-box input:-webkit-autofill:focus {
	-webkit-text-fill-color: var(--t-text);
	-webkit-box-shadow: 0 0 0 1000px var(--t-bg) inset;
	transition: background-color 9999s ease-out 0s;
}

/*	제출 버튼	*/
/*	입력창 margin-bottom(15px) 과 상쇄되어 실제 간격 30px	*/
.t-submit-wrap {
	margin-top: 30px;
}
.t-submit {
	display: block;
	width: 100%;
	height: 66px;
	border: 0;
	border-radius: 8px;
	background: var(--t-accent);
	color: #000;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
}
.t-submit:disabled {
	opacity: 0.5;
	pointer-events: none;
}

/*	회원가입 안내	*/
.t-join-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	margin: 10px 0 30px;
	cursor: pointer;
}
.t-join-box div {
	text-align: center;
}
.t-join-desc {
	color: var(--t-muted);
	font-weight: 400;
}
.t-join-link {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

/*	라벨 + 입력창 (회원가입)	*/
.t-field {
	display: flex;
	flex-direction: column;
	margin-top: 12px;
}
.t-label {
	color: var(--t-text);
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 8px;
}
.t-required {
	color: var(--t-required);
}

/*	안내문구 (무기명가입)	*/
.t-notice {
	width: 100%;
	margin-top: 16px;
	padding: 16px 18px;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(147, 153, 161, 0.3);
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.7;
	color: var(--t-muted);
	text-align: left;
}
.t-notice dl {
	margin: 0;
	padding: 0;
}
.t-notice dt {
	color: var(--t-accent);
	font-weight: 700;
	margin-bottom: 4px;
}
.t-notice dd {
	margin: 0 0 12px 0;
}
.t-notice dd:last-child {
	margin-bottom: 0;
}
.t-notice .warn {
	color: var(--t-required);
}

/*	보안코드(캡차)	*/
.t-captcha {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 15px;
}
.t-captcha img {
	flex: 0 0 auto;
	width: 150px;
	height: 40px;
	border-radius: 6px;
	cursor: pointer;
}
.t-captcha input {
	margin-bottom: 0 !important;
	text-align: right;
}

/* ==========================================================================
	로그인 후 (헤더 우측 / 배너 / 게임 카드)
	========================================================================== */

/*	---	헤더 메뉴 (슬롯 / 카지노 / 고객센터)	--------------------------- */
.t-nav {
	display: flex;
	align-items: center;
	height: calc(var(--layout-h-header) * 0.65);
	margin-left: 40px;
}
.t-nav-link {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	height: 100%;
	padding: 0 var(--space-24-clamp);
	font-size: var(--font-size-18);
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	color: var(--t-text);
	word-break: keep-all;
	transition: color 0.35s ease-in-out;
}
.t-nav-link:hover	{
	color: var(--t-accent);
}
.t-nav-link.active	{
	border-bottom: 2px solid var(--t-underline);
}

/*	---	헤더 우측 (머니 / 알 / 포인트 / 입출금 / 알림 / 내정보)	------- */
.t-userinfo	{
	display: flex;
	align-items: center;
	height: calc(var(--layout-h-header) * 0.65);
	gap: var(--space-16-clamp);
	margin-left: auto;
	word-break: keep-all;
}
.t-money,
.t-egg,
.t-point	{
	display: flex;
	align-items: center;
	gap: var(--space-12-clamp);
	padding: 0 var(--space-8-clamp);
	font-size: var(--font-size-18);
	font-weight: bold;
	line-height: 1.25;
}
.t-money	{	color: var(--t-underline);}
.t-egg		{	color: var(--t-text);}
.t-point	{	color: var(--t-color-point);}
.t-swap		{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	height: 40px;
	padding: 0 16px;
	font-size: var(--font-size-14);
	font-weight: bold;
	color: var(--t-text);
	background: #2e435c;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	transition: filter 0.1s linear;
}
.t-swap:hover {
	filter: brightness(1.25);
}
.t-swap:disabled {
	opacity: 0.38;
	pointer-events: none;
}
.t-userinfo .inline-flex {
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}
.t-userinfo em.s-label {
	color: rgb(255 255 255 / 50%);
	font-size: var(--font-size-11);
	font-style: normal;
	font-family: var(--font-ff-heading);
	font-weight: 300;
}

/*	팝오버 트리거 (입출금 / 알림 / 내정보)	*/
.t-pop {
	position: relative;
}
.t-pop-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	height: 27px;
	padding: 0 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
	color: var(--t-text);
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 0.25s ease;
}
.t-pop-btn:hover {
	color: var(--t-accent);
}
.t-pop-btn .icon {
	overflow: hidden;
	width: 32px;
	height: 32px;
	padding-top: 6px;
	border: 2px solid #ffee01;
	border-radius: 20px;
	transition: border-color 0.25s ease;
}
.t-pop-btn .icon > i {
	color: #ffee01;
	font-size: 22px;
	transition: color 0.25s ease;
}
.t-pop-btn:hover .icon,
.t-pop-btn:hover .icon > i {
	border-color: var(--t-color-point);
	color: var(--t-color-point);
}

.t-pop-btn svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}
.t-pop-body {
	display: none;
	position: absolute;
	top: 34px;
	right: 0;
	z-index: 200;
	min-width: 150px;
	padding: 8px;
	background: #1c2938;
	border: 1px solid rgba(147, 153, 161, 0.3);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}
.t-pop.open .t-pop-body {
	display: block;
}
.t-pop-body a,
.t-pop-body .t-pop-row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--t-text);
	white-space: nowrap;
}
.t-pop-body a i,
.t-pop-body .t-pop-row i {
	font-size: 18px;
}
.t-pop-body a:hover {
	background: #2e435c;
}
.t-pop-body .t-pop-cnt {
	color: var(--t-underline);
}

/*	---	배너	--------------------------------------------------------------- */
.t-banner {
	padding: 32px 0 16px 0;
}
.t-banner img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

/*	---	메인 게임 카드 (슬롯 / 카지노)	----------------------------------- */
/*	참고 사이트: 1620 컨테이너에 800 + gap20 + 800 = 좌우 여백 없음	*/
.t-cards {
	display: flex;
	gap: 20px;
	margin: 30px 0 10px;
}
.t-card {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	aspect-ratio: 800 / 540;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	/* 배경 = 게임사 아트워크(--t-card-img). 없으면 대체 그라데이션 */
	background: var(--t-card-img, linear-gradient(160deg, #1f2c3c 0%, #16202c 55%, #101822 100%)) center/cover no-repeat;
	background-color: #16202c;
	background-size: auto 90%;
	background-position: bottom center;
	transition: transform 0.25s ease;
}
/*	아트워크 위 글자가 묻히지 않게 위쪽을 어둡게 덮는다	*/
.t-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 55%;
	background: linear-gradient(rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
}
.t-card:hover {
	transform: translateY(-4px);
}
.t-card-head {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 56px 20px 0;
	text-align: center;
	pointer-events: none;
}
.t-card-head em {
	font-style: normal;
	font-size: var(--font-size-40);
	color: #fff;
	line-height: 1.2;
}
.t-card-head span {
	font-size: var(--font-size-20);
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.45);
}
.t-card-foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 20px;
	background: rgba(18, 18, 18, 0.576);
	font-size: 14px;
	font-weight: 700;
	color: var(--t-text);
}

/*	---	서브 페이지 공통 (슬롯 / 카지노 / 게시판 …)	--------------------- */
.t-page-wrap {
	width: 100%;
	max-width: var(--layout-w-max);
	margin: 0 auto;
	color: #fff;
}
.t-page-head {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	margin: 0 0 12px 0;
	padding: 8px 0 16px 12px;
	border-bottom: 1px solid;
	border-color: var(--t-ui-color-darklight);
}
.t-page-title {
	margin: 0;
	font-size: 28px;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	line-height: 33.6px;
	color: #fff;
}

/*	---	게임사 카드 그리드	------------------------------------------------ */
.t-vendors-wrap {
	display: flex;
}
.t-vendors {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	gap: var(--space-24-clamp);
	margin: 0;
	padding: 0;
	padding-top: 64px;
}
.t-vendor {
	display: block;
	width: auto;
	margin: 0;
	padding: var(--space-12-clamp);
	background: rgba(39, 48, 59, 0.6);
	border-radius: var(--space-8-clamp);
	text-align: center;
	cursor: pointer;
}
.t-vendor-thumb {
	position: relative;
	display: block;
	width: 220px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #1c2938;
	height: auto;
	border-radius: var(--space-6-clamp);
	background: var(--t-ui-color-darkdeep);
}
/*	게임사 아트워크	*/
.t-vendor-art {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*	하단 로고 밴드 — 참고 사이트는 이 띠가 이미지에 인쇄돼 있고, 우리 아트워크엔 없어서 CSS 로 얹는다	*/
.t-vendor-ico {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.55);
}
.t-vendor-ico img {
	width: auto;
	max-width: 80%;
	height: 24px;
	object-fit: contain;
}
.t-vendor-name {
	display: block;
	margin-top: 6px;
	font-size: 13.6px;
	font-weight: 600;
	line-height: 20.4px;
	color: #fff;
}

/*	---	게임사 전환 스트립 (슬롯 상세)	------------------------------------ */
.t-provider {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 10px 20px;
}
.t-provider a,
.t-provider span.off {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 40px;
	padding: 0 14px;
	background: #1c2938;
	border-radius: 8px;
	color: var(--t-text);
	font-size: 13px;
	font-weight: 700;
}
.t-provider a.active {
	background: var(--t-underline);
	color: var(--t-ui-color-darkdeep);
}
.t-provider span.off {
	color: var(--t-muted);
	cursor: default;
}
.t-provider img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}

/*	---	게임 타일 (슬롯 게임 목록)	--------------------------------------- */
.t-games {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	align-items: flex-start;
	margin: 10px;
}
.t-game {
	position: relative;
	display: block;
	width: 192px;
	text-align: center;
	cursor: pointer;
}
.t-game-thumb {
	position: relative;
	display: block;
	width: 192px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 8px;
	background: #1c2938;
}
.t-game-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.t-game-name {
	display: block;
	margin-top: 6px;
	font-size: 13.6px;
	font-weight: 600;
	line-height: 20.4px;
	color: #fff;
}
/*	---	라이브 카지노 카드 (참고 사이트는 슬롯과 구조가 다름)	------------
	------------------------------------------------------------------- */
.t-casino-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: var(--space-12-clamp);
	padding: var(--space-16-clamp);
	margin: 0;
}
.t-casino {
	display: grid;
	grid-auto-flow: row;
	width: 308px;
	margin: 0;
	padding: var(--space-12-clamp);
	background: rgba(39, 48, 59, 0.6);
	border-radius: var(--space-16-clamp);
	text-align: center;
	cursor: pointer;
}
.t-casino-thumb {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.875;
	overflow: hidden;
	border-radius: 8px;
	background: var(--t-ui-color-darkdeep);
}
.t-casino-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.t-casino-name {
	display: block;
	width: 100%;
	height: auto;
	padding: 16px 8px 4px;
	color: #fff;
	font-size: var(--font-size-18);
	font-weight: 500;
}
.t-casino-ico {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	right: 0;
	bottom: 0;
	transform: translate(-50%, 8px);
	height: 64px;
	width: 64px;
	padding: 12px;
	border-radius: 32px 32px 0 0;
	background-color: #1e2832;
	box-shadow: 0px -4px 16px -4px var(--t-ui-color-darkdeep);
}
.t-casino-ico img {
	position: static;
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: scale-down;
}
/*	아트워크 없을 때는 밴드 배경을 없애 밋밋함을 줄인다 (카지노는 전 게임사 아트워크 존재)	*/
.t-casino-thumb.no-art .t-casino-ico,
.t-vendor-thumb.no-art .t-vendor-ico {
	background: none;
}
.t-casino.maintenance {
	cursor: default;
}
.t-casino.maintenance .t-casino-thumb::after {
	content: attr(data-mt);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

/*	점검중	*/
.t-vendor.maintenance {
	cursor: default;
}
.t-vendor.maintenance .t-vendor-thumb::after {
	content: attr(data-mt);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

/*	---	마이 / 고객센터 계열 레이아웃	------------------------------------ */
.t-my {
	display: flex;
	width: 100%;
	max-width: var(--layout-w-max);
	gap: var(--space-24-clamp);
	margin: 0 auto;
}
.t-subnav {
	flex: 0 0 292px;
	width: 292px;
	align-self: flex-start;
	display: flex;
	flex-direction: column;
	gap: 1px;
	border-radius: 16px;
	overflow: hidden;
}
.t-subnav a {
	display: flex;
	align-items: center;
	gap: var(--space-12-clamp);
	height: 65px;
	padding-left: 16px;
	background: #1c2938;
	color: var(--t-text);
	font-size: var(--font-size-16);
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading); font-weight: 300;
}
.t-subnav a:hover	{
	background: #324963;	
}
.t-subnav a > i {
	font-size: var(--font-size-20);
}
.t-subnav a.active {
	background: var(--t-underline);
	color: var(--t-ui-color-darkdeep);
	font-weight: 700;
}
.t-subnav a svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	flex: 0 0 auto;
}
.t-my-body {
	display: flex;
	flex-wrap: wrap;
	flex: 1 1 auto;
	gap: var(--space-16-clamp);
}

/*	카드(패널) — 좌측 폼 / 우측 안내	*/
.t-cols {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-16-clamp);
	width: 100%;
}
.t-col {
	flex: 1 1 0;
	min-width: min-content;
	padding: 24px;
	padding-left: var(--space-24-clamp);
	padding-right: var(--space-24-clamp);
	background: #1c2938;
	border-radius: var(--space-16-clamp);
	color: var(--t-text);
}
.t-col.inline-flex	{
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
}
/* .t-col + .t-col {
	margin-left: 15px;
} */
.t-my-title {
	color: var(--t-text);
	font-size: var(--font-size-30);
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	line-height: 1.3;
}
.t-col-title {
	font-size: var(--font-size-18);
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
}
.t-col-body {
	width: 100%;
	padding: var(--space-16-clamp);
	font-size: 14px;
	line-height: 1.7;
}

/*	폼 행 — 라벨 150 고정 + 입력 380	*/
.t-rows {
	--ui-width-label: clamp(80px, 15vw, 160px);
	margin: 20px 0;
}
.t-row {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
.t-row + .t-row {
	padding-top: 16px;
	border-top: 1px solid rgb(216 235 255 / 15%);
}
.t-row-label {
	flex: 0 0 var(--ui-width-label);
	width: var(--ui-width-label);
	padding: 10px 0;
	font-size: 13px;
	font-weight: 700;
	color: var(--t-text);
}
.t-row-input {
	position: relative;
	width: calc(100% - var(--ui-width-label));
	max-width: 100%;
	/* min-width: fit-content; */
}
.t-row-input .t-input {
	display: block;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgb(88, 88, 88);
	border-radius: 2px;
	color: #8abdff;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	padding-right: 25px;
	text-align: right;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	transition: background-color 0.25s ease, border-color 0.2s ease;
}
.t-row-input .t-input:not(:disabled):hover	{
	background-color: rgba(190, 221, 255, 0.125);
	border-color: rgba(190, 221, 255, 0.2);
}
.t-row-input .t-input:focus {
	outline: none;
	background-color: rgba(190, 221, 255, 0.1);
	border-color: rgba(190, 221, 255, 0.2);
	box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 1px inset, rgba(102, 175, 233, 0.6) 0px 0px 8px !important;
}
.t-row-text {
	padding: 10px 0;
	font-size: 14px;
	color: var(--t-text);
}

/*	입력창 (마이 계열)	*/
.t-input {
	display: block;
	width: 100%;
	height: auto;
	min-height: fit-content;
	padding: 0;
	/* background-color: rgba(255, 255, 255, 0.05); */
	/* border: 1px solid #585858; */
	/* border-radius: 1px; */
	/* color: #8abdff; */
	font-size: 14px;
	font-weight: 600;
	/* line-height: 21px; */
	/* text-align: right; */
	outline: none;
}
.t-input:disabled {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.05);
}
.t-input-unit {
	position: absolute;
	right: 10px;
	top: 8px;
	font-size: 13px;
	color: #fff;
}

.t-input-with-btn {
	display: flex;
}
.t-input-with-btn .t-input {
	flex: 1 1 0;
	/* flex: 0 0 260px; */
	/* width: 260px; */
	align-self: flex-start;
}
.t-btn-check {
	flex: 0 0 110px;
	width: 110px;
	height: 35px;
	align-self: flex-start;
	margin-left: 10px;
	padding: 1px 6px;
	border: 1px solid #6f6f6f;
	border-radius: 2px;
	background: #46409a;
	color: #fff;
	font-size: var(--font-size-14);
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
}
.t-btn-check:hover {
	opacity: 0.85;
}

/*	금액 버튼	*/
.t-amounts {
	display: flex;
	flex-wrap: wrap;
	margin-top: 8px;
	gap: 4px;
}
.t-amount {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	height: 40px;
	min-width: fit-content;
	margin: 0;
	padding: 0 4px;
	border: 0;
	border-radius: 4px;
	background: #008080;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	line-height: 34px;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.15s ease, text-shadow 0.15s ease;
}
.t-amount.clear {
	background: #6c757d;
}
.t-amount:hover	{
	background: #00adad;
	text-shadow: 0px 1px 1px #00000073, 0px 0px 2px #00000033;
}
.t-amount:active	{
	background: #006d6d;
	transform: translateY(1px);
}
.t-row-input.btn-wrap {
	width: calc(100% - var(--ui-width-label));
	margin-left: var(--ui-width-label);
}


/*	제출 버튼	*/
.t-submit-primary {
	display: block;
	width: 100%;
	height: var(--ui-btn-height);
	padding: 6px 12px;
	background: #007bff;
	border: 1px solid #054385;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.15s ease, text-shadow 0.15s ease;
}
.t-submit-primary:not(:disabled):hover	{
	background: #2c92ff;
	text-shadow: 0px 1px 1px #00000073, 0px 0px 2px #00000033;
}
.t-submit-primary:not(:disabled):active	{
	background: #005ec2;
	transform: translateY(1px);
}
.t-submit-primary.purple {
	background: #6a5acd;
	border-color: #6a5acd;
}

.t-submit-primary:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	pointer-events: none;
}
.t-btn-inline {
	height: calc(var(--ui-btn-height) - 2px);
	padding: 0 12px;
	border: 0;
	border-radius: 4px;
	background: #6a5acd;
	border: 1px solid;
	border-color: rgba(var(--t-accent-rgb), 0.5);
	color: var(--t-accent);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.15s ease, text-shadow 0.15s ease;
}
button.t-btn-inline:hover	{	background: #7e69ff; text-shadow: 0px 1px 1px #00000073, 0px 0px 2px #00000033;}
button.t-btn-inline:active	{	background: #4a3e95;	transform: translateY(1px);}


/*	---	고객센터 계열 (단일 패널)	---------------------------------------- */
.t-page-content {
	flex: 1 1 auto;
	min-width: 0;
	margin-left: 15px;
	padding: 32px;
	min-height: 720px;
	background: #1c2938;
	border-radius: 16px;
	color: var(--t-text);
}
.t-board-title {
	margin-bottom: 24px;
	font-size: 26px;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	color: var(--t-text);
}
.t-board-sub {
	display: block;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 600;
	color: var(--t-text);
}

/*	빠른이동 카드 (3열)	*/
.t-quick {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.t-quick a {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	background: #2e435c;
	border-radius: 8px;
	cursor: pointer;
}
.t-quick a strong {
	font-size: 16px;
	font-weight: 700;
	color: var(--t-text);
}
.t-quick a span {
	font-size: 14px;
	font-weight: 600;
	color: var(--t-muted);
	line-height: 21px;
}

/*	게시판 목록 (공지사항 / 1:1문의)	*/
.t-board-list {
	display: flex;
	flex-direction: column;
}
.t-board-item {
	border-bottom: 1px solid rgba(147, 153, 161, 0.15);
}
.t-board-item > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--t-text);
}
.t-board-item > a em {
	flex: 0 0 auto;
	font-style: normal;
	font-size: 13px;
	font-weight: 400;
	color: var(--t-muted);
}
.t-board-body {
	padding: 16px 4px 24px;
	font-size: 14px;
	line-height: 1.8;
	color: var(--t-text);
}
.t-board-body img {
	max-width: 100%;
	height: auto;
}

/*	쪽지 본문	*/
.t-msg-detail td {
	background: rgba(0, 0, 0, 0.25);
}
.t-msg-body {
	padding: 8px 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: var(--t-text);
}

/*	1:1문의 상세 (질문 + 답변)	*/
.t-qna-detail td {
	background: rgba(0, 0, 0, 0.25);
}
.t-qna-q {
	padding: 4px 0 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: var(--t-text);
}
.t-qna-a {
	padding: 12px 14px;
	border-radius: 8px;
	background: #2e435c;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: var(--t-text);
}
.t-qna-a:empty {
	display: none;
}

/*	표 안의 작은 삭제 버튼	*/
.t-btn-del {
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: #3a4657;
	color: var(--t-text);
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
}
.t-btn-del:hover {
	background: #4a5a70;
}

/*	아이콘 없는 빈 상태 (쪽지함 — 참고 사이트가 아이콘을 안 씀)	*/
.t-empty-text {
	padding: 40px 16px;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}

/*	게시판 상단 (제목 + 우측 버튼)	*/
.t-board-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 4px;
}
.t-btn-warning {
	flex: 0 0 auto;
	height: 34px;
	padding: 6px 12px;
	border: 0;
	border-radius: 4px;
	background: #ffc107;
	color: #212529;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

/*	---	모달 (1:1문의 글쓰기 등)	---------------------------------------
	참고 사이트 실측: 다이얼로그 800 가운데, 바디 padding 32 / bg #283747,
	라벨 13px/700 #8ABDFF, 제출버튼 전체폭 h38 #46409A, 백드롭 검정 .5
	------------------------------------------------------------------- */
.t-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1050;
	padding: 28px 16px;
	overflow-y: auto;
}
.t-modal.open {
	display: block;
}
.t-modal-dim {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	opacity: 0.5;
}
.t-modal-dialog {
	position: relative;
	z-index: 1;
	width: 800px;
	max-width: 100%;
	margin: 0 auto;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 4.8px;
	overflow: hidden;
}
.t-modal-body {
	padding: 32px;
	background: #283747;
}
.t-modal-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.t-modal-head img {
	width: 200px;
	max-width: 55%;
	height: auto;
}
.t-modal-close {
	background: none;
	border: 0;
	color: var(--t-text);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}
.t-modal-close {
	display: flex;
	border: 0;
	color: var(--t-text);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	position: absolute;
	width: 40px;
	height: 40px;
	right: 12px;
	border-radius: 4px;
	top: 12px;
	background: #0e151c82;
	aspect-ratio: 1/1;
	align-items: center;
	justify-content: center;
}
.t-modal-field {
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.t-modal-label {
	padding: 10px 0;
	font-size: 13px;
	font-weight: 700;
	color: #8abdff;
}
.t-modal-label .t-required {
	color: var(--t-required);
}
.t-modal-input,
.t-modal-textarea {
	display: block;
	width: 100%;
	padding: 6px 12px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid #585858;
	border-radius: 1px;
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	outline: none;
}
.t-modal-input {
	height: 40px;
	background-color: var(--t-ui-color-darkdeep);
}
.t-modal-textarea {
	height: 240px;
	padding: var(--space-16-clamp);
	background-color: var(--t-ui-color-darkdeep);
	line-height: 1.7;
	resize: vertical;
}
.t-modal-input::placeholder,
.t-modal-textarea::placeholder {
	color: var(--t-muted);
}
.t-modal-submit {
	display: block;
	width: 100%;
	height: var(--ui-btn-height);
	border: 0;
	border-radius: 4px;
	background: #46409a;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}
.t-modal-submit:hover {
	opacity: 0.9;
}

/*	1:1문의 작성	*/
.t-qna-write {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 720px;
}
.t-qna-title,
.t-qna-body {
	width: 100%;
	padding: 10px 12px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid #585858;
	border-radius: 4px;
	color: var(--t-text);
	font-size: 14px;
	font-family: inherit;
	outline: none;
}
.t-qna-title::placeholder,
.t-qna-body::placeholder {
	color: var(--t-muted);
}
.t-qna-body {
	resize: vertical;
	line-height: 1.7;
}
.t-qna-write .t-submit-primary {
	max-width: 200px;
}

/*	포인트 보유량	*/
.t-point-have {
	display: flex;
	align-items: center;
	gap: var(--space-12-clamp);
	margin: var(--space-16-clamp) 0;
	font-size: 13px;
	font-weight: 700;
	background: #17222f;
	border: 1px solid #0e151e;
	border-radius: var(--space-8-clamp);
	padding: var(--space-24-clamp);
	flex-wrap: wrap;
	justify-content: space-between;
}
.t-point-have b {
	color: var(--t-color-point);
	font-weight: 600;
}

/*	내정보	*/
.t-info-name {
	margin: 6px 0 14px;
	font-size: 26px;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	color: var(--t-underline);
}
.t-info-dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 16px;
	font-size: 13px;
}
.t-info-dl > div {
	display: flex;
	width: 50%;
	padding: 5px 0;
}
.t-info-dl dt {
	flex: 0 0 90px;
	margin: 0;
	color: var(--t-muted);
	font-weight: 400;
}
.t-info-dl dd {
	margin: 0;
	color: var(--t-text);
	font-weight: 700;
}
.t-info-money {
	display: flex;
	gap: 20px;
	padding: 10px 0 24px;
}
.t-info-money > div {
	flex: 1 1 0;
}
.t-info-money span {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	color: var(--t-muted);
}
.t-info-money b {
	font-size: 24px;
	font-weight: 600;
}
.t-info-actions {
	display: flex;
	gap: 10px;
}
.t-info-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	height: 40px;
	border: 0;
	border-radius: 8px;
	background: #33415a;
	color: var(--t-text);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}
.t-info-btn.wide {
	width: 100%;
}
.t-info-count {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0 16px;
	font-size: 13px;
}
.t-info-count span {
	color: var(--t-muted);
}
.t-info-count b {
	font-size: 20px;
	font-weight: 600;
	color: var(--t-text);
}

/*	내역 박스 / 표	*/
.t-hist {
	width: 100%;
	padding: 16px;
	background: #1c2938;
	border-radius: 16px;
	color: var(--t-text);
	font-size: 14px;
	font-weight: 700;
}
.t-hist-inner {
	margin: 20px 0;
	overflow-x: auto;
}
.t-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	color: var(--t-text);
}
.t-table th {
	height: 45px;
	padding: 12px;
	background: #283747;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}
.t-table th:first-child {
	border-radius: 8px 0 0 8px;
}
.t-table th:last-child {
	border-radius: 0 8px 8px 0;
}
.t-table td {
	padding: 12px;
	text-align: center;
	font-weight: 400;
	border-bottom: 1px solid rgba(147, 153, 161, 0.15);
}
.t-table td.t-td-left {
	text-align: left;
}
.t-table td a {
	color: var(--t-text);
}
.t-table td a:hover {
	color: var(--t-underline);
}
/*	빈 목록 — 참고 사이트: height 300, 아이콘 60px(위 여백 50) + 안내문 13px/700	*/
.t-table-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 300px;
	padding-top: 50px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}
.t-table-empty svg {
	width: 60px;
	height: 60px;
	margin-bottom: 14px;
	fill: rgba(255, 255, 255, 0.35);
}

/*	---	단독 화면 (점검중 / 게임 실행 오류)	------------------------------ */
.t-center-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 100vh;
	padding: 40px 20px;
	text-align: center;
}
.t-center-logo img {
	width: 163px;
	max-width: 60vw;
	height: auto;
	margin-bottom: 8px;
}
.t-center-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #2e435c;
	color: var(--t-underline);
	font-size: 30px;
	font-weight: 600;
}
.t-center-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--t-text);
}
.t-center-msg {
	font-size: 14px;
	line-height: 1.8;
	color: var(--t-muted);
}
.t-center-box .t-submit-primary {
	max-width: 200px;
	margin-top: 8px;
}

/*	---	빈 상태 / 메인 공지 팝업	------------------------------------------ */
.t-empty {
	padding: 48px 16px;
	text-align: center;
	color: var(--t-muted);
	font-size: 14px;
}

.t-popups {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 900;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-start;
	justify-content: center;
	padding: 40px 16px;
	overflow: auto;
	background: rgba(0, 0, 0, 0.6);
}
.t-popup {
	width: 340px;
	max-width: 100%;
	background: #1c2938;
	border-radius: 12px;
	overflow: hidden;
}
.t-popup-body {
	padding: 16px;
	color: var(--t-text);
	font-size: 14px;
	line-height: 1.7;
}
.t-popup-body img {
	display: block;
	width: 100%;
	height: auto;
}
.t-popup-today {
	display: block;
	width: 100%;
	height: 40px;
	border: 0;
	cursor: pointer;
	background: #2e435c;
	color: var(--t-text);
	font-size: 13px;
	font-weight: 700;
}

/*	---	모바일 유저정보 줄 / 전체메뉴 패널 / 메인 버튼그리드	------------- */
.t-muser {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 700;
}
.t-muser-id {
	color: var(--t-text);
}
.t-muser-vals {
	display: flex;
	align-items: center;
	gap: 12px;
}
.t-muser-vals b {
	font-weight: 600;
}

.t-mpanel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: #2a3648;
	transform: translateX(-100%);
	transition: transform 0.28s ease;
	overflow-y: auto;
}
.t-mpanel.open {
	transform: none;
}
.t-mpanel-dim {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background: rgba(0, 0, 0, 0.5);
}
.t-mpanel-dim.open {
	display: block;
}
.t-mpanel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	padding: 0 16px;
	background: #1c2938;
	color: #fff;
	font-weight: 700;
}
.t-mpanel-head button {
	background: none;
	border: 0;
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.t-mpanel-head .t-lv {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-right: 6px;
	border-radius: 6px;
	background: var(--t-underline);
	color: #000;
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
}
.t-mpanel-body {
	padding: 16px;
}
.t-mpanel-body h3 {
	margin: 18px 0 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t-muted);
}
.t-mpanel-body h3:first-child {
	margin-top: 0;
}
.t-mpanel-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.t-mpanel-info li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}
.t-mpanel-info li > span {
	flex: 1 1 auto;
	color: var(--t-muted);
}
.t-mpanel-info li > b {
	font-weight: 600;
}
.t-mpanel-info li > a {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 14px;
	border-radius: 8px;
	background: var(--t-underline);
	color: #000;
	font-size: 13px;
	font-weight: 600;
}
.t-mpanel-wide,
.t-mpanel-grid a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	border-radius: 8px;
	background: #33415a;
	color: var(--t-text);
	font-size: 14px;
	font-weight: 700;
}
.t-mpanel-wide {
	margin-top: 12px;
}
.t-mpanel-grid {
	display: flex;
	gap: 8px;
}
.t-mpanel-grid a {
	flex: 1 1 0;
	min-width: 0;
}

.t-mgrid {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 4px 12px 12px;
}
.t-mgrid-row {
	display: flex;
	gap: 10px;
	justify-content: center;
}
.t-mgrid-row a {
	flex: 1 1 0;
	max-width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 76px;
	border-radius: 12px;
	background: #2e3b4e;
	color: var(--t-text);
	font-size: 13px;
	font-weight: 700;
}
.t-mgrid-row a svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.t-mnotice {
	padding: 8px 16px 24px;
}
.t-mnotice h3 {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--t-text);
}
.t-mnotice ul {
	display: flex;
	flex-direction: column;
}
.t-mnotice li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(147, 153, 161, 0.15);
	font-size: 13px;
	color: var(--t-text);
}
.t-mnotice li em {
	flex: 0 0 auto;
	font-style: normal;
	color: var(--t-muted);
	font-size: 12px;
}

/*	PC 에서는 모바일 전용 패널이 절대 안 뜨게	*/
@media screen and (min-width: 481px) {
	.t-mpanel,
	.t-mpanel-dim {
		display: none !important;
	}
}

/*	---	푸터	--------------------------------------------------------------- */
.t-footer {
	margin-top: var(--space-48-clamp);
	width: 100%;
}
.t-footer-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: var(--layout-w-max);
	margin: 0 auto;
	padding: 0 10px;
}
.t-footer-logos img {
	width: 50%;
	max-width: 560px;
	height: auto;
}
.t-subfooter {
	height: 95px;
	line-height: 95px;
	text-align: center;
	font-size: 13px;
	color: #999;
}
.t-subfooter p {
	margin: 0;
	color: #999;
}






/*	---	모바일	------------------------------------------------------------- */
@media screen and (max-width: 480px) {
	.t-pc {
		display: none;
	}
	.t-mobile {
		display: block;
	}
	.t-mnav {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 50px;
		padding: 8px 20px;
		background: var(--t-bg);
	}
	.t-mnav ul {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.t-mnav li {
		display: inline-block;
		vertical-align: middle;
		line-height: 1;
	}
	.t-mnav a,
	.t-mnav button {
		display: flex;
		align-items: center;
		color: var(--t-text);
	}
	.t-mnav button {
		background: none;
		border: 0;
		padding: 0;
		cursor: pointer;
	}
	.t-mnav svg {
		width: 20px;
		height: 20px;
		fill: currentColor;
	}
	.t-mnav-logo {
		height: 34px;
		width: auto;
	}
	/*	상단바(50px) 는 fixed. 인증화면은 본문 40px + 폼 20px = 60px (참고 사이트 동일)	*/
	body.t-auth-page .t-view {
		padding-top: 40px;
	}
	.t-form {
		margin-top: 20px;
		padding: 0 10px;
	}
	/*	로그인 후 — 고정 상단바(50px) 만큼 유저정보 줄을 내림	*/
	body.t-page .t-muser {
		margin-top: 50px;
		background-color: var(--t-ui-color-dark);
	}

	/*	---	라이브 카지노 n 슬롯 카드 ------------ */
	.t-casino {
		display: flex;
		overflow: hidden;
		align-items: center;
		flex-direction: row;
		width: 100%;
	}
	.t-casino-thumb {
		aspect-ratio: 1 / 0.675;
		border-radius: 4px;
	}
	.t-casino-ico {
		left: 0;
		transform: unset;
		border-radius: 0 32px 0 0;
	}


	/*	---	마이 / 고객센터 — 좌측 사이드바를 가로 탭바로	------------------ */
	.t-my {
		flex-direction: column;
	}
	.t-subnav {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		flex: 0 0 auto;
		width: 100%;
		margin-bottom: 12px;
		align-self: stretch;
		flex-direction: row;
		gap: 0;
		border-radius: 0;
		background: #1c2938;
	}
	.t-subnav::-webkit-scrollbar {
		display: none;
	}
	.t-subnav a {
		flex: 0 0 auto;
		height: 50px;
		padding: 0 16px;
		background: none;
		font-size: 14px;
		white-space: nowrap;
		border-bottom: 2px solid transparent;
	}
	.t-subnav a.active {
		background: none;
		color: var(--t-text);
		border-bottom-color: var(--t-underline);
	}
	.t-my-body {
		flex-direction: column;
		margin: 0;
	}

	/*	패널 2단 → 1단 적층	*/
	.t-cols {
		flex-direction: column;
	}
	.t-col {
		padding: 16px;
		border-radius: 12px;
	}
	.t-col + .t-col {
		margin-left: 0;
		margin-top: 10px;
	}
	.t-my-title {
		font-size: 22px;
	}
	.t-page-content {
		margin-left: 0;
		padding: 24px var(--space-16-clamp);
		min-height: 0;
		border-radius: 12px;
	}
	.t-board-title {
		font-size: 20px;
		margin-bottom: 16px;
	}

	/*	폼 — 라벨을 입력창 위로, 입력창 전체폭	*/
	.t-row {
		flex-direction: column;
		margin-bottom: 12px;
		padding-bottom: 12px;
	}
	.t-row-label {
		flex: 0 0 auto;
		width: 100%;
		padding: 0 0 6px;
	}
	.t-row-input {
		width: 100%;
	}
	.t-row-input.btn-wrap {
		width: 100%;
		margin: 0 auto;
	}
	.t-input {
		height: 40px;
	}
	.t-input-unit {
		top: 11px;
	}

	/*	모바일 — 입력창은 남는 폭 전부, 버튼은 고정	*/
	.t-input-with-btn .t-input {
		flex: 1 1 auto;
		width: auto;
		min-width: 0;
	}
	.t-input-with-btn .t-input[type="password"] {
		flex: none;
		padding-right: 12px;
	}
	.t-btn-check	{
		flex: 1 1 0;
		width: fit-content;
		margin-left: -1px;
		border-radius: 0 2px 2px 0;
		letter-spacing: -0.0245rem;
	}
	/*	내정보 — 1열	*/
	.t-info-dl > div {
		width: 100%;
	}
	.t-quick {
		grid-template-columns: 1fr;
	}
	/*	표 — 좁은 화면에서 가로 스크롤	*/
	.t-table {
		min-width: 520px;
	}
	/*	서브 페이지 / 게임사 카드 — 2열	*/
	.t-page-head {
		margin: 0;
		padding: 16px 0 12px 16px;
	}
	.t-page-title {
		font-size: 18px;
		line-height: 1.15;
		margin: 0;
	}
	.t-vendors {
		gap: 4px;
		margin: 8px 4px;
		padding: 0;
	}
	.t-vendor,
	.t-vendor-thumb {
		width: calc(50% - 4px);
	}
	.t-vendor-thumb {
		width: 100%;
	}
	.t-footer {
		background: linear-gradient(#1d1d1d 0, #000);
		padding: 20px 0;
		text-align: center;
	}
	.t-footer-logos {
		padding: 0;
	}
	.t-footer-logos img {
		width: 100%;
	}
	.t-footer-logos img + img {
		display: none;
	}
}









/*   */
#b-f-s-s { display: none !important;}