/* ==========================================================================
   iWin 2 — Neon Cyberpunk + Gamification UI
   Palette: Cyan #00f5ff · Magenta #ff006e · Purple #8800ff · Dark #05000f
   Font: Nunito (body/prose, Vietnamese) + Exo 2 (UI/headings/labels, Vietnamese)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&display=swap');

/* ── Reset ── */
.iw2-page,
.iw2-page *,
.iw2-page *::before,
.iw2-page *::after {
	box-sizing: border-box;
}

html,
body.iw2-page {
	height: auto;
}

/* ── Body: không gian cyberpunk, nền rất tối ── */
body.iw2-page {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: "Nunito", "Segoe UI", Arial, sans-serif;
	color: #c0e0f0;
	background-color: #05000f;
	background-image:
		radial-gradient(ellipse 70% 40% at 50% 0%, rgba(80, 0, 200, .22) 0%, transparent 60%),
		radial-gradient(ellipse 50% 35% at 0% 100%, rgba(0, 180, 255, .10) 0%, transparent 55%),
		radial-gradient(ellipse 50% 35% at 100% 100%, rgba(180, 0, 120, .08) 0%, transparent 55%),
		linear-gradient(180deg, #08001a 0%, #05000f 50%, #03000a 100%);
	background-attachment: fixed;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Override Flatsome's global Lato — áp đặt Nunito cho toàn bộ content area */
body.iw2-page .iw2-content,
body.iw2-page .iw2-content p,
body.iw2-page .iw2-content h1,
body.iw2-page .iw2-content h2,
body.iw2-page .iw2-content h3,
body.iw2-page .iw2-content h4,
body.iw2-page .iw2-content h5,
body.iw2-page .iw2-content h6,
body.iw2-page .iw2-content span,
body.iw2-page .iw2-content li,
body.iw2-page .iw2-content a,
body.iw2-page .iw2-content td,
body.iw2-page .iw2-content th {
	font-family: "Nunito", "Segoe UI", Arial, sans-serif;
}

body.iw2-page a {
	color: #00d4e8;
	text-decoration: none;
	transition: color .2s, text-shadow .2s;
}

body.iw2-page a:hover {
	color: #00f5ff;
	text-shadow: 0 0 8px rgba(0, 245, 255, .6);
}

body.iw2-page img {
	max-width: 100%;
	height: auto;
	display: block;
}

.absolute-footer,
html {
	background-color: unset;
}

/* ── Circuit grid nền (iw2-grid) ── */
.iw2-grid {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	/* Lưới circuit board: đường ngang + dọc rất mờ */
	background-image:
		repeating-linear-gradient(0deg,
			transparent 0px,
			transparent 59px,
			rgba(0, 245, 255, .045) 60px,
			transparent 61px),
		repeating-linear-gradient(90deg,
			transparent 0px,
			transparent 59px,
			rgba(0, 245, 255, .028) 60px,
			transparent 61px);
	background-size: 60px 60px;
}

/* ── Thanh quét neon (scan line) ── */
.iw2-scan {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg,
			transparent 0%, rgba(0, 245, 255, .8) 30%,
			rgba(0, 245, 255, 1) 50%, rgba(0, 245, 255, .8) 70%, transparent 100%);
	box-shadow: 0 0 12px rgba(0, 245, 255, .8), 0 0 24px rgba(0, 245, 255, .4);
	pointer-events: none;
	z-index: 1;
	animation: iw2Scan 6s linear infinite;
}

@keyframes iw2Scan {
	0% {
		top: -2px;
		opacity: 1;
	}

	85% {
		opacity: 1;
	}

	100% {
		top: 100vh;
		opacity: 0;
	}
}

/* ── Live dot (blinking indicator) ── */
.iw2-live-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #00f5ff;
	box-shadow: 0 0 6px #00f5ff, 0 0 12px rgba(0, 245, 255, .5);
	animation: iw2Blink 1.3s ease-in-out infinite;
	flex-shrink: 0;
}

.iw2-live-dot--pink {
	background: #ff006e;
	box-shadow: 0 0 6px #ff006e, 0 0 12px rgba(255, 0, 110, .5);
}

.iw2-live-dot--cyan {
	background: #00f5ff;
	box-shadow: 0 0 6px #00f5ff, 0 0 12px rgba(0, 245, 255, .5);
}

@keyframes iw2Blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: .15;
	}
}

/* ── Social buttons ── */
.iw2-social {
	position: fixed;
	top: 18px;
	right: 18px;
	z-index: 30;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.iw2-social-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px 7px 8px;
	font-family: "Exo 2", sans-serif;
	font-weight: 400;
	font-size: 11px;
	letter-spacing: .08em;
	color: #00f5ff;
	background: rgba(0, 10, 30, .85);
	border: 1px solid rgba(0, 245, 255, .5);
	border-radius: 3px;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
	box-shadow:
		0 0 10px rgba(0, 245, 255, .2),
		inset 0 0 8px rgba(0, 245, 255, .05);
	transition: box-shadow .2s, color .2s;
}

.iw2-social-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.iw2-social-btn:hover {
	color: #fff;
	box-shadow: 0 0 16px rgba(0, 245, 255, .5), inset 0 0 12px rgba(0, 245, 255, .1);
}

.iw2-social-btn--tg {
	border-color: rgba(0, 200, 240, .5);
	box-shadow: 0 0 10px rgba(0, 200, 240, .2), inset 0 0 8px rgba(0, 200, 240, .04);
}

.iw2-social-btn--tg:hover {
	box-shadow: 0 0 16px rgba(0, 200, 240, .5), inset 0 0 12px rgba(0, 200, 240, .1);
}

.iw2-social-btn--chat {
	border-color: rgba(255, 0, 110, .5);
	color: #ff4090;
	position: fixed;
	right: 18px;
	bottom: 24px;
	top: auto;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
	box-shadow: 0 0 10px rgba(255, 0, 110, .25), inset 0 0 8px rgba(255, 0, 110, .05);
}

.iw2-social-btn--chat:hover {
	color: #ff80b0;
	box-shadow: 0 0 18px rgba(255, 0, 110, .5), inset 0 0 12px rgba(255, 0, 110, .1);
}

/* ── Side panels common ── */
.iw2-side {
	position: fixed;
	top: 12%;
	z-index: 5;
	width: 236px;
	pointer-events: none;
}

.iw2-side>* {
	pointer-events: auto;
}

.iw2-side--left {
	left: 20px;
}

.iw2-side--right {
	right: 20px;
}

/* ───────────────────────────────────────────────────────
   SIDEBAR TRÁI — Achievement / XP HUD (Cyan theme)
─────────────────────────────────────────────────────── */
.iw2-hud-panel {
	position: relative;
	padding: 14px 14px 16px;
	background: rgba(0, 8, 24, .92);
	border: 1px solid rgba(0, 245, 255, .35);
	border-radius: 4px;
	box-shadow:
		0 0 18px rgba(0, 245, 255, .12),
		0 0 40px rgba(0, 245, 255, .05),
		inset 0 0 20px rgba(0, 245, 255, .04);
}

/* Góc HUD — 4 góc neon */
.iw2-hud-panel::before,
.iw2-hud-panel::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-color: #00f5ff;
	border-style: solid;
	box-shadow: 0 0 6px rgba(0, 245, 255, .6);
}

.iw2-hud-panel::before {
	top: -1px;
	left: -1px;
	border-width: 2px 0 0 2px;
}

.iw2-hud-panel::after {
	bottom: -1px;
	right: -1px;
	border-width: 0 2px 2px 0;
}

.iw2-hud-header {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0, 245, 255, .15);
}

.iw2-hud-icon {
	width: 18px;
	height: 18px;
	color: #00f5ff;
	filter: drop-shadow(0 0 4px rgba(0, 245, 255, .8));
	flex-shrink: 0;
}

.iw2-hud-title {
	font-family: "Exo 2", sans-serif;
	font-size: 12px;
	letter-spacing: .12em;
	color: #00f5ff;
	text-shadow: 0 0 8px rgba(0, 245, 255, .7);
	flex: 1;
}

/* Level ring + XP bar */
.iw2-level-block {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.iw2-level-ring {
	position: relative;
	flex-shrink: 0;
	width: 54px;
	height: 54px;
}

.iw2-ring-svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

/* SVG ring track */
.iw2-ring-track {
	fill: none;
	stroke: rgba(0, 245, 255, .15);
	stroke-width: 3;
}

/* SVG ring fill (75% — circumference ≈ 113px, 75% ≈ 85px) */
.iw2-ring-fill {
	fill: none;
	stroke: #00f5ff;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-dasharray: 113;
	stroke-dashoffset: 28;
	/* 113 * (1 - .75) */
	filter: drop-shadow(0 0 3px rgba(0, 245, 255, .9));
	animation: iw2RingPulse 3s ease-in-out infinite;
}

@keyframes iw2RingPulse {

	0%,
	100% {
		filter: drop-shadow(0 0 3px rgba(0, 245, 255, .9));
	}

	50% {
		filter: drop-shadow(0 0 7px rgba(0, 245, 255, 1));
	}
}

.iw2-level-num {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Exo 2", sans-serif;
	font-size: 20px;
	color: #00f5ff;
	text-shadow: 0 0 8px rgba(0, 245, 255, .9);
	padding-top: 12px;
}

.iw2-level-lbl {
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Exo 2", sans-serif;
	font-size: 8px;
	color: rgba(0, 245, 255, .6);
	letter-spacing: .1em;
}

.iw2-xp-area {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.iw2-xp-bar {
	position: relative;
	height: 8px;
	background: rgba(0, 245, 255, .1);
	border: 1px solid rgba(0, 245, 255, .25);
	border-radius: 0;
	overflow: visible;
}

.iw2-xp-fill {
	width: 75%;
	height: 100%;
	background: linear-gradient(90deg, #0080a0, #00f5ff);
	position: relative;
}

.iw2-xp-glow {
	position: absolute;
	right: -1px;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 14px;
	background: #00f5ff;
	box-shadow: 0 0 8px rgba(0, 245, 255, 1), 0 0 16px rgba(0, 245, 255, .6);
	border-radius: 2px;
}

.iw2-xp-text {
	font-family: "Exo 2", sans-serif;
	font-size: 10px;
	color: rgba(0, 245, 255, .7);
	letter-spacing: .04em;
}

.iw2-xp-next {
	font-family: "Exo 2", sans-serif;
	font-size: 9px;
	color: rgba(0, 245, 255, .4);
	letter-spacing: .04em;
}

/* Mission list */
.iw2-missions {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.iw2-mission-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Exo 2", sans-serif;
	font-size: 10px;
	color: rgba(0, 245, 255, .5);
	letter-spacing: .1em;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.iw2-mission-count {
	background: rgba(0, 245, 255, .15);
	border: 1px solid rgba(0, 245, 255, .3);
	border-radius: 2px;
	padding: 0 5px;
	color: #00f5ff;
	font-size: 10px;
}

.iw2-mission-item {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 6px 8px;
	background: rgba(0, 0, 0, .3);
	border: 1px solid rgba(0, 245, 255, .08);
	border-radius: 2px;
}

.iw2-mission-item.iw2-done {
	border-color: rgba(0, 245, 255, .2);
	background: rgba(0, 245, 255, .06);
}

/* Checkbox / checkmark */
.iw2-check {
	width: 14px;
	height: 14px;
	border: 1px solid rgba(0, 245, 255, .4);
	border-radius: 2px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.iw2-done .iw2-check {
	background: rgba(0, 245, 255, .2);
	border-color: #00f5ff;
}

.iw2-done .iw2-check::after {
	content: "";
	width: 5px;
	height: 3px;
	border-left: 2px solid #00f5ff;
	border-bottom: 2px solid #00f5ff;
	transform: rotate(-45deg) translateY(-1px);
	display: block;
}

.iw2-mission-name {
	flex: 1;
	font-size: 11px;
	color: #7ab8d0;
	font-family: "Nunito", sans-serif;
}

.iw2-done .iw2-mission-name {
	color: #a0d0e0;
}

.iw2-reward {
	font-family: "Exo 2", sans-serif;
	font-size: 10px;
	color: #00f5ff;
	opacity: .7;
	white-space: nowrap;
}

.iw2-done .iw2-reward {
	opacity: 1;
}

/* ───────────────────────────────────────────────────────
   SIDEBAR PHẢI — Live Leaderboard (Magenta theme)
─────────────────────────────────────────────────────── */
.iw2-leaderboard {
	position: relative;
	padding: 12px 12px 14px;
	background: rgba(18, 0, 12, .92);
	border: 1px solid rgba(255, 0, 110, .35);
	border-radius: 4px;
	box-shadow:
		0 0 18px rgba(255, 0, 110, .12),
		0 0 40px rgba(255, 0, 110, .05),
		inset 0 0 20px rgba(255, 0, 110, .04);
}

.iw2-leaderboard::before,
.iw2-leaderboard::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-color: #ff006e;
	border-style: solid;
	box-shadow: 0 0 6px rgba(255, 0, 110, .6);
}

.iw2-leaderboard::before {
	top: -1px;
	left: -1px;
	border-width: 2px 0 0 2px;
}

.iw2-leaderboard::after {
	bottom: -1px;
	right: -1px;
	border-width: 0 2px 2px 0;
}

.iw2-lb-header {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 0, 110, .2);
}

.iw2-lb-live {
	font-family: "Exo 2", sans-serif;
	font-size: 9px;
	letter-spacing: .15em;
	color: #ff006e;
	text-shadow: 0 0 6px rgba(255, 0, 110, .8);
	border: 1px solid rgba(255, 0, 110, .5);
	padding: 1px 5px;
	border-radius: 2px;
}

.iw2-lb-title {
	font-family: "Exo 2", sans-serif;
	font-size: 11px;
	letter-spacing: .08em;
	color: #ff60a0;
	text-shadow: 0 0 6px rgba(255, 0, 110, .5);
	flex: 1;
	text-align: right;
}

.iw2-lb-list {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.iw2-lb-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px;
	background: rgba(0, 0, 0, .3);
	border: 1px solid rgba(255, 0, 110, .08);
	border-radius: 2px;
}

/* Top 3 highlight */
.iw2-lb-item--1 {
	background: rgba(255, 200, 0, .07);
	border-color: rgba(255, 200, 0, .25);
}

.iw2-lb-item--2 {
	background: rgba(180, 180, 180, .05);
	border-color: rgba(180, 180, 180, .2);
}

.iw2-lb-item--3 {
	background: rgba(180, 100, 0, .06);
	border-color: rgba(200, 120, 40, .2);
}

.iw2-lb-rank {
	font-family: "Exo 2", sans-serif;
	font-size: 13px;
	font-weight: 700;
	width: 22px;
	flex-shrink: 0;
}

.iw2-lb-item--1 .iw2-lb-rank {
	color: #ffd700;
	text-shadow: 0 0 8px rgba(255, 215, 0, .8);
}

.iw2-lb-item--2 .iw2-lb-rank {
	color: #c0c0c0;
	text-shadow: 0 0 6px rgba(200, 200, 200, .6);
}

.iw2-lb-item--3 .iw2-lb-rank {
	color: #c87820;
	text-shadow: 0 0 6px rgba(200, 120, 32, .6);
}

.iw2-lb-item:not(.iw2-lb-item--1):not(.iw2-lb-item--2):not(.iw2-lb-item--3) .iw2-lb-rank {
	color: rgba(255, 0, 110, .5);
}

.iw2-lb-name {
	flex: 1;
	font-size: 12px;
	color: #e090c0;
	font-family: "Nunito", sans-serif;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iw2-lb-amount {
	font-family: "Exo 2", sans-serif;
	font-size: 11px;
	color: #ff006e;
	text-shadow: 0 0 6px rgba(255, 0, 110, .6);
	white-space: nowrap;
}

.iw2-lb-item--1 .iw2-lb-amount {
	color: #ffd700;
	text-shadow: 0 0 8px rgba(255, 215, 0, .6);
}

.iw2-lb-footer {
	border-top: 1px solid rgba(255, 0, 110, .15);
	padding-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.iw2-online-row {
	display: flex;
	align-items: center;
	gap: 7px;
}

.iw2-online-label {
	font-family: "Exo 2", sans-serif;
	font-size: 10px;
	color: rgba(255, 0, 110, .6);
	letter-spacing: .08em;
	flex: 1;
}

.iw2-online-count {
	font-family: "Exo 2", sans-serif;
	font-size: 13px;
	color: #ff60a0;
	text-shadow: 0 0 6px rgba(255, 0, 110, .6);
	font-weight: 700;
}

.iw2-jackpot-row {
	display: flex;
	flex-direction: column;
	gap: 3px;
	background: rgba(255, 0, 110, .06);
	border: 1px solid rgba(255, 0, 110, .2);
	border-radius: 3px;
	padding: 6px 10px;
	text-align: center;
}

.iw2-jackpot-label {
	font-family: "Exo 2", sans-serif;
	font-size: 9px;
	letter-spacing: .2em;
	color: rgba(255, 0, 110, .6);
}

.iw2-jackpot-amount {
	font-family: "Exo 2", sans-serif;
	font-size: 13px;
	color: #ff006e;
	text-shadow:
		0 0 6px rgba(255, 0, 110, .9),
		0 0 14px rgba(255, 0, 110, .5);
	animation: iw2JackpotPulse 2.5s ease-in-out infinite;
	letter-spacing: .04em;
}

@keyframes iw2JackpotPulse {

	0%,
	100% {
		text-shadow: 0 0 6px rgba(255, 0, 110, .9), 0 0 14px rgba(255, 0, 110, .5);
	}

	50% {
		text-shadow: 0 0 10px rgba(255, 0, 110, 1), 0 0 24px rgba(255, 0, 110, .7), 0 0 40px rgba(255, 0, 110, .3);
	}
}

/* ── Main container ── */
.iw2-main {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 24px auto 32px;
	padding: 0 20px 48px;
	text-align: center;
	background: rgba(4, 0, 16, .82);
	border: 1px solid rgba(0, 245, 255, .22);
	border-radius: 4px;
	box-shadow:
		0 0 24px rgba(0, 245, 255, .1),
		0 0 60px rgba(0, 245, 255, .04),
		inset 0 0 40px rgba(0, 0, 0, .4);
}

/* Hai góc neon trên .iw2-main */
.iw2-main::before,
.iw2-main::after {
	content: "";
	position: absolute;
	width: 22px;
	height: 22px;
	border-color: #00f5ff;
	border-style: solid;
	box-shadow: 0 0 8px rgba(0, 245, 255, .7);
	z-index: 1;
	pointer-events: none;
}

.iw2-main::before {
	top: -1px;
	left: -1px;
	border-width: 2px 0 0 2px;
}

.iw2-main::after {
	bottom: -1px;
	right: -1px;
	border-width: 0 2px 2px 0;
}

/* Terminal title bar */
.iw2-terminal-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	background: rgba(0, 245, 255, .06);
	border-bottom: 1px solid rgba(0, 245, 255, .15);
	margin: 0 -20px 24px;
}

.iw2-term-dots {
	display: flex;
	gap: 5px;
}

.iw2-term-dots i {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.iw2-term-dots i:nth-child(1) {
	background: #ff006e;
	box-shadow: 0 0 5px rgba(255, 0, 110, .7);
}

.iw2-term-dots i:nth-child(2) {
	background: #ffd700;
	box-shadow: 0 0 5px rgba(255, 215, 0, .7);
}

.iw2-term-dots i:nth-child(3) {
	background: #00f5ff;
	box-shadow: 0 0 5px rgba(0, 245, 255, .7);
}

.iw2-term-path {
	flex: 1;
	font-family: "Exo 2", sans-serif;
	font-size: 11px;
	color: rgba(0, 245, 255, .55);
	letter-spacing: .08em;
	text-align: center;
}

.iw2-term-blink {
	font-family: "Exo 2", sans-serif;
	font-size: 12px;
	color: #00f5ff;
	animation: iw2Blink 1s step-start infinite;
}

/* ── Banner ── */
.iw2-banner {
	position: relative;
	z-index: 3;
	padding-top: 4px;
}

.iw2-logo {
	display: inline-block;
	margin: 0 auto 10px;
	max-width: 32%;
	min-width: 110px;
}

.iw2-logo-img,
.iw2-logo img {
	display: block;
	margin: 0 auto;
	max-height: 108px;
	width: auto;
	filter:
		drop-shadow(0 0 10px rgba(0, 245, 255, .5)) drop-shadow(0 0 24px rgba(0, 245, 255, .25));
}

.iw2-tagline {
	margin: 8px 0 6px;
	font-size: 30px;
	letter-spacing: .1em;
	font-weight: 900;
	text-transform: uppercase;
	font-family: "Exo 2", sans-serif;
	position: relative;
}

/* Gradient trắng → cyan: dễ đọc + giữ neon feel */
.iw2-tagline-text {
	display: block;
	background: linear-gradient(180deg,
			#ffffff 0%,
			#d0f8ff 28%,
			#00e5ff 62%,
			#00a8cc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 10px rgba(0, 230, 255, .65));
	animation: iw2NeonFlicker 9s infinite;
}

/* Glitch ghost layer */
.iw2-tagline-text::before {
	content: attr(data-text);
	position: absolute;
	left: 0;
	right: 0;
	color: #ff006e;
	text-shadow: 0 0 6px #ff006e;
	clip-path: rect(0, 0, 0, 0);
	animation: iw2Glitch 9s infinite;
}

.iw2-tagline-text::after {
	content: attr(data-text);
	position: absolute;
	left: 0;
	right: 0;
	color: #8800ff;
	text-shadow: 0 0 6px #8800ff;
	clip-path: rect(0, 0, 0, 0);
	animation: iw2Glitch2 9s infinite;
}

@keyframes iw2NeonFlicker {

	0%,
	18%,
	22%,
	25%,
	53%,
	57%,
	100% {
		opacity: 1;
	}

	20%,
	24%,
	55% {
		opacity: .85;
	}
}

@keyframes iw2Glitch {

	0%,
	84%,
	100% {
		clip-path: rect(0px, 720px, 0px, 0);
		transform: none;
	}

	85% {
		clip-path: rect(12px, 720px, 28px, 0);
		transform: translateX(-3px);
	}

	86% {
		clip-path: rect(50px, 720px, 64px, 0);
		transform: translateX(3px);
	}

	87% {
		clip-path: rect(28px, 720px, 42px, 0);
		transform: translateX(-2px);
	}

	88% {
		clip-path: rect(0, 0, 0, 0);
	}
}

@keyframes iw2Glitch2 {

	0%,
	88%,
	100% {
		clip-path: rect(0, 0, 0, 0);
		transform: none;
	}

	89% {
		clip-path: rect(38px, 720px, 54px, 0);
		transform: translateX(4px) skewX(2deg);
	}

	90% {
		clip-path: rect(8px, 720px, 22px, 0);
		transform: translateX(-2px);
	}

	91% {
		clip-path: rect(0, 0, 0, 0);
	}
}

.iw2-subline {
	margin: 0 0 12px;
	font-size: 14px;
	color: #5090a8;
	font-weight: 600;
	font-family: "Nunito", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
}

/* Badges cyberpunk — cut corner */
.iw2-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 10px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	font-family: "Exo 2", sans-serif;
	clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.iw2-badge--cyan {
	background: rgba(0, 245, 255, .12);
	border: 1px solid rgba(0, 245, 255, .5);
	color: #00f5ff;
	text-shadow: 0 0 6px rgba(0, 245, 255, .8);
	box-shadow: 0 0 10px rgba(0, 245, 255, .2);
}

.iw2-badge--pink {
	background: rgba(255, 0, 110, .1);
	border: 1px solid rgba(255, 0, 110, .5);
	color: #ff60a0;
	text-shadow: 0 0 6px rgba(255, 0, 110, .7);
	box-shadow: 0 0 10px rgba(255, 0, 110, .15);
}

/* ── Hero frame — Màn hình cyberpunk ── */
.iw2-hero {
	margin: 16px auto 4px;
}

.iw2-hero-frame {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	border-radius: 3px;
	overflow: hidden;
	background: #020610;
	border: 2px solid #00f5ff;
	box-shadow:
		0 0 20px rgba(0, 245, 255, .5),
		0 0 50px rgba(0, 245, 255, .2),
		0 0 90px rgba(0, 245, 255, .08),
		inset 0 0 30px rgba(0, 245, 255, .06);
}

/* Scanlines overlay */
.iw2-scanlines {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
	background: repeating-linear-gradient(0deg,
			rgba(0, 0, 0, .18) 0px, rgba(0, 0, 0, .18) 1px,
			transparent 1px, transparent 3px);
}

/* 4 góc HUD trên frame hero */
.iw2-frame-corner {
	position: absolute;
	width: 20px;
	height: 20px;
	border-color: #00f5ff;
	border-style: solid;
	z-index: 3;
	box-shadow: 0 0 8px rgba(0, 245, 255, .8);
}

.iw2-frame-corner--tl {
	top: 4px;
	left: 4px;
	border-width: 2px 0 0 2px;
}

.iw2-frame-corner--tr {
	top: 4px;
	right: 4px;
	border-width: 2px 2px 0 0;
}

.iw2-frame-corner--bl {
	bottom: 4px;
	left: 4px;
	border-width: 0 0 2px 2px;
}

.iw2-frame-corner--br {
	bottom: 4px;
	right: 4px;
	border-width: 0 2px 2px 0;
}

/* Hero media */
.iw2-hero-media,
.iw2-hero-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

/* Placeholder — reticle targeting screen */
.iw2-hero-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background:
		repeating-linear-gradient(0deg,
			rgba(0, 245, 255, .03) 0px, rgba(0, 245, 255, .03) 1px,
			transparent 1px, transparent 4px),
		radial-gradient(ellipse at 50% 50%, #020c20 0%, #010408 100%);
}

/* Reticle targeting art (CSS only) */
.iw2-reticle {
	position: relative;
	width: 80px;
	height: 80px;
	margin-bottom: 6px;
}

.iw2-reticle-outer {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1.5px solid rgba(0, 245, 255, .6);
	box-shadow: 0 0 12px rgba(0, 245, 255, .4), inset 0 0 12px rgba(0, 245, 255, .1);
	animation: iw2RotateSlow 8s linear infinite;
}

.iw2-reticle-inner {
	position: absolute;
	inset: 16px;
	border-radius: 50%;
	border: 1px solid rgba(0, 245, 255, .4);
	animation: iw2RotateSlow 4s linear infinite reverse;
}

.iw2-reticle-h {
	position: absolute;
	top: 50%;
	left: 8px;
	right: 8px;
	height: 1px;
	background: linear-gradient(90deg, rgba(0, 245, 255, .2), rgba(0, 245, 255, .7), rgba(0, 245, 255, .2));
}

.iw2-reticle-v {
	position: absolute;
	left: 50%;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: linear-gradient(0deg, rgba(0, 245, 255, .2), rgba(0, 245, 255, .7), rgba(0, 245, 255, .2));
}

@keyframes iw2RotateSlow {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.iw2-hero-name {
	font-size: 52px;
	font-weight: 900;
	letter-spacing: .2em;
	font-family: "Exo 2", sans-serif;
	color: #00f5ff;
	text-shadow:
		0 0 6px #00f5ff,
		0 0 16px rgba(0, 245, 255, .8),
		0 0 36px rgba(0, 245, 255, .5),
		0 0 70px rgba(0, 245, 255, .2);
	line-height: 1;
}

.iw2-hero-sub {
	font-size: 13px;
	letter-spacing: .3em;
	color: rgba(0, 245, 255, .6);
	font-family: "Exo 2", sans-serif;
	text-shadow: 0 0 8px rgba(0, 245, 255, .4);
}

/* Hero metadata bar */
.iw2-hero-meta {
	display: flex;
	justify-content: space-between;
	padding: 5px 8px;
	font-family: "Exo 2", sans-serif;
	font-size: 10px;
	color: rgba(0, 245, 255, .45);
	letter-spacing: .1em;
	border: 1px solid rgba(0, 245, 255, .1);
	border-top: 0;
	background: rgba(0, 245, 255, .03);
}

.iw2-hero-ping {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* ── CTA section ── */
.iw2-cta {
	margin-top: 20px;
}

/* Divider data-packet style */
.iw2-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 14px auto;
	max-width: 65%;
}

.iw2-divider span:first-child,
.iw2-divider span:last-child {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 245, 255, .4), transparent);
}

.iw2-divider--sm {
	max-width: 50%;
	margin: 10px auto;
}

.iw2-divider-text {
	font-family: "Exo 2", sans-serif;
	font-size: 9px;
	letter-spacing: .18em;
	color: rgba(0, 245, 255, .5);
	white-space: nowrap;
}

.iw2-cta-hint {
	margin: 4px 0 16px;
	font-size: 14px;
	color: rgba(0, 245, 255, .5);
	font-family: "Exo 2", sans-serif;
	letter-spacing: .04em;
}

.iw2-domain {
	color: #00f5ff;
	font-weight: 700;
	text-shadow: 0 0 8px rgba(0, 245, 255, .7);
}

/* ── Buttons — Angular Cyberpunk ── */
.iw2-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	max-width: 460px;
	min-height: 72px;
	padding: 14px 32px;
	margin: 8px auto;
	font-family: "Nunito", sans-serif;
	font-weight: 900;
	letter-spacing: .05em;
	text-transform: uppercase;
	cursor: pointer;
	color: #fff;
	/* Cắt góc chéo — cyberpunk angular */
	clip-path: polygon(16px 0%, calc(100% - 16px) 0%,
			100% 16px, 100% 100%,
			calc(100% - 16px) 100%, 16px 100%,
			0% calc(100% - 16px), 0% 16px);
	transition: transform .15s, filter .15s;
	overflow: hidden;
}

/* Sheen animation */
.iw2-btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -80%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
	transform: skewX(-20deg);
	animation: iw2BtnSheen 4s ease-in-out infinite;
}

@keyframes iw2BtnSheen {

	0%,
	60%,
	100% {
		left: -80%;
	}

	30% {
		left: 120%;
	}
}

.iw2-btn:hover {
	transform: translateY(-2px);
	color: #fff;
	filter: brightness(1.1);
}

.iw2-btn:active {
	transform: translateY(1px);
	filter: brightness(.9);
}

/* Nút CHƠI NHANH — Cyan */
.iw2-btn--cyan {
	background: rgba(0, 14, 28, .9);
	border: 1px solid #00f5ff;
	color: #00f5ff;
	text-shadow: 0 0 8px rgba(0, 245, 255, .8);
	box-shadow:
		0 0 16px rgba(0, 245, 255, .35),
		0 0 30px rgba(0, 245, 255, .15),
		inset 0 0 16px rgba(0, 245, 255, .06);
	max-width: 400px;
	min-height: 60px;
}

.iw2-btn--cyan .iw2-btn-text {
	font-size: 20px;
	letter-spacing: .1em;
}

/* Nút TẢI APP — Magenta, pulse */
.iw2-btn--pink {
	background: rgba(20, 0, 14, .9);
	border: 1px solid #ff006e;
	color: #ff60a0;
	text-shadow: 0 0 8px rgba(255, 0, 110, .8);
	box-shadow:
		0 0 16px rgba(255, 0, 110, .35),
		0 0 30px rgba(255, 0, 110, .15),
		inset 0 0 16px rgba(255, 0, 110, .06);
	animation: iw2PinkPulse 2s ease-in-out infinite;
}

@keyframes iw2PinkPulse {

	0%,
	100% {
		box-shadow: 0 0 16px rgba(255, 0, 110, .35), 0 0 30px rgba(255, 0, 110, .15), inset 0 0 16px rgba(255, 0, 110, .06);
	}

	50% {
		box-shadow: 0 0 24px rgba(255, 0, 110, .6), 0 0 50px rgba(255, 0, 110, .25), inset 0 0 20px rgba(255, 0, 110, .1);
	}
}

.iw2-btn-text {
	font-size: 26px;
	font-family: "Nunito", sans-serif;
}

.iw2-btn-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}

.iw2-btn-icon svg {
	width: 100%;
	height: 100%;
}

/* Cipher */
.iw2-cta-cipher {
	margin: 10px 0 0;
	font-family: "Exo 2", sans-serif;
	font-size: 13px;
	color: rgba(0, 245, 255, .4);
	letter-spacing: .06em;
}

.iw2-cipher-prefix {
	color: rgba(0, 245, 255, .3);
}

.iw2-cipher {
	color: #00f5ff;
	font-weight: 700;
	text-shadow: 0 0 8px rgba(0, 245, 255, .8), 0 0 16px rgba(0, 245, 255, .4);
	font-size: 15px;
}

/* ── Content area ── */
.iw2-content {
	position: relative;
	z-index: 2;
	margin: 28px auto 0;
	padding: 20px 20px 26px;
	background: rgba(0, 6, 20, .7);
	border: 1px solid rgba(0, 245, 255, .15);
	border-radius: 3px;
	color: #7ab8d0;
	text-align: left;
	box-shadow: inset 0 0 30px rgba(0, 0, 0, .4), 0 0 16px rgba(0, 245, 255, .06);
}

.iw2-content h1,
.iw2-content h2,
.iw2-content h3,
.iw2-content h4,
.iw2-content h5,
.iw2-content h6 {
	color: #00f5ff;
	font-weight: 800;
	margin-top: 1em;
	line-height: 1.3;
	text-shadow: 0 0 8px rgba(0, 245, 255, .4);
}

.iw2-content h1 {
	font-size: 24px;
	text-align: center;
}

.iw2-content h2 {
	font-size: 20px;
}

.iw2-content h3 {
	font-size: 17px;
}

.iw2-content p,
.iw2-content li {
	line-height: 1.75;
	font-size: 15px;
	color: #608098;
}

.iw2-content a {
	color: #00c8e0;
	text-decoration: underline;
}

.iw2-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 12px 0;
	font-size: 14px;
}

.iw2-content table td,
.iw2-content table th {
	border: 1px solid rgba(0, 245, 255, .15);
	padding: 8px 12px;
	color: #7ab8d0;
}

.iw2-content table th {
	background: rgba(0, 245, 255, .06);
	color: #00c8e0;
}

/* ── Footer ── */
.iw2-footer {
	position: relative;
	z-index: 2;
	margin-top: 36px;
	padding: 26px 16px 22px;
	text-align: center;
	overflow: hidden;
	background: rgba(2, 0, 10, .95);
	border-top: 1px solid rgba(0, 245, 255, .2);
	box-shadow: 0 -4px 20px rgba(0, 245, 255, .06);
}

.iw2-footer-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		repeating-linear-gradient(0deg, transparent 0px, transparent 29px, rgba(0, 245, 255, .02) 30px, transparent 31px),
		repeating-linear-gradient(90deg, transparent 0px, transparent 29px, rgba(0, 245, 255, .015) 30px, transparent 31px);
	background-size: 30px 30px;
}

.iw2-footer-inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.iw2-foot-logo {
	display: inline-block;
}

.iw2-foot-logo-img {
	max-height: 66px;
	width: auto;
	filter: drop-shadow(0 0 10px rgba(0, 245, 255, .4));
}

.iw2-foot-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin: 6px 0;
}

.iw2-foot-nav a {
	padding: 4px 14px;
	font-family: "Exo 2", sans-serif;
	font-size: 11px;
	color: rgba(0, 245, 255, .35);
	text-transform: uppercase;
	letter-spacing: .08em;
	border-left: 1px solid rgba(0, 245, 255, .12);
	transition: color .2s;
}

.iw2-foot-nav a:first-child {
	border-left: 0;
}

.iw2-foot-nav a:hover {
	color: #00f5ff;
	text-shadow: 0 0 6px rgba(0, 245, 255, .6);
}

.iw2-foot-badges {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 4px 0;
}

.iw2-foot-dmca img {
	height: 28px;
	border-radius: 3px;
	background: #fff;
	padding: 2px 4px;
	opacity: .65;
}

.iw2-foot-age {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	padding: 3px 9px;
	border: 1px solid rgba(255, 0, 110, .5);
	clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
	color: #ff006e;
	font-family: "Exo 2", sans-serif;
	font-size: 13px;
	box-shadow: 0 0 8px rgba(255, 0, 110, .25);
}

.iw2-foot-age b {
	font-size: 14px;
	line-height: 1;
}

.iw2-foot-age small {
	font-size: 10px;
}

.iw2-foot-copy {
	margin: 4px 0 0;
	font-family: "Exo 2", sans-serif;
	font-size: 11px;
	color: rgba(0, 245, 255, .3);
	letter-spacing: .04em;
}

.iw2-foot-prefix {
	color: rgba(0, 245, 255, .2);
}

.iw2-foot-copy strong {
	color: rgba(0, 245, 255, .6);
}

.iw2-foot-domain {
	color: rgba(255, 0, 110, .5);
}

.iw2-foot-disclaimer {
	margin: 0;
	font-size: 11px;
	color: rgba(0, 245, 255, .75);
	max-width: 600px;
	font-family: "Nunito", sans-serif;
}

/* ── Ẩn Flatsome chrome ── */
.iw2-page #header,
.iw2-page #footer,
.iw2-page .header,
.iw2-page .footer {
	display: none !important;
}

/* ── Responsive ── */
@media (max-width: 1280px) {
	.iw2-side {
		width: 210px;
	}

	.iw2-side--left {
		left: 14px;
	}

	.iw2-side--right {
		right: 14px;
	}
}

@media (max-width: 1100px) {
	.iw2-side {
		display: none;
	}

	.iw2-main {
		max-width: 640px;
	}
}

@media (max-width: 991px) {
	.iw2-social-btn .iw2-social-label {
		display: none;
	}

	.iw2-social-btn {
		padding: 9px;
		clip-path: none;
		border-radius: 3px;
	}

	.iw2-social-btn svg {
		width: 20px;
		height: 20px;
	}

	.iw2-social-btn--chat {
		padding: 9px;
	}

	.iw2-tagline {
		font-size: 26px;
	}

	.iw2-btn-text {
		font-size: 22px;
	}

	.iw2-btn--cyan .iw2-btn-text {
		font-size: 18px;
	}

	.iw2-hero-name {
		font-size: 44px;
	}
}

@media (max-width: 760px) {
	.iw2-main {
		margin: 12px 8px 20px;
		padding: 0 12px 36px;
	}

	.iw2-terminal-bar {
		margin: 0 -12px 18px;
	}

	.iw2-logo {
		max-width: 38%;
	}

	.iw2-logo-img {
		max-height: 90px;
	}

	.iw2-tagline {
		font-size: 22px;
		letter-spacing: .07em;
	}

	.iw2-subline {
		font-size: 12px;
		gap: 4px;
	}

	.iw2-hero-name {
		font-size: 36px;
	}

	.iw2-hero-sub {
		font-size: 12px;
	}

	.iw2-cta-hint {
		font-size: 12px;
	}

	.iw2-btn {
		min-height: 60px;
		gap: 8px;
		clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% 100%, calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
	}

	.iw2-btn-text {
		font-size: 20px;
	}

	.iw2-btn--cyan {
		min-height: 52px;
	}

	.iw2-btn--cyan .iw2-btn-text {
		font-size: 16px;
	}

	.iw2-btn-icon {
		width: 22px;
		height: 22px;
	}

	.iw2-content {
		padding: 14px 12px;
	}
}

@media (max-width: 480px) {
	.iw2-social {
		top: 10px;
		right: 10px;
		gap: 7px;
	}

	.iw2-social-btn--chat {
		right: 10px;
		bottom: 14px;
	}

	.iw2-social-btn {
		padding: 8px;
	}

	.iw2-social-btn svg {
		width: 18px;
		height: 18px;
	}

	.iw2-logo {
		max-width: 44%;
	}

	.iw2-tagline {
		font-size: 19px;
	}

	.iw2-hero-name {
		font-size: 28px;
	}

	.iw2-hero-sub {
		font-size: 11px;
		letter-spacing: .2em;
	}

	.iw2-btn {
		min-height: 54px;
		padding: 10px 14px;
		clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% 100%, calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);
	}

	.iw2-btn-text {
		font-size: 17px;
	}

	.iw2-btn--cyan .iw2-btn-text {
		font-size: 14px;
	}

	.iw2-content h1 {
		font-size: 20px;
	}

	.iw2-content h2 {
		font-size: 17px;
	}

	.iw2-foot-nav a {
		padding: 4px 8px;
		font-size: 10px;
	}

	.iw2-foot-logo-img {
		max-height: 52px;
	}
}

@media (max-width: 360px) {
	.iw2-tagline {
		font-size: 17px;
	}

	.iw2-btn-text {
		font-size: 15px;
	}

	.iw2-hero-name {
		font-size: 22px;
	}
}

/* ── App button visibility ── */
.iw2-cta-app {
	display: none;
}

@media (max-width: 1024px) {
	.iw2-cta-app {
		display: block;
	}
}

@media (hover: none) and (pointer: coarse) {
	.iw2-cta-app {
		display: block;
	}
}