@charset "utf-8";
/********************************************************
 SE Main Page - PSD Design Exact Match
 승부처 메인 페이지 전용 스타일
 PSD Canvas: 1920x3800, Content: 1080px
********************************************************/

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Noto+Sans+KR:wght@400;500;600;700;800;900&family=Oxanium:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
	--font-display: 'Black Han Sans', sans-serif;
	--font-heading: 'Noto Sans KR', sans-serif;
	--font-body: 'Pretendard', 'Noto Sans KR', sans-serif;
	--font-number: 'Oxanium', sans-serif;

	--color-primary: #3182f6;
	--color-primary-dark: #1b64da;
	--color-stat-blue: #2370f8; /* PSD exact */
	--color-dark: #333333;
	--color-body: #5f6975;
	--color-light-gray: #949a99;
	--color-warning-red: #f20c0c;
	--color-gold: #f2af23;
	--color-bg-light: #f7f8fa; /* PSD exact page bg */
}

/* ===== Base ===== */
.se-main {
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: -0.3px;
	color: var(--color-dark);
	padding: 0; /* side padding handled by #nt_body (90px) */
	max-width: 100%;
}

.se-main *,
.se-main *::before,
.se-main *::after {
	box-sizing: border-box;
}


/* ==========================================================
   1. HERO BANNER
   PSD: 1122x482px, rounded corners, #f7f8fa bg
   ========================================================== */
.se-hero {
	margin-bottom: 0px; /* PSD: hero and CTA are touching */
}

.se-hero-bg {
	background: var(--color-bg-light);
	border-radius: 20px;
	overflow: visible;
	padding: 60px 50px 0;
	position: relative;
	min-height: 482px; /* PSD exact: 1122x482 hero shape */
}

.se-hero-content {
	position: relative;
	z-index: 1;
	height: 100%;
	min-height: 422px; /* PSD: content area within 482px hero */
}

.se-hero-text {
	position: relative;
	z-index: 3; /* Above trophy */
	padding-bottom: 60px;
	max-width: 560px; /* PSD: text block 554px wide */
}

.se-hero-text h1 {
	font-family: var(--font-display);
	font-size: 64px; /* PSD: 64pt */
	font-weight: 400;
	line-height: 1.1875; /* PSD: leading 76pt / font 64pt */
	color: #131b2b; /* PSD exact */
	margin: 0 0 39px; /* PSD: heading bottom 425 → subtitle top 464 = 39px gap */
	letter-spacing: -3.2px; /* PSD tracking: -50 */
	font-style: italic; /* PSD: FauxItalic = True */
	transform: scaleX(0.96); /* PSD: HScale=0.96 */
	transform-origin: left;
}

.se-hero-highlight {
	color: #236ff8; /* PSD exact blue color */
}

.se-hero-sub {
	font-family: var(--font-heading);
	font-size: 24px; /* PSD: HGGGothicssi60g 24pt */
	font-weight: 600;
	color: #131c2b; /* PSD exact */
	margin: 0;
	line-height: 1.583; /* PSD: leading 38pt / 24pt */
}

.se-hero-trophy {
	position: absolute;
	right: 20px;
	bottom: -20px; /* 트로피 하단이 잘리지 않도록 */
	width: 440px;
	z-index: 2;
}

.se-hero-trophy-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	position: relative;
	z-index: 2;
}

/* SEUNG-BU-CHEO 원형 회전 텍스트 (공통) */
.se-hero-circular-text {
	position: absolute;
	left: 50%;
	top: 38%;
	z-index: 1;
	pointer-events: none;
}

.se-hero-circular-text svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

.se-hero-circular-text svg text {
	font-family: 'Oxanium', sans-serif;
	font-weight: 600;
	font-size: 14px;
	fill: #333;
	letter-spacing: 2px;
}

/* 반투명 (PSD: upper, 20% opacity) */
.se-hero-circular-ghost {
	width: 320px;
	height: 320px;
	margin-left: -160px;
	margin-top: -160px;
	animation: rotateText 20s linear infinite;
}
.se-hero-circular-ghost svg text {
	opacity: 0.12;
}

/* 불투명 (PSD: lower, 100% opacity) */
.se-hero-circular-solid {
	width: 320px;
	height: 320px;
	margin-left: -160px;
	margin-top: -40px;
	animation: rotateText 20s linear infinite reverse;
}
.se-hero-circular-solid svg text {
	opacity: 0.4;
}

@keyframes rotateText {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
	.se-hero-bg {
		padding: 32px 24px 0;
		min-height: 280px;
	}
	.se-hero-text h1 {
		font-size: 32px;
	}
	.se-hero-sub {
		font-size: 14px;
	}
	.se-hero-trophy {
		width: 200px;
		right: 10px;
	}
	.se-hero-circular-text {
		width: 220px;
		height: 220px;
	}
}


/* ==========================================================
   2. CTA BUTTONS
   PSD: two 502x222px cards side by side
   ========================================================== */
.se-cta {
	margin-bottom: 33px; /* PSD: 793 to 826 = 33px */
	position: relative;
	z-index: 3; /* CTA가 트로피 위에 표시 (PSD 원본과 동일) */
}

.se-cta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px; /* PSD: cards at x=451-950 and x=970-1469, gap=20px */
}

.se-cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 20px 28px 32px;
	border-radius: 10px 10px 30px 10px;
	text-decoration: none !important;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
	min-height: 222px; /* PSD: 502x222 */
}

.se-cta-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.se-cta-toto {
	background: linear-gradient(to right, #3bb2fe, #0c69fd); /* PSD exact gradient blue L→R */
}

.se-cta-casino {
	background: linear-gradient(to right, #955cff, #8b50ff); /* PSD exact gradient purple L→R */
}

.se-cta-text {
	position: relative;
	z-index: 2;
}

.se-cta-text h2 {
	font-family: var(--font-heading);
	font-size: 38px; /* PSD: HGGGothicssi80g 38pt */
	font-weight: 800;
	color: #fff;
	margin: 0 0 6px;
	letter-spacing: -0.5px;
	white-space: nowrap;
}

.se-cta-text p {
	font-family: var(--font-heading);
	font-size: 20px; /* PSD: HGGGothicssi60g 20pt */
	font-weight: 600;
	color: #fff;
	margin: 0 0 18px;
}

.se-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 8px 16px;
	border-radius: 5px 5px 15px 5px;
	font-size: 16px; /* PSD: HGGGothicssi60g 16pt */
	font-weight: 600;
	min-width: 187px; /* PSD: 187x42 button */
	height: 42px; /* PSD: 187x42 button */
}

.se-cta-btn i {
	font-size: 14px;
}

.se-cta-img {
	flex-shrink: 0;
	width: 180px;
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.se-cta-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

@media (max-width: 768px) {
	.se-cta-grid {
		grid-template-columns: 1fr;
	}
	.se-cta-text h2 {
		font-size: 22px;
	}
	.se-cta-img {
		width: 120px;
		height: 120px;
	}
}


/* ==========================================================
   3. PROMO BANNER
   PSD: 1022x102px, blue gradient with arrows
   ========================================================== */
.se-promo {
	margin-bottom: 94px; /* PSD: 928 to 1022 = 94px */
}

.se-promo-inner {
	background: linear-gradient(90deg, #1a6af5 0%, #3182f6 50%, #1a6af5 100%);
	border-radius: 10px 10px 30px 10px;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 102px; /* PSD: 1022x102 */
	gap: 16px;
	position: relative;
	overflow: hidden;
}

.se-promo-arrow {
	width: 32px;
	height: 32px;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s;
	flex-shrink: 0;
	z-index: 2;
}

.se-promo-arrow:hover {
	background: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.se-promo-content {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.se-promo-logo {
	flex-shrink: 0;
}

.se-promo-text {
	font-family: var(--font-display);
	font-size: 26px; /* PSD: SDPress-bBasic 26pt */
	font-weight: 400;
	color: #fff;
	white-space: nowrap;
	font-style: italic; /* PSD FauxItalic */
	letter-spacing: -0.65px; /* PSD tracking: -25 */
	transform: scaleX(0.96); /* PSD: HScale=0.96 */
}

.se-promo-text b {
	color: #fff159; /* PSD exact yellow */
	font-weight: 400;
}

.se-promo-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--color-primary) !important;
	padding: 10px 20px;
	border-radius: 5px 5px 15px 5px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.15s;
	white-space: nowrap;
	flex-shrink: 0;
	position: relative;
	z-index: 3;
}

.se-promo-btn:hover {
	background: #f0f4ff;
	transform: translateX(2px);
}

/* PSD 코인/돈 장식 이미지 */
.se-promo-deco {
	position: absolute;
	pointer-events: none;
	z-index: 1;
}

.se-promo-deco-lt {
	left: 40px;
	top: -10px;
	width: 70px;
	height: auto;
	transform: rotate(-5deg);
}

.se-promo-deco-lb {
	left: 20px;
	bottom: -8px;
	width: 55px;
	height: auto;
}

.se-promo-deco-rt {
	right: 130px;
	top: -6px;
	width: 30px;
	height: auto;
}

.se-promo-deco-rm {
	right: 40px;
	top: -18px;
	width: 90px;
	height: auto;
}

.se-promo-deco-rc {
	right: 110px;
	bottom: -5px;
	width: 30px;
	height: auto;
}

@media (max-width: 768px) {
	.se-promo-inner {
		height: 60px;
		gap: 8px;
		padding: 0 8px;
	}
	.se-promo-text {
		font-size: 15px;
	}
	.se-promo-btn {
		padding: 8px 14px;
		font-size: 12px;
	}
	.se-promo-deco {
		display: none;
	}
}


/* ==========================================================
   4. EVENTS / REVIEWS (2-COLUMN LAYOUT)
   PSD: 1040x575px, side-by-side NOT tabs
   ========================================================== */
.se-events-reviews {
	margin-bottom: 97px; /* PSD: 1590 to 1687 = 97px */
}

.se-er-grid {
	display: grid;
	grid-template-columns: 9fr 4fr; /* PSD: 720px/322px = 69%/31% ratio */
	gap: 16px;
}

/* Section Headers */
.se-er-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 27px; /* PSD gap from header bottom to cards */
}

.se-er-header h2 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	color: var(--color-dark);
	margin: 0;
	letter-spacing: 0; /* PSD tracking=0 */
}

.se-er-more {
	color: var(--color-primary) !important;
	font-size: 18px;
	text-decoration: none !important;
	transition: opacity 0.15s;
}

.se-er-more:hover {
	opacity: 0.7;
}

.se-er-arrows {
	display: flex;
	gap: 4px;
	margin-left: auto;
}

.se-er-arrow {
	width: 28px;
	height: 28px;
	border: 1px solid #e0e0e0;
	background: #fff;
	color: #999;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s;
}

.se-er-arrow:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

/* Event Cards Grid */
.se-event-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 7px; /* PSD exact: cards at x=450,680,910 with 223px width = 7px gap */
}

.se-event-card {
	border-radius: 10px 10px 30px 10px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #f0f0f0;
	transition: all 0.2s ease;
	cursor: pointer;
}

.se-event-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.se-event-thumb {
	width: 100%;
	aspect-ratio: 223 / 167; /* PSD exact: event image shape 223x167px */
	overflow: hidden;
	background: #f5f5f5;
}

.se-event-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.se-event-info {
	padding: 12px 14px;
}

.se-event-title {
	font-family: var(--font-body);
	font-size: 16px; /* PSD: Pretendard-Regular 16pt */
	font-weight: 400;
	color: var(--color-dark);
	margin: 0 0 10px;
	line-height: 38px; /* PSD leading: 38pt */
	letter-spacing: -0.4px; /* PSD tracking: -25 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.se-event-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.se-event-badge {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 14px; /* PSD: Pretendard-Bold 14pt */
	font-weight: 700;
	color: #2370f8; /* PSD exact */
	border: 1.5px solid #2370f8;
	border-radius: 6px;
	padding: 2px 10px;
	line-height: 20px; /* PSD leading: 20pt */
	letter-spacing: -0.35px; /* PSD tracking: -25 */
}

.se-event-author {
	font-size: 14px; /* PSD: Pretendard-Regular 14pt */
	color: #333333; /* PSD exact */
	letter-spacing: -0.35px; /* PSD tracking: -25 */
	line-height: 20px; /* PSD leading: 20pt */
}

/* Review Items - PSD: card-style, 322x122px per card, 11px gap */
.se-review-list {
	display: flex;
	flex-direction: column;
	gap: 11px; /* PSD exact gap between cards */
	max-height: 560px;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.se-review-list::-webkit-scrollbar {
	display: none;
}

.se-review-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 16px 18px; /* PSD: internal padding */
	background: #fff;
	border-radius: 12px;
	min-height: 122px; /* PSD exact card height */
	border: 1px solid #f0f0f0;
}

.se-review-left {
	flex: 1;
	min-width: 0;
}

.se-review-company {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.se-review-dot {
	width: 8px;
	height: 8px;
	background: var(--color-primary);
	border-radius: 50%;
	flex-shrink: 0;
}

.se-review-company strong {
	font-family: var(--font-body);
	font-size: 16px; /* PSD: Pretendard-Bold 16pt */
	font-weight: 700;
	color: #131b2b; /* PSD exact */
}

.se-review-title {
	font-family: var(--font-body);
	font-size: 14px; /* PSD: Pretendard-Regular 14pt */
	font-weight: 400;
	color: var(--color-dark);
	margin: 0 0 6px;
	letter-spacing: -0.35px; /* PSD tracking: -25 */
}

.se-review-desc {
	font-family: var(--font-body);
	font-size: 12px; /* PSD: Pretendard-Regular 12pt */
	color: #999999; /* PSD exact */
	margin: 0;
	line-height: 16px; /* PSD leading: 16pt */
	letter-spacing: -0.3px; /* PSD tracking: -25 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.se-review-right {
	flex-shrink: 0;
	text-align: right;
	margin-left: 12px;
}

/* PSD: 32x32 avatar circle with initial letter */
.se-review-avatar {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #6c5ce7;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-bottom: 4px;
}

.se-review-site-name {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--color-dark);
	margin-bottom: 4px;
}

.se-review-stars {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2px;
}

.se-review-stars i {
	font-size: 12px; /* PSD: 12x11 star icons */
	color: #f2af23; /* PSD exact */
}

.se-review-stars i.fa-star-o {
	color: #ddd;
}

.se-review-score {
	font-family: var(--font-number);
	font-size: 12px; /* PSD: Oxanium-SemiBold 12pt */
	font-weight: 600;
	color: var(--color-gold); /* PSD: #f2af23 */
	margin-left: 6px;
}

@media (max-width: 992px) {
	.se-er-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.se-event-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.se-event-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* ==========================================================
   5. POPULAR SITES
   PSD: 1160x326px, 4 cards with carousel arrows
   ========================================================== */
.se-popular {
	margin-bottom: 122px; /* PSD: ~2012 to ~2134 = 122px */
}

.se-popular-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.se-popular-header h2 {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 600;
	color: var(--color-dark);
	margin: 0;
	letter-spacing: 0; /* PSD tracking=0 */
}

.se-popular-more {
	color: var(--color-primary) !important;
	font-size: 18px;
	text-decoration: none !important;
	transition: opacity 0.15s;
}

.se-popular-more:hover {
	opacity: 0.7;
}

.se-popular-carousel {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.se-popular-arrow {
	width: 36px;
	height: 36px;
	border: 1px solid #e0e0e0;
	background: #fff;
	color: #666;
	border-radius: 50%;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s;
	flex-shrink: 0;
	z-index: 2;
}

.se-popular-arrow:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
	box-shadow: 0 4px 12px rgba(49, 130, 246, 0.15);
}

.se-popular-track {
	display: flex;
	gap: 13px; /* PSD: cards 256px apart with 243px width = 13px gap */
	overflow: hidden;
	flex: 1;
	transition: transform 0.3s ease;
}

.se-popular-card {
	flex: 0 0 243px; /* PSD exact width */
	border: 1px solid #f0f0f0;
	border-radius: 10px 10px 30px 10px;
	overflow: hidden;
	transition: all 0.2s ease;
	background: #fff;
}

.se-popular-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.se-popular-visual {
	width: 100%;
	aspect-ratio: 243 / 183; /* PSD exact */
	overflow: hidden;
	background: #171717; /* PSD exact shape fill */
}

.se-popular-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.se-popular-info {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px 8px;
}

.se-popular-badge {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 14px; /* PSD: Pretendard-Bold 14pt */
	font-weight: 700;
	color: #2370f8; /* PSD exact */
	border: 1.5px solid #2370f8;
	border-radius: 6px;
	padding: 2px 10px;
	line-height: 1.5;
}

.se-popular-name {
	font-family: var(--font-body);
	font-size: 16px; /* PSD: Pretendard-Regular 16pt */
	font-weight: 400;
	color: var(--color-dark);
}

.se-popular-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 4px 14px 14px;
	background: var(--color-primary);
	color: #fff !important;
	padding: 8px 16px;
	border-radius: 5px 5px 15px 5px;
	font-size: 16px; /* PSD: Pretendard-Bold 16pt */
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.15s;
	letter-spacing: -0.8px; /* PSD tracking: -50 (16 * -50/1000) */
	min-width: 122px; /* PSD: 122x37 button */
	height: 37px; /* PSD: 122x37 button */
}

.se-popular-btn:hover {
	background: var(--color-primary-dark);
}

.se-popular-btn i {
	font-size: 12px;
}

@media (max-width: 992px) {
	.se-popular-card {
		flex: 0 0 calc(33.333% - 11px);
	}
}

@media (max-width: 768px) {
	.se-popular-card {
		flex: 0 0 calc(50% - 8px);
	}
}


/* ==========================================================
   6. STATS SECTION (WHITE BACKGROUND)
   PSD: 838x434px, white bg, 3 stat items with 3D icons
   ========================================================== */
.se-stats {
	margin-bottom: 55px; /* PSD: ~55px gap from stats bottom to duo cards top */
}

.se-stats-inner {
	background: transparent; /* PSD: no white card, content on page bg #f7f8fa */
	border-radius: 0;
	padding: 60px 40px 0; /* PSD: ~185px gap from popular bottom = 122px margin + 60px padding */
	text-align: center;
}

.se-stats-heading {
	margin-bottom: 40px;
}

.se-stats-logo {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 600;
	color: var(--color-dark);
	margin-bottom: 8px;
}

.se-stats-heading h2 {
	font-family: var(--font-display);
	font-size: 42px; /* PSD: SDPress-bBasic 42pt */
	font-weight: 400;
	color: #131b2b;
	margin: 8px 0 0;
	letter-spacing: -1.05px; /* PSD tracking: -25 */
	line-height: 1.238; /* PSD: leading 52pt / 42pt */
	font-style: italic; /* PSD FauxItalic */
	transform: scaleX(0.96); /* PSD: HScale=0.96 */
}

.se-stats-highlight {
	color: #2370f8; /* PSD exact */
}

.se-stats-row {
	display: flex;
	justify-content: center;
	gap: 80px;
}

.se-stat-item {
	text-align: center;
}

.se-stat-icon {
	margin-bottom: 16px;
}

.se-stat-icon img {
	width: 112px; /* PSD exact: icon ~112px wide */
	height: 112px;
	object-fit: contain;
}

.se-stat-label {
	font-family: var(--font-body);
	font-size: 22px; /* PSD: Pretendard-Bold 22pt */
	font-weight: 700;
	color: var(--color-dark); /* PSD: #333333 */
	margin-bottom: 8px;
	letter-spacing: -0.55px; /* PSD: 22 x -25/1000 */
}

.se-stat-value {
	font-family: var(--font-number);
	font-size: 62px; /* PSD: Oxanium-SemiBold 62pt */
	font-weight: 600;
	color: #2370f8; /* PSD exact */
	letter-spacing: -1.55px; /* PSD: 62 x -25/1000 */
	line-height: 1;
}

@media (max-width: 768px) {
	.se-stats-inner {
		padding: 32px 20px 40px;
	}
	.se-stats-heading h2 {
		font-size: 28px;
	}
	.se-stats-row {
		flex-direction: column;
		gap: 32px;
		align-items: center;
	}
	.se-stat-value {
		font-size: 42px;
	}
	.se-stat-icon img {
		width: 80px;
		height: 80px;
	}
}


/* ==========================================================
   7. DUO CARDS
   PSD: 1055x480px, two cards (blue + yellow)
   ========================================================== */
.se-duo {
	margin-bottom: 40px; /* PSD: duo bottom y=2882 to warning top y=2922 = 40px */
}

.se-duo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.se-duo-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px 16px 32px 32px;
	border-radius: 20px;
	text-decoration: none !important;
	transition: all 0.2s ease;
	min-height: 242px; /* PSD exact */
	position: relative;
	overflow: hidden;
}

.se-duo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.se-duo-job {
	background: linear-gradient(135deg, #4876ef 0%, #4876ef 100%); /* PSD exact fill #4876ef */
}

.se-duo-market {
	background: linear-gradient(135deg, #ffd400 0%, #ffd400 100%); /* PSD exact fill #ffd400 */
}

.se-duo-text {
	position: relative;
	z-index: 2;
	flex: 1;
}

.se-duo-text h3 {
	font-family: var(--font-heading);
	font-size: 38px; /* PSD: HGGGothicssi80g 38pt */
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
}

.se-duo-market .se-duo-text h3 {
	color: var(--color-dark);
}

.se-duo-text p {
	font-family: var(--font-heading);
	font-size: 20px; /* PSD: HGGGothicssi60g 20pt */
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 20px;
	line-height: 1.6;
}

.se-duo-market .se-duo-text p {
	color: rgba(51, 51, 51, 0.8);
}

.se-duo-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
	padding: 8px 18px;
	border-radius: 10px;
	font-size: 16px; /* PSD: HGGGothicssi60g 16pt */
	font-weight: 600;
	min-width: 122px; /* PSD: 122x42 button */
	height: 42px; /* PSD: 122x42 button */
}

.se-duo-market .se-duo-btn {
	background: rgba(255, 255, 255, 0.5);
	color: var(--color-dark);
}

.se-duo-character {
	flex-shrink: 0;
	width: 200px;
	position: relative;
	z-index: 1;
}

.se-duo-character img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

@media (max-width: 768px) {
	.se-duo-grid {
		grid-template-columns: 1fr;
	}
	.se-duo-card {
		min-height: 180px;
		padding: 24px 12px 24px 24px;
	}
	.se-duo-text h3 {
		font-size: 30px;
	}
	.se-duo-character {
		width: 150px;
	}
}


/* ==========================================================
   8. WARNING BANNER
   PSD: 1605x945px, dark bg with red laser effects
   ========================================================== */
.se-warning {
	margin-bottom: 40px; /* gap to footer */
}

.se-warning-inner {
	background-color: #373737; /* PSD exact shape fill */
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 56px 40px; /* PSD: (342px - ~230px content) / 2 = 56px */
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 342px; /* PSD: 1122x342 */
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Dark overlay to make text more readable */
.se-warning-inner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(20, 20, 24, 0.75);
	z-index: 1;
}

.se-warning-content {
	position: relative;
	z-index: 2;
}

.se-warning-content h3 {
	font-family: var(--font-heading);
	font-size: 42px; /* PSD: HGGGothicssi80g 42pt */
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: 0; /* PSD tracking: 0 */
	line-height: 52px; /* PSD leading: 52pt */
}

.se-warning-red {
	font-family: var(--font-heading);
	font-size: 42px; /* PSD: HGGGothicssi80g 42pt */
	font-weight: 800;
	color: var(--color-warning-red); /* PSD: #f20c0c */
	margin-bottom: 20px;
	letter-spacing: 0; /* PSD tracking: 0 */
	line-height: 52px; /* PSD leading: 52pt */
}

.se-warning-content p {
	font-family: var(--font-heading);
	font-size: 20px; /* PSD: HGGGothicssi60g 20pt */
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 32px;
}

.se-warning-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #b30000; /* PSD exact darker red from shape */
	color: #fff !important;
	padding: 14px 28px;
	border-radius: 10px;
	font-size: 16px; /* PSD: HGGGothicssi60g 16pt */
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s ease;
	min-width: 222px; /* PSD: 222x42 button */
	height: 42px; /* PSD: 222x42 button */
}

.se-warning-btn:hover {
	background: #e60000;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.se-warning-btn i {
	font-size: 16px;
}

@media (max-width: 768px) {
	.se-warning-inner {
		padding: 48px 24px;
		min-height: 260px;
	}
	.se-warning-content h3,
	.se-warning-red {
		font-size: 28px;
	}
	.se-warning-content p {
		font-size: 16px;
	}
	.se-warning-btn {
		font-size: 14px;
		padding: 12px 22px;
	}
}


/* ==========================================================
   9. FOOTER
   PSD: 1022x348px, 2-column layout
   ========================================================== */
.se-footer {
	margin-bottom: 30px;
	padding: 0 90px;
}

.se-footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	padding: 40px 0;
}

.se-footer-left {
	padding-right: 20px;
}

.se-footer-left h3 {
	font-family: var(--font-heading);
	font-size: 34px; /* PSD: HGGGothicssi80g 34pt */
	font-weight: 800;
	color: #000000; /* PSD exact */
	margin: 0 0 16px;
	line-height: 44px; /* PSD leading: 44pt */
	letter-spacing: -0.85px; /* PSD tracking: -25 (34 * -25/1000) */
}

.se-footer-highlight {
	color: var(--color-primary);
}

.se-footer-left p {
	font-family: var(--font-body);
	font-size: 16px; /* PSD: Pretendard-Regular 16pt */
	font-weight: 400;
	color: #5f6975; /* PSD exact */
	line-height: 28px; /* PSD leading: 28pt */
	letter-spacing: -0.4px; /* PSD tracking: -25 (16 * -25/1000) */
	margin: 0 0 24px;
}

.se-footer-logo {
	margin-bottom: 12px;
}

.se-footer-copy {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--color-light-gray);
}

.se-footer-right h3 {
	font-family: var(--font-heading);
	font-size: 34px; /* PSD: HGGGothicssi80g 34pt */
	font-weight: 800;
	color: #000000; /* PSD exact */
	margin: 0 0 20px;
	line-height: 44px; /* PSD leading: 44pt */
	letter-spacing: -0.85px; /* PSD tracking: -25 (34 * -25/1000) */
}

.se-footer-textarea {
	width: 100%;
	min-height: 100px;
	border: 1px solid #e5e8eb;
	border-radius: 10px;
	padding: 16px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--color-body);
	resize: vertical;
	margin-bottom: 16px;
	outline: none;
	transition: border-color 0.15s;
}

.se-footer-textarea::placeholder {
	color: var(--color-light-gray);
}

.se-footer-textarea:focus {
	border-color: var(--color-primary);
}

.se-footer-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.se-footer-btn-send {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-primary);
	color: #fff !important;
	padding: 12px 22px;
	border-radius: 5px 5px 15px 5px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.15s;
}

.se-footer-btn-send:hover {
	background: var(--color-primary-dark);
	transform: translateY(-2px);
}

.se-footer-or {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--color-light-gray);
}

.se-footer-btn-tg {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--color-primary) !important;
	padding: 12px 22px;
	border: 1.5px solid var(--color-primary);
	border-radius: 5px 5px 15px 5px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all 0.15s;
}

.se-footer-btn-tg:hover {
	background: #eef3ff;
	transform: translateY(-2px);
}

.se-footer-btn-tg i {
	font-size: 15px;
}

@media (max-width: 768px) {
	.se-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.se-footer-left {
		padding-right: 0;
	}
	.se-footer-left h3,
	.se-footer-right h3 {
		font-size: 24px;
	}
	.se-footer-actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}
