/* EZ777 Casino Kit v1.6 — distinct composition (Syne + Figtree, shifted palette) */

:root {
	--red: #e11d2e;
	--gold: #f5b942;
	--jade: #10b981;
	--black: #07070b;
	--dark: #0e0e14;
	--card-bg: #14141c;
	--border: #2c2c38;
	--text: #ececf1;
	--muted: #9a9aad;
	--ez777-header-h: 64px;
	--ez777-max: 1200px;
	--font-display: 'Syne', sans-serif;
	--font-body: 'Figtree', sans-serif;
	--radius: 16px;
}

.ez777-site,
.ez777-site * {
	box-sizing: border-box;
}

.ez777-site {
	background-color: var(--black);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	padding-bottom: 5.5rem; /* room for floating Register / Login bar */
	overflow-x: clip;
	width: 100%;
}

.ez777-site h1,
.ez777-site h2,
.ez777-site h3,
.ez777-site h4,
.ez777-site h5,
.ez777-site h6 {
	font-family: var(--font-display);
	color: var(--gold);
	margin: 0 0 0.6em;
	line-height: 1.2;
	letter-spacing: -0.02em;
	font-weight: 700;
}

.ez777-site a {
	color: var(--gold);
	text-decoration: none;
}

.ez777-site a:hover {
	color: #ffd56a;
	text-decoration: underline;
}

.ez-container,
.ez777-container {
	width: min(100% - 2rem, var(--ez777-max));
	margin-inline: auto;
}

.ez-container-narrow {
	max-width: 760px;
}

/* ——— Hairline separators (replaces wave clone) ——— */
.ez-sep {
	height: 1px;
	width: min(100% - 2rem, var(--ez777-max));
	margin: 0 auto;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	opacity: 0.45;
	border: 0;
}

/* ——— Navbar (single-row — keep structure) ——— */
.ez777-header {
	position: sticky;
	top: 0;
	z-index: 100;
}

.ez777-navbar {
	background: linear-gradient(90deg, #07070b 0%, #1a080c 50%, #07070b 100%);
	border-bottom: 2px solid var(--red);
	padding: 0.55rem 0;
}

.ez777-navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	min-height: 52px;
	flex-wrap: nowrap;
}

.ez777-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	text-decoration: none !important;
}

.ez777-logo-img {
	height: 40px !important;
	width: auto !important;
	max-height: 40px;
	max-width: 150px;
	display: block;
	object-fit: contain;
}

.ez777-logo-text {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.35rem;
	color: var(--gold);
}

.ez777-nav-right {
	display: none;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	margin-left: auto;
	flex: 1 1 auto;
	min-width: 0;
	flex-wrap: nowrap;
}

.ez777-nav-links {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: flex-end;
	gap: 0;
	min-width: 0;
}

.ez777-nav-link {
	color: var(--text) !important;
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.5rem 0.65rem;
	transition: color 0.2s;
	text-decoration: none !important;
	white-space: nowrap;
	font-family: var(--font-body);
	line-height: 1.2;
}

.ez777-nav-link:hover,
.ez777-nav-link.is-active {
	color: var(--gold) !important;
}

.btn-nav-ez {
	flex: 0 0 auto;
	padding: 0.45rem 1.2rem !important;
	font-size: 0.88rem !important;
	border-radius: 10px !important;
	white-space: nowrap;
	align-self: center;
}

.ez777-mobile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 1px solid var(--gold);
	border-radius: 8px;
	cursor: pointer;
	padding: 0;
}

.ez777-burger,
.ez777-burger::before,
.ez777-burger::after {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--gold);
	position: relative;
}

.ez777-burger::before,
.ez777-burger::after {
	content: '';
	position: absolute;
	left: 0;
}

.ez777-burger::before { top: -6px; }
.ez777-burger::after { top: 6px; }

.ez777-mobile-drawer {
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.25rem 1.5rem;
	background: var(--dark);
	border-bottom: 1px solid var(--border);
}

.ez777-header.is-mobile-open .ez777-mobile-drawer {
	display: flex;
}

.ez777-mobile-drawer-link {
	color: var(--text) !important;
	padding: 0.75rem 0.5rem;
	font-weight: 500;
	text-decoration: none !important;
	border-bottom: 1px solid var(--border);
}

.ez777-mobile-drawer-link.is-active,
.ez777-mobile-drawer-link:hover {
	color: var(--gold) !important;
}

.ez777-mobile-drawer-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

@media (min-width: 1200px) {
	.ez777-nav-right { display: flex; }
	.ez777-mobile-toggle { display: none; }
	.ez777-mobile-drawer { display: none !important; }
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.ez777-nav-link {
		font-size: 0.78rem;
		padding: 0.4rem 0.45rem;
	}
	.btn-nav-ez {
		padding: 0.4rem 1rem !important;
		font-size: 0.82rem !important;
	}
	.ez777-logo-img {
		height: 36px !important;
		max-height: 36px;
		max-width: 130px;
	}
}

/* ——— Buttons ——— */
.btn-primary-ez,
.ez777-btn-register {
	background: linear-gradient(135deg, var(--red), #b91c1c);
	border: none;
	color: #fff !important;
	font-weight: 700;
	padding: 0.75rem 1.85rem;
	border-radius: 12px;
	font-size: 1rem;
	transition: transform 0.2s, box-shadow 0.2s;
	display: inline-block;
	text-decoration: none !important;
	text-align: center;
	cursor: pointer;
	font-family: var(--font-body);
}

.btn-primary-ez:hover,
.ez777-btn-register:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(225, 29, 46, 0.45);
	color: #fff !important;
	text-decoration: none !important;
}

.btn-gold-ez,
.ez777-btn-outline,
.ez777-btn-login {
	background: linear-gradient(135deg, var(--gold), #d4a017);
	border: none;
	color: #0a0a0a !important;
	font-weight: 700;
	padding: 0.75rem 1.85rem;
	border-radius: 12px;
	font-size: 1rem;
	transition: transform 0.2s, box-shadow 0.2s;
	display: inline-block;
	text-decoration: none !important;
	text-align: center;
	cursor: pointer;
	font-family: var(--font-body);
}

.btn-gold-ez:hover,
.ez777-btn-outline:hover,
.ez777-btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(245, 185, 66, 0.4);
	color: #0a0a0a !important;
	text-decoration: none !important;
}

.btn-sm-ez,
.ez777-btn-sm {
	padding: 0.5rem 1.35rem !important;
	font-size: 0.9rem !important;
}

.ez777-btn-lg {
	padding: 0.85rem 2.2rem;
	font-size: 1.05rem;
}

/* ——— Wave divider (kept for subpages if used) ——— */
.wave-divider {
	line-height: 0;
	overflow: hidden;
}

.wave-divider svg {
	display: block;
	width: 100%;
	height: auto;
}

/* ——— Sections ——— */
.ez777-main section,
.section-dark,
.section-black,
.ez777-section {
	padding: 3.75rem 0;
}

.section-dark {
	background-color: var(--dark);
}

.section-black {
	background-color: var(--black);
}

.section-title,
.ez777-section-head {
	text-align: center;
	margin-bottom: 2.25rem;
}

.section-title h2,
.ez777-section-head h2 {
	font-size: clamp(1.45rem, 3vw, 2.05rem);
}

.section-title p,
.ez777-section-head p {
	color: var(--muted);
	max-width: 560px;
	margin: 0.5rem auto 0;
	font-size: 0.98rem;
}

.section-title.text-start {
	text-align: left;
}

.section-title.text-start p {
	margin-left: 0;
}

/* ——— Grids (shared) ——— */
.ez-grid {
	display: grid;
	gap: 1.25rem;
}

.ez-grid-2 { grid-template-columns: 1fr; }
.ez-grid-3 { grid-template-columns: 1fr; }
.ez-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

@media (min-width: 576px) {
	.ez-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
	.ez-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 992px) {
	.ez-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ——— Shared cards (subpages) ——— */
.ez-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	height: auto;
	transition: border-color 0.2s, transform 0.2s;
}

.ez-card:hover {
	border-color: var(--gold);
	transform: translateY(-3px);
}

.ez-card .icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.45rem;
	margin-bottom: 1rem;
}

.ez-card h5 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.ez-card p {
	color: var(--muted);
	font-size: 0.88rem;
	margin: 0;
}

.icon-red { background: rgba(225, 29, 46, 0.15); color: var(--red); }
.icon-gold { background: rgba(245, 185, 66, 0.15); color: var(--gold); }
.icon-jade { background: rgba(16, 185, 129, 0.15); color: var(--jade); }
.icon-cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.icon-blue { background: rgba(59, 130, 246, 0.15); color: #93c5fd; }
.icon-purple { background: rgba(124, 58, 237, 0.15); color: #c4b5fd; }

.game-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	text-align: center;
	padding: 1.5rem 1rem;
	transition: border-color 0.2s, transform 0.2s;
	display: block;
	text-decoration: none !important;
	color: inherit;
}

.game-card:hover {
	border-color: var(--red);
	transform: translateY(-3px);
	text-decoration: none !important;
	color: inherit;
}

.game-card .game-icon {
	font-size: 2.6rem;
	margin-bottom: 0.75rem;
	line-height: 1;
}

.game-card h5 {
	color: var(--gold);
	font-size: 0.95rem;
	margin-bottom: 0.4rem;
}

.game-card p {
	color: var(--muted);
	font-size: 0.82rem;
	margin: 0;
}

/* ========== HOME MODULES ========== */

/* 1. Split hero */
.hero-split {
	background:
		radial-gradient(ellipse 70% 55% at 85% 20%, rgba(225, 29, 46, 0.18), transparent 55%),
		radial-gradient(ellipse 50% 40% at 10% 80%, rgba(245, 185, 66, 0.08), transparent 50%),
		linear-gradient(160deg, #12080c 0%, var(--black) 55%, #0a1010 100%);
	padding: 3.5rem 0 2.5rem;
	position: relative;
}

.hero-split-grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.hero-split-grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2.75rem;
	}
}

.hero-split-copy h1 {
	font-size: clamp(1.75rem, 3.8vw, 2.65rem);
	color: var(--gold);
	margin-bottom: 1rem;
	text-shadow: 0 0 40px rgba(245, 185, 66, 0.22);
}

.hero-split-copy .lead {
	color: var(--text);
	font-size: 1.05rem;
	margin: 0 0 1.75rem;
	max-width: 34rem;
}

.hero-split .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: flex-start;
}

.hero-split-media {
	position: relative;
}

.hero-split-media .ez-img {
	border-radius: var(--radius);
	border: 1px solid var(--border);
	width: 100%;
	margin: 0;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* 2. Payments strip */
.pay-strip {
	background: var(--dark);
	padding: 1.15rem 0;
	border-block: 1px solid var(--border);
}

.pay-strip-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 1rem;
	justify-content: space-between;
}

.pay-strip-label {
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--gold);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pay-strip-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-end;
	flex: 1;
}

.pay-strip .pay-badge {
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.pay-strip .pay-badge i {
	font-size: 0.9rem;
}

.pay-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.pay-badge,
.ez777-pay-item {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 0.6rem 1.2rem;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.privacy-notice-wrap {
	max-width: 760px;
	margin: 1.5rem auto 0;
}

.privacy-notice {
	background: rgba(245, 185, 66, 0.07);
	border-left: 4px solid var(--gold);
	border-radius: 0 10px 10px 0;
	padding: 1rem 1.5rem;
	color: var(--muted);
	font-size: 0.88rem;
}

.privacy-notice a {
	color: var(--gold);
}

/* 3. How-to — horizontal step cards */
.howto-steps-row {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.howto-steps-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.howto-steps-row {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.15rem;
	}
}

.howto-step-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.35rem 1.2rem 1.5rem;
	position: relative;
	transition: border-color 0.2s, transform 0.2s;
}

.howto-step-card:hover {
	border-color: var(--red);
	transform: translateY(-3px);
}

.howto-step-card .step-num {
	min-width: 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--red), #b91c1c);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.howto-step-card h5 {
	color: var(--gold);
	font-size: 0.98rem;
	margin-bottom: 0.45rem;
}

.howto-step-card p {
	color: var(--muted);
	margin: 0;
	font-size: 0.86rem;
}

.howto-media-below {
	margin-top: 2rem;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

/* Legacy howto (subpages) */
.howto-row {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 992px) {
	.howto-row {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
	.howto-row-flip .howto-media { order: 1; }
	.howto-row-flip .howto-steps { order: 2; }
}

.step-item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.step-num {
	min-width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--red), #b91c1c);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.step-body h5 {
	color: var(--gold);
	margin-bottom: 0.3rem;
}

.step-body p {
	color: var(--muted);
	margin: 0;
	font-size: 0.92rem;
}

/* 4. Categories — list rows */
.cat-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.cat-row {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	gap: 0.85rem 1.1rem;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1rem 1.15rem;
	text-decoration: none !important;
	color: inherit;
	transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.cat-row:hover {
	border-color: var(--gold);
	background: #181822;
	text-decoration: none !important;
	color: inherit;
	transform: translateX(4px);
}

.cat-row-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.35rem;
	color: var(--red);
	opacity: 0.85;
	min-width: 1.6rem;
	line-height: 1;
}

.cat-row-emoji {
	font-size: 1.75rem;
	line-height: 1;
}

.cat-row-text h5 {
	color: var(--gold);
	font-size: 1rem;
	margin: 0 0 0.2rem;
}

.cat-row-text p {
	color: var(--muted);
	font-size: 0.84rem;
	margin: 0;
}

.cat-row-chevron {
	color: var(--gold);
	font-size: 1.25rem;
	opacity: 0.7;
}

@media (max-width: 575px) {
	.cat-row {
		grid-template-columns: auto auto 1fr;
		grid-template-rows: auto auto;
	}
	.cat-row-chevron {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}
	.cat-row-text {
		grid-column: 1 / -1;
		grid-row: 2;
	}
}

/* 5. Why — asymmetric featured + mini grid */
.why-asym {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 900px) {
	.why-asym {
		grid-template-columns: 1fr 1.65fr;
		gap: 1.35rem;
		align-items: stretch;
	}
}

.why-featured {
	background:
		linear-gradient(165deg, rgba(225, 29, 46, 0.22), transparent 55%),
		var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 2rem 1.65rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
}

.why-featured .icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.85rem;
	margin-bottom: 1.25rem;
}

.why-featured h3 {
	font-size: 1.35rem;
	margin-bottom: 0.75rem;
}

.why-featured p {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0;
}

.why-mini-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: 1fr;
}

@media (min-width: 560px) {
	.why-mini-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.why-mini-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 1fr);
	}
}

.why-mini {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 1.1rem 1.15rem;
	transition: border-color 0.2s;
}

.why-mini:hover {
	border-color: var(--gold);
}

.why-mini .icon-wrap {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	margin-bottom: 0.65rem;
}

.why-mini h5 {
	font-size: 0.92rem;
	margin-bottom: 0.35rem;
}

.why-mini p {
	color: var(--muted);
	font-size: 0.8rem;
	margin: 0;
	line-height: 1.5;
}

/* 6. Comparison — dual panels (not table) */
.compare-panels {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.compare-panels {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
}

.compare-panel {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem 1.35rem 1.25rem;
	overflow: hidden;
}

.compare-panel.is-ez {
	border-color: rgba(245, 185, 66, 0.45);
	background:
		linear-gradient(180deg, rgba(245, 185, 66, 0.08), transparent 40%),
		var(--card-bg);
}

.compare-panel.is-trad {
	border-color: var(--border);
	opacity: 0.92;
}

.compare-panel-head {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 1.15rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--border);
}

.compare-panel.is-ez .compare-panel-head {
	color: var(--gold);
}

.compare-panel.is-trad .compare-panel-head {
	color: var(--muted);
}

.compare-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.15rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid rgba(44, 44, 56, 0.7);
}

.compare-row:last-child {
	border-bottom: 0;
}

.compare-row-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--muted);
	font-weight: 600;
}

.compare-row-val {
	font-size: 0.92rem;
	color: var(--text);
	font-weight: 500;
}

.compare-panel.is-ez .compare-row-val {
	color: var(--gold);
}

.compare-panel.is-trad .compare-row-val {
	color: #7a7a8c;
}

/* Legacy table styles (other pages) */
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 960px;
	margin: 0 auto;
}

.compare-table,
.ez777-compare-table {
	width: 100%;
	border-collapse: collapse;
}

.compare-table th,
.compare-table td,
.ez777-compare-table th,
.ez777-compare-table td {
	padding: 0.85rem 1rem;
	border: 1px solid var(--border);
	font-size: 0.9rem;
}

.compare-table thead th,
.ez777-compare-table thead th {
	background: var(--red);
	color: #fff;
	font-family: var(--font-display);
	text-align: center;
}

.compare-table tbody tr:nth-child(even),
.ez777-compare-table tbody tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.03);
}

.compare-table td:first-child,
.ez777-compare-table td:first-child {
	color: var(--muted);
}

.compare-table td:nth-child(2),
.ez777-compare-table td:nth-child(2) {
	color: var(--gold);
	font-weight: 600;
	text-align: center;
}

.compare-table td:nth-child(3),
.ez777-compare-table td:nth-child(3) {
	color: #6b7280;
	text-align: center;
}

/* 7. Testimonials — masonry-ish */
.testi-masonry {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.testi-masonry {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-flow: dense;
	}

	.testi-masonry .testi-card:first-child {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 0.5rem 1.5rem;
		align-items: start;
		padding: 1.75rem 1.85rem;
	}

	.testi-masonry .testi-card:first-child .stars {
		grid-column: 1;
		grid-row: 1;
	}

	.testi-masonry .testi-card:first-child p {
		grid-column: 2;
		grid-row: 1 / 3;
		font-size: 1.08rem;
		margin: 0;
	}

	.testi-masonry .testi-card:first-child .author,
	.testi-masonry .testi-card:first-child .city {
		grid-column: 1;
	}

	.testi-masonry .testi-card:first-child .author {
		grid-row: 2;
		margin-top: 0.35rem;
	}

	.testi-masonry .testi-card:first-child .city {
		grid-row: 3;
	}
}

.testi-card,
.ez777-testi-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.4rem 1.35rem;
}

.testi-card .stars,
.ez777-stars {
	color: var(--gold);
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
}

.testi-card p,
.ez777-testi-card p {
	color: var(--text);
	font-size: 0.92rem;
	font-style: italic;
	margin: 0;
}

.testi-card .author {
	color: var(--gold);
	font-weight: 600;
	font-size: 0.88rem;
	margin-top: 0.75rem;
	font-style: normal;
	font-family: var(--font-display);
}

.testi-card .city {
	color: var(--muted);
	font-size: 0.82rem;
	font-style: normal;
}

/* 8. FAQ — title left + accordion right */
.faq-split {
	display: grid;
	gap: 2rem;
}

@media (min-width: 860px) {
	.faq-split {
		grid-template-columns: 0.85fr 1.35fr;
		gap: 2.75rem;
		align-items: start;
	}

	.faq-split-head {
		position: sticky;
		top: calc(var(--ez777-header-h) + 1rem);
	}

	.faq-split-head .section-title {
		text-align: left;
		margin-bottom: 0;
	}

	.faq-split-head .section-title p {
		margin-left: 0;
	}
}

.ez-accordion,
.ez777-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.accordion-item,
.ez777-acc-item {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}

.accordion-button,
.ez777-acc-item summary {
	background: var(--card-bg);
	color: var(--gold);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 1rem 1.25rem;
	cursor: pointer;
	list-style: none;
	display: block;
	font-family: var(--font-body);
}

.accordion-button::-webkit-details-marker,
.ez777-acc-item summary::-webkit-details-marker {
	display: none;
}

.accordion-button::after,
.ez777-acc-item summary::after {
	content: '+';
	float: right;
	color: var(--gold);
	font-weight: 700;
}

details[open] > .accordion-button::after,
.ez777-acc-item[open] summary::after {
	content: '−';
}

.accordion-body,
.ez777-acc-body {
	background: var(--card-bg);
	color: var(--text);
	font-size: 0.92rem;
	padding: 0 1.25rem 1.15rem;
}

.accordion-body p,
.ez777-acc-body p {
	margin: 0;
}

.faq-more,
.ez777-faq-more {
	text-align: left;
	margin-top: 1.25rem;
}

@media (max-width: 859px) {
	.faq-more {
		text-align: center;
	}
}

/* 9. Responsible gaming — horizontal cards */
.rg-banner {
	background: linear-gradient(135deg, #052e16, #0f3d28);
	border: 1px solid var(--jade);
	border-radius: var(--radius);
	padding: 2rem 1.75rem;
	max-width: 100%;
	margin: 0 auto;
}

.rg-banner-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.rg-banner h3 {
	color: #4ade80;
	margin: 0;
}

.rg-banner > p {
	color: #bbf7d0;
	max-width: 48rem;
}

.rg-row {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: 1fr;
	margin-top: 1.35rem;
}

@media (min-width: 640px) {
	.rg-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.rg-row {
		grid-template-columns: repeat(4, 1fr);
	}
}

.rg-item {
	background: rgba(0, 0, 0, 0.32);
	border-radius: 12px;
	padding: 1rem;
	border: 1px solid rgba(74, 222, 128, 0.15);
}

.rg-item h6 {
	color: #4ade80;
	font-family: var(--font-body);
	font-size: 0.9rem;
	margin-bottom: 0.4rem;
	font-weight: 700;
}

.rg-item p {
	color: #bbf7d0;
	font-size: 0.84rem;
	margin: 0;
}

.rg-cta {
	margin-top: 1.35rem;
}

.rg-grid {
	margin-top: 1rem;
}

/* ——— Age badge ——— */
.age-badge {
	display: inline-block;
	background: var(--red);
	color: #fff;
	font-weight: 700;
	font-size: 0.8rem;
	padding: 0.2rem 0.6rem;
	border-radius: 6px;
	vertical-align: middle;
}

.age-badge-jade {
	background: var(--jade);
}

/* ——— Images ——— */
.ez-img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--radius);
	margin: 0 auto;
	border: 1px solid var(--border);
}

.ez-img-wrap {
	margin-top: 2.25rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* ——— Footer ——— */
.ez777-footer {
	background: linear-gradient(180deg, #10050a 0%, #07070b 100%);
	border-top: 2px solid var(--red);
	padding: 3rem 0 1.5rem;
}

.ez777-footer-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr 1fr;
}

@media (min-width: 992px) {
	.ez777-footer-grid {
		grid-template-columns: 1.4fr 0.85fr 0.85fr 1.5fr;
	}
}

.ez777-footer h6 {
	color: var(--gold);
	font-family: var(--font-display);
	margin-bottom: 1rem;
	font-size: 0.95rem;
	font-weight: 700;
}

.ez777-footer a {
	color: var(--muted);
	font-size: 0.88rem;
	display: block;
	margin-bottom: 0.4rem;
	text-decoration: none !important;
	font-family: var(--font-body);
}

.ez777-footer a:hover {
	color: var(--gold);
}

.ez777-footer-games-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem 1.25rem;
}

.footer-email a {
	display: inline;
	margin: 0;
	color: var(--muted);
}

.footer-email a:hover {
	color: var(--gold);
}

.ez777-footer-logo-img {
	height: 44px;
	width: auto;
	margin-bottom: 1rem;
	display: block;
}

.ez777-footer-desc {
	color: var(--muted);
	font-size: 0.88rem;
	max-width: 320px;
	margin: 0 0 0.5rem;
}

.ez777-footer-age {
	color: var(--muted);
	font-size: 0.82rem;
	margin: 0.5rem 0;
}

.footer-email {
	color: var(--muted);
	font-size: 0.88rem;
	user-select: text;
	margin-top: 0.75rem;
}

.footer-bottom {
	border-top: 1px solid var(--border);
	margin-top: 2rem;
	padding-top: 1.5rem;
	color: var(--muted);
	font-size: 0.82rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.footer-bottom-links a {
	color: var(--muted);
	font-size: 0.82rem;
	display: inline;
	margin: 0;
}

/* ——— Mobile bottom nav ——— */
.ez777-mobile-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 90;
	display: flex;
	background: #10050a;
	border-top: 2px solid var(--red);
	padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom));
}

.ez777-mobile-nav-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	padding: 0.4rem 0.2rem;
	color: var(--muted) !important;
	font-size: 0.68rem;
	font-weight: 600;
	text-decoration: none !important;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
}

.ez777-mobile-nav-item.is-active,
.ez777-mobile-nav-item:hover {
	color: var(--gold) !important;
}

.ez777-mobile-nav-icon {
	font-size: 1.1rem;
	line-height: 1;
}

.ez777-mobile-nav-cta {
	color: #fff !important;
}

.ez777-mobile-nav-cta .ez777-mobile-nav-icon {
	background: var(--red);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

@media (min-width: 992px) {
	.ez777-mobile-nav { display: none; }
	.ez777-site { padding-bottom: 5.5rem; }
}

/* ——— Subpages ——— */
.ez777-page-hero {
	background: linear-gradient(135deg, #1a080c 0%, var(--black) 50%, #0a1210 100%);
	padding: 3.5rem 0 2.5rem;
	text-align: center;
}

.ez777-page-hero h1 {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.ez777-page-hero p {
	color: var(--muted);
	max-width: 640px;
	margin: 0.75rem auto 0;
}

.ez777-eyebrow {
	color: var(--red);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
	font-family: var(--font-body);
}

.ez777-section-cta {
	text-align: center;
	margin-top: 2rem;
}

.ez777-why-grid,
.ez777-cat-grid,
.ez777-testi-grid,
.ez777-rg-grid,
.ez777-pay-grid,
.ez777-howto-grid {
	display: grid;
	gap: 1.25rem;
}

.ez777-why-grid,
.ez777-cat-grid {
	grid-template-columns: repeat(2, 1fr);
}

.ez777-testi-grid,
.ez777-howto-grid {
	grid-template-columns: 1fr;
}

.ez777-pay-grid {
	grid-template-columns: repeat(2, 1fr);
}

.ez777-rg-grid {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.ez777-testi-grid { grid-template-columns: repeat(3, 1fr); }
	.ez777-howto-grid { grid-template-columns: repeat(2, 1fr); }
	.ez777-pay-grid { grid-template-columns: repeat(4, 1fr); }
	.ez777-rg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
	.ez777-why-grid,
	.ez777-cat-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.ez777-howto-grid { grid-template-columns: repeat(4, 1fr); }
}

.ez777-why-card,
.ez777-rg-card,
.ez777-howto-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
}

.ez777-why-card h3,
.ez777-rg-card h3,
.ez777-howto-card h3,
.ez777-cat-body h3 {
	font-size: 1rem;
	color: var(--gold);
	margin-bottom: 0.5rem;
}

.ez777-why-card p,
.ez777-rg-card p,
.ez777-howto-card p,
.ez777-cat-body p {
	color: var(--muted);
	font-size: 0.88rem;
	margin: 0;
}

.ez777-howto-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--red), #b91c1c);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.ez777-pay-note {
	color: var(--muted);
	font-size: 0.88rem;
	max-width: 720px;
	margin: 1.5rem auto 0;
	text-align: center;
}

.ez777-table-wrap {
	overflow-x: auto;
}

.ez777-faq-inner {
	max-width: 760px;
	margin: 0 auto;
}

.ez777-cat-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	text-align: center;
	padding: 1.5rem 1rem;
	transition: border-color 0.2s, transform 0.2s;
	display: block;
	text-decoration: none !important;
	color: inherit;
}

.ez777-cat-card:hover {
	border-color: var(--red);
	transform: translateY(-3px);
	text-decoration: none !important;
	color: inherit;
}

.ez777-cat-media {
	display: none;
}

.ez777-cat-media img {
	display: none;
}

/* Reveal animation */
.ez777-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.ez777-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ========== GAME LANDING (Treasure Hunt+) ========== */

.lp-hero.hero-split {
	padding-top: 1.75rem;
}

.lp-crumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.78rem;
	color: var(--muted);
	margin-bottom: 1.35rem;
	font-family: var(--font-body);
	letter-spacing: 0.02em;
}

.lp-crumb a {
	color: var(--gold);
	text-decoration: none;
}

.lp-crumb a:hover {
	color: #fff;
	text-decoration: underline;
}

.lp-crumb-sep {
	opacity: 0.55;
}

.lp-badge {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--red);
	border: 1px solid rgba(225, 29, 46, 0.45);
	padding: 0.35rem 0.7rem;
	margin-bottom: 0.9rem;
	background: rgba(225, 29, 46, 0.08);
}

/* Stats strip */
.lp-stats {
	background: linear-gradient(180deg, #0c0c12 0%, #12080c 100%);
	padding: 1.25rem 0 1.75rem;
	border-bottom: 1px solid rgba(245, 185, 66, 0.12);
}

.lp-stats-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.85rem;
}

@media (min-width: 768px) {
	.lp-stats-row {
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}
}

.lp-stat {
	text-align: center;
	padding: 1rem 0.75rem;
	border: 1px solid var(--border);
	background: var(--card-bg);
}

.lp-stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	color: var(--gold);
	line-height: 1.15;
	margin-bottom: 0.25rem;
}

.lp-stat span {
	font-size: 0.78rem;
	color: var(--muted);
}

/* Feature rows (like cat-row) */
.lp-feature-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-bottom: 1.75rem;
}

.lp-feature-row {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem 1.1rem;
	background: var(--card-bg);
	border: 1px solid var(--border);
	transition: border-color 0.2s, transform 0.2s;
}

.lp-feature-row:hover {
	border-color: rgba(245, 185, 66, 0.45);
	transform: translateX(3px);
}

.lp-feature-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 0.95rem;
	color: var(--red);
	min-width: 1.75rem;
	padding-top: 0.15rem;
}

.lp-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 10px;
	background: rgba(245, 185, 66, 0.12);
	color: var(--gold);
	font-size: 1.1rem;
}

.lp-feature-text h5 {
	font-size: 0.98rem;
	color: var(--gold);
	margin: 0 0 0.3rem;
}

.lp-feature-text p {
	color: var(--muted);
	font-size: 0.85rem;
	margin: 0;
}

/* Intro reverse split */
.lp-intro-grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.lp-intro-grid {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 2.75rem;
	}
}

.lp-intro-copy p {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0 0 1rem;
	max-width: 36rem;
}

.lp-intro-copy .section-title {
	margin-bottom: 1rem;
}

.lp-intro-media .ez-img {
	width: 100%;
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

/* Tips accordion + side media */
.lp-tips-grid {
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 900px) {
	.lp-tips-grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 2.5rem;
	}
}

.lp-tips-media .ez-img {
	width: 100%;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	position: sticky;
	top: calc(var(--ez777-header-h, 64px) + 1rem);
}

.lp-tips-body .section-title {
	margin-bottom: 1.25rem;
}

/* Why — 2-col mini cards */
.lp-why-grid {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.lp-why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* CTA band + compact RG */
.lp-cta-band {
	background:
		radial-gradient(ellipse 60% 50% at 50% 0%, rgba(225, 29, 46, 0.16), transparent 60%),
		linear-gradient(180deg, #12080c 0%, var(--black) 100%);
	padding: 3rem 0 3.5rem;
}

.lp-cta-inner {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2rem;
}

.lp-cta-inner h2 {
	color: var(--gold);
	font-size: clamp(1.45rem, 3vw, 2rem);
	margin-bottom: 0.75rem;
}

.lp-cta-inner p {
	color: var(--muted);
	margin: 0 0 1.5rem;
}

.lp-cta-inner .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
}

.lp-rg-compact {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	max-width: 48rem;
	margin: 0 auto;
	padding: 1rem 1.25rem;
	background: linear-gradient(135deg, #052e16, #0f3d28);
	border: 1px solid var(--jade);
}

.lp-rg-compact > i {
	color: #4ade80;
	font-size: 1.35rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.lp-rg-compact p {
	margin: 0;
	color: #bbf7d0;
	font-size: 0.88rem;
	line-height: 1.55;
}

.lp-rg-compact a {
	color: var(--gold);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.lp-rg-compact a:hover {
	text-decoration: underline;
}

/* ——— Mermaid / fishing LP extras ——— */
.lp-badge-aqua {
	background: rgba(45, 212, 191, 0.12);
	color: #5eead4;
	border-color: rgba(45, 212, 191, 0.35);
}

.lp-creature-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
	.lp-creature-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1100px) {
	.lp-creature-grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

.lp-creature-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.15rem 0.85rem;
	text-align: center;
	transition: border-color 0.2s, transform 0.2s;
}

.lp-creature-card:hover {
	border-color: #2dd4bf;
	transform: translateY(-3px);
}

.lp-creature-icon {
	font-size: 2rem;
	line-height: 1;
	margin-bottom: 0.55rem;
}

.lp-creature-card h5 {
	color: var(--gold);
	font-size: 0.92rem;
	margin: 0 0 0.35rem;
}

.lp-creature-mult {
	font-family: var(--font-display);
	font-weight: 700;
	color: #5eead4;
	font-size: 0.95rem;
	margin-bottom: 0.4rem;
}

.lp-creature-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.lp-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--card-bg);
}

.lp-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.lp-table th,
.lp-table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--border);
	font-size: 0.88rem;
	text-align: left;
}

.lp-table th {
	background: rgba(225, 29, 46, 0.85);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	white-space: nowrap;
}

.lp-table tbody tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.025);
}

.lp-table tbody tr:last-child td {
	border-bottom: 0;
}

.lp-table td:first-child {
	color: var(--gold);
	font-weight: 600;
}

/* ——— Extra LP sections (Demon/Dragon/Mine/BJ/Shade) ——— */
.lp-badge-crimson {
	background: rgba(239, 68, 68, 0.12);
	color: #f87171;
	border-color: rgba(239, 68, 68, 0.4);
}

@media (min-width: 900px) {
	.lp-intro-grid.is-reverse {
		grid-template-columns: 1.05fr 0.95fr;
	}

	.lp-intro-grid.is-reverse .lp-intro-copy {
		order: 1;
	}

	.lp-intro-grid.is-reverse .lp-intro-media {
		order: 2;
	}
}

.lp-rank-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin: 1.25rem 0;
}

.lp-rank-row {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.lp-rank-label {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.88rem;
}

.lp-rank-label span:first-child {
	color: var(--text);
	font-weight: 600;
}

.lp-rank-label span:last-child {
	color: var(--gold);
	font-weight: 700;
	white-space: nowrap;
}

.lp-rank-bar {
	height: 8px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border);
	border-radius: 999px;
	overflow: hidden;
}

.lp-rank-fill {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #dc2626, #ef4444);
	border-radius: 999px;
}

.lp-rank-fill.is-gold {
	background: linear-gradient(90deg, var(--gold), #ca8a04);
}

.lp-dual {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 820px) {
	.lp-dual {
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem;
		align-items: start;
	}
}

.lp-dual-panel {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem 1.15rem;
}

.lp-dual-panel.is-accent {
	border-color: rgba(245, 185, 66, 0.45);
	background: linear-gradient(180deg, rgba(245, 185, 66, 0.06), var(--card-bg));
}

.lp-dual-panel h5 {
	color: var(--gold);
	font-size: 1.05rem;
	margin: 0 0 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.lp-dual-panel > p {
	color: var(--muted);
	font-size: 0.88rem;
	margin: 0 0 0.85rem;
}

.lp-dual-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.lp-dual-list li {
	color: var(--muted);
	font-size: 0.88rem;
	padding-left: 0.9rem;
	position: relative;
}

.lp-dual-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
}

.lp-dual-list strong {
	color: var(--text);
}

.lp-dual-rows {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lp-dual-rows li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.55rem 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.86rem;
}

.lp-dual-rows li:last-child {
	border-bottom: 0;
}

.lp-dual-k {
	color: var(--muted);
}

.lp-dual-v {
	color: var(--text);
	font-weight: 600;
	text-align: right;
}

.lp-compare-note,
.lp-table-note {
	color: var(--muted);
	font-size: 0.8rem;
	margin: 1rem 0 0;
	max-width: 48rem;
}

.lp-zones-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-bottom: 1.75rem;
}

@media (min-width: 700px) {
	.lp-zones-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.lp-zone-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.15rem 1.1rem;
	transition: border-color 0.2s, transform 0.2s;
}

.lp-zone-card:hover {
	border-color: rgba(45, 212, 191, 0.4);
	transform: translateY(-2px);
}

.lp-zone-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.45rem;
}

.lp-zone-n {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--red);
	font-size: 0.95rem;
}

.lp-zone-mult {
	font-family: var(--font-display);
	font-weight: 700;
	color: #5eead4;
	font-size: 0.92rem;
}

.lp-zone-card h5 {
	color: var(--gold);
	font-size: 1.02rem;
	margin: 0 0 0.65rem;
}

.lp-zone-bar {
	margin-bottom: 0.75rem;
}

.lp-zone-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.85rem;
	line-height: 1.5;
}

.lp-demon .lp-creature-card:hover {
	border-color: rgba(239, 68, 68, 0.45);
}

.lp-demon .lp-creature-mult {
	color: #f87171;
}

.lp-dragon .lp-creature-card:hover {
	border-color: rgba(245, 185, 66, 0.5);
}

.lp-dragon .lp-creature-mult {
	color: var(--gold);
}

/* ——— Company / Account info pages (v1.6) ——— */
.ez777-site .ez777-subpage .ez777-page-hero,
.ez777-site .ez777-subpage .ez777-prose {
	/* Legacy stubs: prefer .info-hero / .lp-legal under redesigned pages */
	font-family: var(--font-body);
}

.info-hero {
	position: relative;
	padding: 2.75rem 0 2.25rem;
	background:
		radial-gradient(ellipse 55% 60% at 15% 80%, rgba(225, 29, 46, 0.1), transparent 55%),
		radial-gradient(ellipse 50% 50% at 90% 20%, rgba(245, 185, 66, 0.08), transparent 55%),
		linear-gradient(160deg, #0c0610 0%, var(--black) 55%, #0a1210 100%);
	overflow: hidden;
}

.info-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--jade), transparent);
}

.info-hero-compact {
	padding: 2.25rem 0 1.75rem;
}

.info-hero-rg {
	background:
		radial-gradient(ellipse 55% 60% at 20% 80%, rgba(16, 185, 129, 0.14), transparent 55%),
		radial-gradient(ellipse 45% 50% at 85% 15%, rgba(245, 185, 66, 0.07), transparent 55%),
		linear-gradient(160deg, #052e16 0%, var(--black) 55%, #060d14 100%);
}

.info-hero-rg::after {
	background: linear-gradient(90deg, transparent, var(--jade), var(--gold), var(--jade), transparent);
}

.info-hero .lp-crumb {
	margin-bottom: 1rem;
}

.info-hero h1 {
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3.6vw, 2.55rem);
	color: var(--gold);
	margin: 0.65rem 0 0.85rem;
	max-width: 40rem;
	line-height: 1.2;
}

.info-hero .lead {
	color: var(--muted);
	max-width: 40rem;
	margin: 0 0 1.25rem;
	font-size: 1.02rem;
}

.info-hero .lead a {
	color: var(--gold);
	font-weight: 600;
}

.info-hero .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 0.25rem;
}

.info-hero-note {
	margin: 1rem 0 0;
	font-size: 0.82rem;
	color: var(--muted);
}

.info-hero-note a {
	color: var(--gold);
}

.info-updated {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0.5rem 0 0;
	padding: 0.35rem 0.85rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 0.82rem;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.03);
}

.lp-badge-jade {
	background: rgba(16, 185, 129, 0.12);
	color: #86efac;
	border-color: rgba(16, 185, 129, 0.4);
}

.lp-rg-age {
	margin: 0.75rem 0 0;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-wrap: wrap;
	color: #fca5a5;
	font-weight: 600;
	font-size: 0.95rem;
}

/* Timeline */
.lp-timeline {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 40rem;
	position: relative;
}

.lp-timeline::before {
	content: "";
	position: absolute;
	left: 0.55rem;
	top: 0.35rem;
	bottom: 0.35rem;
	width: 2px;
	background: linear-gradient(180deg, var(--gold), var(--red), var(--jade));
}

.lp-timeline-item {
	position: relative;
	padding: 0 0 1.75rem 2.25rem;
}

.lp-timeline-item:last-child {
	padding-bottom: 0;
}

.lp-timeline-item::before {
	content: "";
	position: absolute;
	left: 0.25rem;
	top: 0.35rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: var(--gold);
	border: 2px solid var(--black);
	box-shadow: 0 0 0 2px rgba(245, 185, 66, 0.45);
}

.lp-timeline-year {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fca5a5;
	margin-bottom: 0.35rem;
}

.lp-timeline-body h3 {
	font-size: 1.05rem;
	color: var(--gold);
	margin: 0 0 0.4rem;
}

.lp-timeline-body p {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

/* About extras */
.lp-about-values {
	background: linear-gradient(160deg, #1a080c, #0a0a0a);
	border: 1px solid rgba(225, 29, 46, 0.28);
	border-radius: var(--radius);
	padding: 1.35rem 1.25rem;
}

.lp-about-values h3 {
	font-size: 1.1rem;
	color: var(--gold);
	margin: 0 0 1rem;
}

.lp-about-quote {
	margin: 1.25rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 0.88rem;
	font-style: italic;
}

.lp-about-quote cite {
	display: block;
	margin-top: 0.65rem;
	font-style: normal;
	font-weight: 700;
	font-size: 0.8rem;
	color: var(--gold);
}

.lp-game-lib {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
	.lp-game-lib {
		grid-template-columns: repeat(4, 1fr);
	}
}

.lp-game-lib-card {
	display: block;
	text-align: center;
	text-decoration: none !important;
	color: inherit;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.15rem 0.85rem;
	transition: border-color 0.2s, transform 0.2s;
}

.lp-game-lib-card:hover {
	border-color: var(--gold);
	transform: translateY(-3px);
	text-decoration: none !important;
}

.lp-game-lib-card.is-more {
	border-style: dashed;
	border-color: rgba(245, 185, 66, 0.35);
}

.lp-game-lib-icon {
	display: block;
	font-size: 1.85rem;
	margin-bottom: 0.45rem;
	line-height: 1;
}

.lp-game-lib-card h5 {
	margin: 0 0 0.3rem;
	font-size: 0.9rem;
	color: var(--gold);
}

.lp-game-lib-card p {
	margin: 0;
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 1.4;
}

.lp-team-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
	.lp-team-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.lp-team-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem 1rem;
	text-align: center;
}

.lp-team-avatar {
	font-size: 2rem;
	margin-bottom: 0.55rem;
	line-height: 1;
}

.lp-team-card h5 {
	margin: 0 0 0.25rem;
	color: var(--gold);
	font-size: 1rem;
}

.lp-team-role {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: #fca5a5;
	margin-bottom: 0.55rem;
}

.lp-team-card p {
	margin: 0;
	font-size: 0.82rem;
	color: var(--muted);
}

/* App phone mock */
.lp-phone-mock {
	max-width: 260px;
	margin: 0 auto;
}

.lp-phone-frame {
	background: linear-gradient(160deg, #1f1f28, #0f0f14);
	border: 3px solid #333;
	border-radius: 36px;
	padding: 1.15rem 0.85rem 1rem;
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(245, 185, 66, 0.1);
}

.lp-phone-notch {
	width: 72px;
	height: 16px;
	margin: 0 auto 0.85rem;
	background: #0f0f14;
	border-radius: 0 0 12px 12px;
	border: 1px solid #333;
	border-top: 0;
}

.lp-phone-screen {
	background: linear-gradient(160deg, #1a080c, #060d14);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 1rem 0.75rem;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
}

.lp-phone-logo {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--gold);
	font-size: 1.35rem;
	letter-spacing: 0.04em;
}

.lp-phone-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.35rem;
	width: 100%;
}

.lp-phone-grid span {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0.4rem 0.3rem;
	font-size: 0.62rem;
	color: var(--muted);
	text-align: center;
}

.lp-phone-bal {
	font-size: 0.72rem;
	color: var(--muted);
}

.lp-phone-bal strong {
	color: var(--gold);
}

.lp-phone-cta {
	background: linear-gradient(135deg, var(--gold), #ca8a04);
	color: #0a0a0a;
	font-weight: 700;
	font-size: 0.72rem;
	padding: 0.45rem 1.1rem;
	border-radius: 999px;
}

.lp-install-note {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	max-width: 44rem;
	margin: 1.75rem auto 0;
	padding: 1.15rem 1.25rem;
	background: rgba(245, 185, 66, 0.06);
	border: 1px solid rgba(245, 185, 66, 0.22);
	border-radius: var(--radius);
}

.lp-install-note > i {
	color: var(--gold);
	font-size: 1.2rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.lp-install-note strong {
	display: block;
	color: var(--text);
	margin-bottom: 0.35rem;
}

.lp-install-note p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
}

/* Game hub */
.lp-hub-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.lp-hub-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.lp-hub-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.lp-hub-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s, transform 0.2s;
}

.lp-hub-card:hover {
	border-color: var(--gold);
	transform: translateY(-3px);
}

.lp-hub-banner {
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.75rem;
}

.banner-gold { background: linear-gradient(135deg, #1a1400, #2d2200); }
.banner-blue { background: linear-gradient(135deg, #050d1a, #0a1a2d); }
.banner-crimson { background: linear-gradient(135deg, #1a0510, #2d0a1a); }
.banner-red { background: linear-gradient(135deg, #1a0505, #2d0a0a); }
.banner-purple { background: linear-gradient(135deg, #0d051a, #1a0a2d); }
.banner-jade { background: linear-gradient(135deg, #051a0a, #0a2d14); }
.banner-teal { background: linear-gradient(135deg, #051a1a, #0a2d2d); }
.banner-dark { background: linear-gradient(135deg, #0f0f0f, #1a1a1a); }

.lp-hub-body {
	padding: 1.1rem 1.15rem 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lp-hub-tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.18rem 0.55rem;
	border-radius: 999px;
	background: rgba(245, 185, 66, 0.1);
	color: var(--gold);
	border: 1px solid rgba(245, 185, 66, 0.3);
	margin-bottom: 0.45rem;
}

.lp-hub-body h5 {
	margin: 0 0 0.45rem;
	color: var(--gold);
	font-size: 1.02rem;
}

.lp-hub-body p {
	margin: 0 0 1rem;
	color: var(--muted);
	font-size: 0.84rem;
	flex: 1;
}

.lp-hub-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	font-size: 0.78rem;
	color: var(--muted);
}

.btn-play {
	display: inline-block;
	padding: 0.4rem 0.85rem;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--red), #b91c1c);
	color: #fff !important;
	font-weight: 700;
	font-size: 0.8rem;
	text-decoration: none !important;
}

.btn-play:hover {
	opacity: 0.92;
	text-decoration: none !important;
}

.lp-cat-rows {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.lp-cat-row {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.95rem 1.1rem;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	text-decoration: none !important;
	color: inherit;
	transition: border-color 0.2s, transform 0.2s;
}

.lp-cat-row:hover {
	border-color: var(--gold);
	transform: translateX(3px);
	text-decoration: none !important;
}

.lp-cat-icon {
	font-size: 1.6rem;
	flex-shrink: 0;
	line-height: 1;
}

.lp-cat-copy {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.lp-cat-copy strong {
	color: var(--gold);
	font-family: var(--font-display);
	font-size: 0.98rem;
}

.lp-cat-copy span {
	color: var(--muted);
	font-size: 0.82rem;
}

.lp-cat-cta {
	color: var(--gold);
	font-weight: 700;
	font-size: 0.88rem;
	flex-shrink: 0;
}

/* FAQ chips */
.lp-faq-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 2.25rem;
}

.lp-faq-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--card-bg);
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none !important;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.lp-faq-chip:hover {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(245, 185, 66, 0.06);
	text-decoration: none !important;
}

.lp-faq-group {
	margin-bottom: 2.25rem;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
}

.lp-faq-group-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--border);
}

.lp-faq-group-head h2 {
	margin: 0;
	font-size: 1.15rem;
	color: var(--gold);
}

.lp-faq-group-head .icon-wrap {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}

/* RG extras */
.lp-age-panel {
	text-align: center;
	border-color: rgba(220, 38, 38, 0.35);
	background: linear-gradient(160deg, rgba(220, 38, 38, 0.12), var(--card-bg));
}

.lp-age-number {
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 10vw, 5rem);
	font-weight: 800;
	color: #fca5a5;
	line-height: 1;
}

.lp-age-number span {
	color: var(--red);
}

.lp-age-label {
	font-weight: 700;
	color: #fca5a5;
	margin: 0.65rem 0 0.5rem !important;
}

.lp-self-check {
	list-style: none;
	margin: 0 auto 1.25rem;
	padding: 0;
	max-width: 44rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.lp-self-check li {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	padding: 0.85rem 1rem;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: 12px;
}

.lp-self-num {
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: rgba(16, 185, 129, 0.15);
	color: #4ade80;
	font-weight: 700;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-self-note {
	max-width: 44rem;
	margin: 0 auto;
	padding: 1rem 1.15rem;
	background: rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: var(--radius);
	color: #bbf7d0;
	font-size: 0.9rem;
}

.lp-rg-badge {
	display: inline-block;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	background: rgba(16, 185, 129, 0.18);
	color: #4ade80;
	border: 1px solid rgba(16, 185, 129, 0.35);
}

.lp-table-rg th {
	background: rgba(16, 185, 129, 0.75);
}

.lp-rg-commit {
	max-width: 48rem;
	margin: 1.75rem auto 0;
	padding: 1.15rem 1.25rem;
	background: rgba(245, 185, 66, 0.05);
	border: 1px solid rgba(245, 185, 66, 0.22);
	border-radius: var(--radius);
	color: var(--muted);
	font-size: 0.9rem;
	text-align: center;
}

.lp-cta-band-soft {
	background:
		radial-gradient(ellipse 60% 50% at 50% 0%, rgba(16, 185, 129, 0.14), transparent 60%),
		linear-gradient(180deg, #052016 0%, var(--black) 100%);
}

/* Legal layout */
.lp-legal {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: 1fr;
	align-items: start;
}

@media (min-width: 960px) {
	.lp-legal {
		grid-template-columns: 15rem minmax(0, 1fr);
		gap: 2.25rem;
	}
}

.lp-legal-toc {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.15rem 1.1rem;
}

@media (min-width: 960px) {
	.lp-legal-toc {
		position: sticky;
		top: calc(var(--ez777-header-h) + 1rem);
	}
}

.lp-legal-toc h2 {
	font-size: 0.95rem;
	color: var(--gold);
	margin: 0 0 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.lp-legal-toc ol {
	margin: 0;
	padding: 0 0 0 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.lp-legal-toc a {
	color: var(--muted);
	font-size: 0.82rem;
	text-decoration: none;
	line-height: 1.35;
}

.lp-legal-toc a:hover {
	color: var(--gold);
	text-decoration: underline;
}

.lp-legal-alert {
	padding: 1rem 1.15rem;
	border-radius: var(--radius);
	background: rgba(245, 185, 66, 0.07);
	border: 1px solid rgba(245, 185, 66, 0.28);
	margin-bottom: 1.5rem;
}

.lp-legal-alert.is-warn {
	background: rgba(225, 29, 46, 0.08);
	border-color: rgba(225, 29, 46, 0.3);
}

.lp-legal-alert p {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.lp-legal-alert strong {
	color: var(--text);
}

.lp-legal-prose h2 {
	font-size: 1.2rem;
	color: var(--gold);
	margin: 2rem 0 0.85rem;
	scroll-margin-top: calc(var(--ez777-header-h) + 1rem);
}

.lp-legal-prose h2:first-child {
	margin-top: 0;
}

.lp-legal-prose h3 {
	font-size: 1rem;
	color: var(--text);
	margin: 1.15rem 0 0.55rem;
	font-family: var(--font-body);
}

.lp-legal-prose p,
.lp-legal-prose li {
	color: var(--muted);
	font-size: 0.92rem;
}

.lp-legal-prose ul {
	margin: 0.5rem 0 1rem;
	padding-left: 1.2rem;
}

.lp-legal-prose a {
	color: var(--gold);
	font-weight: 600;
}

.lp-legal-prose a:hover {
	text-decoration: underline;
}

/* ——— Register / Login auth pages ——— */
.lp-auth-hero,
.lp-login-stage {
	padding: 2rem 0 3rem;
}

.lp-auth-split {
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 960px) {
	.lp-auth-split {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: 2.5rem;
	}
}

.lp-auth-copy h1 {
	margin: 0.65rem 0 0.85rem;
	font-size: clamp(1.75rem, 3.6vw, 2.55rem);
	line-height: 1.15;
}

.lp-auth-benefits {
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.lp-auth-benefits li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.lp-auth-benefits i {
	color: var(--jade);
	margin-top: 0.15rem;
	flex-shrink: 0;
}

.lp-auth-note {
	margin: 1.35rem 0 0;
	color: var(--muted);
	font-size: 0.88rem;
}

.lp-auth-note a {
	color: var(--gold);
	font-weight: 600;
}

.lp-auth-panel {
	background:
		linear-gradient(160deg, rgba(225, 29, 46, 0.08), transparent 42%),
		var(--card-bg);
	border: 1px solid var(--border);
	border-radius: calc(var(--radius) + 4px);
	padding: 1.35rem 1.25rem 1.5rem;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

@media (min-width: 960px) {
	.lp-auth-panel {
		position: sticky;
		top: calc(var(--ez777-header-h) + 1rem);
	}
}

.lp-auth-panel-head {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	margin-bottom: 1.1rem;
}

.lp-auth-panel-head h2 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--text);
}

.lp-auth-panel-head p {
	margin: 0.25rem 0 0;
	font-size: 0.88rem;
	color: var(--muted);
}

.lp-auth-panel-head a {
	color: var(--gold);
	font-weight: 600;
}

.lp-auth-panel-icon {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 0.75rem;
	display: grid;
	place-items: center;
	background: rgba(225, 29, 46, 0.15);
	color: var(--red);
	font-size: 1.2rem;
	flex-shrink: 0;
}

.lp-auth-panel-icon.is-dragon {
	background: rgba(245, 185, 66, 0.12);
	color: var(--gold);
}

.lp-auth-secure-line {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	margin: 0 0 1rem;
	padding: 0.7rem 0.8rem;
	border-radius: var(--radius);
	background: rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.22);
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.4;
}

.lp-auth-secure-line i {
	color: #34d399;
	margin-top: 0.1rem;
}

.lp-auth-form {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.lp-auth-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.lp-auth-field > span,
.lp-auth-label-row {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text);
}

.lp-auth-field > span em {
	font-style: normal;
	font-weight: 500;
	color: var(--muted);
}

.lp-auth-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
}

.lp-auth-forgot {
	color: var(--gold);
	font-size: 0.78rem;
	font-weight: 600;
	text-decoration: none;
}

.lp-auth-forgot:hover {
	text-decoration: underline;
}

.lp-auth-field input[type="text"],
.lp-auth-field input[type="email"],
.lp-auth-field input[type="tel"],
.lp-auth-field input[type="date"],
.lp-auth-field input[type="password"] {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--border);
	border-radius: 0.55rem;
	background: #0d0d0d;
	color: var(--text);
	padding: 0.7rem 0.85rem;
	font: inherit;
	font-size: 0.92rem;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-auth-field input:focus {
	border-color: rgba(245, 185, 66, 0.55);
	box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.12);
}

.lp-auth-field small {
	color: var(--muted);
	font-size: 0.75rem;
}

.lp-auth-phone {
	display: flex;
	align-items: stretch;
	border: 1px solid var(--border);
	border-radius: 0.55rem;
	overflow: hidden;
	background: #0d0d0d;
}

.lp-auth-phone:focus-within {
	border-color: rgba(245, 185, 66, 0.55);
	box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.12);
}

.lp-auth-phone-prefix {
	display: grid;
	place-items: center;
	padding: 0 0.75rem;
	background: rgba(255, 255, 255, 0.04);
	border-right: 1px solid var(--border);
	color: var(--muted);
	font-size: 0.85rem;
	white-space: nowrap;
}

.lp-auth-phone input {
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.lp-auth-pass-wrap {
	position: relative;
	display: block;
}

.lp-auth-pass-wrap input {
	padding-right: 2.75rem;
}

.lp-auth-pass-toggle {
	position: absolute;
	right: 0.35rem;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: var(--muted);
	width: 2.2rem;
	height: 2.2rem;
	cursor: pointer;
	border-radius: 0.4rem;
}

.lp-auth-pass-toggle:hover {
	color: var(--gold);
}

.lp-auth-strength {
	font-size: 0.75rem;
	color: var(--muted);
}

.lp-auth-strength.is-weak { color: #f87171; }
.lp-auth-strength.is-fair { color: #fbbf24; }
.lp-auth-strength.is-good { color: #34d399; }
.lp-auth-strength.is-strong { color: #6ee7b7; }

.lp-auth-check {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.82rem;
	color: var(--muted);
	line-height: 1.4;
}

.lp-auth-check input {
	margin-top: 0.2rem;
	accent-color: var(--red);
	flex-shrink: 0;
}

.lp-auth-check a {
	color: var(--gold);
	font-weight: 600;
}

.lp-auth-check-inline {
	align-items: center;
}

.lp-auth-check-inline input {
	margin-top: 0;
}

.lp-auth-submit {
	width: 100%;
	justify-content: center;
	margin-top: 0.25rem;
}

.lp-auth-submit[disabled] {
	opacity: 0.65;
	pointer-events: none;
}

.lp-auth-msg {
	padding: 0.7rem 0.85rem;
	border-radius: var(--radius);
	font-size: 0.85rem;
	line-height: 1.4;
}

.lp-auth-msg.is-error {
	background: rgba(225, 29, 46, 0.1);
	border: 1px solid rgba(225, 29, 46, 0.35);
	color: #fecaca;
}

.lp-auth-msg.is-ok {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.35);
	color: #a7f3d0;
}

.lp-auth-success {
	text-align: center;
	padding: 0.5rem 0.25rem 0.25rem;
}

.lp-auth-success-icon {
	font-size: 2.4rem;
	color: #34d399;
	margin-bottom: 0.5rem;
}

.lp-auth-success h3 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.lp-auth-success-text {
	color: var(--muted);
	font-size: 0.92rem;
	margin: 0 0 1.15rem;
}

.lp-auth-foot-note {
	margin: 1rem 0 0;
	text-align: center;
	color: var(--muted);
	font-size: 0.85rem;
}

.lp-auth-foot-note a {
	color: var(--gold);
	font-weight: 600;
}

.lp-howto-rail {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.lp-howto-rail {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.lp-howto-rail {
		grid-template-columns: repeat(4, 1fr);
	}
}

.lp-howto-rail-item {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.2rem 1.1rem;
}

.lp-howto-n {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--gold);
	font-size: 0.95rem;
	margin-bottom: 0.55rem;
}

.lp-howto-rail-item h3 {
	margin: 0 0 0.45rem;
	font-size: 1.05rem;
}

.lp-howto-rail-item p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
}

.lp-pay-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
}

.lp-pay-chip {
	padding: 0.55rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--card-bg);
	color: var(--text);
	font-weight: 600;
	font-size: 0.88rem;
}

.lp-login-intro {
	max-width: 40rem;
	margin-bottom: 1.5rem;
}

.lp-login-intro h1 {
	margin: 0.55rem 0 0.75rem;
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.lp-login-grid {
	display: grid;
	gap: 1.5rem;
	align-items: start;
}

@media (min-width: 960px) {
	.lp-login-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
		gap: 2rem;
	}
}

.lp-auth-panel-login {
	position: static;
}

.lp-login-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.65rem;
	margin-bottom: 1rem;
}

.lp-login-stat {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.85rem 0.5rem;
	text-align: center;
}

.lp-login-stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: var(--gold);
}

.lp-login-stat span {
	font-size: 0.72rem;
	color: var(--muted);
}

.lp-login-aside-card {
	margin-top: 1rem;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.15rem;
}

.lp-login-aside-card h3 {
	margin: 0 0 0.45rem;
	font-size: 1.05rem;
}

.lp-login-aside-card p {
	margin: 0 0 0.9rem;
	color: var(--muted);
	font-size: 0.88rem;
}

.lp-security-wrap {
	max-width: 52rem;
}

.lp-security-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.lp-security-item {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	padding: 1rem 1.05rem;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.lp-security-icon {
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 0.65rem;
	display: grid;
	place-items: center;
	background: rgba(245, 185, 66, 0.1);
	color: var(--gold);
	flex-shrink: 0;
}

.lp-security-item h3 {
	margin: 0 0 0.3rem;
	font-size: 0.98rem;
	font-family: var(--font-body);
}

.lp-security-item p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
}

.lp-cta-meta {
	margin: 1rem 0 0;
	color: var(--muted);
	font-size: 0.8rem;
}

/* ——— Floating Register / Login (match 对标站: equal width, near full-bleed) ——— */
.ez777-float-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10060;
	display: flex;
	flex-direction: row;
	gap: 0.45rem;
	align-items: stretch;
	justify-content: stretch;
	width: 100%;
	max-width: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0.45rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 35%, rgba(0, 0, 0, 0.92) 100%);
	pointer-events: none;
}

.ez777-float-cta-btn {
	pointer-events: auto;
	flex: 1 1 0;
	width: 0; /* force equal columns with flex — same as 对标站 */
	min-width: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.6rem;
	height: 2.6rem;
	padding: 0 0.75rem;
	border-radius: 999px;
	font-family: var(--font-body), system-ui, sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1;
	letter-spacing: 0;
	font-stretch: normal;
	font-synthesis: none;
	text-decoration: none !important;
	border: 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
	transition: filter 0.15s ease;
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
	white-space: nowrap;
	overflow: hidden;
}

.ez777-float-cta-btn:hover,
.ez777-float-cta-btn:focus {
	filter: brightness(1.05);
	transform: none;
}

.ez777-float-cta-btn i {
	font-size: 0.95rem;
	line-height: 1;
	flex-shrink: 0;
}

.ez777-float-cta-btn span {
	display: inline-block;
	line-height: 1;
	transform: none;
	font-stretch: normal;
}

.ez777-float-cta-register {
	color: #ffffff !important;
	background: linear-gradient(180deg, #3ddc84 0%, #1a9e4a 55%, #157a3a 100%);
}

.ez777-float-cta-register i {
	color: #ffffff !important;
}

.ez777-float-cta-login {
	color: #2a1a00 !important;
	background: linear-gradient(180deg, #f5d76e 0%, #e0a820 55%, #c9920f 100%);
}

.ez777-float-cta-login i {
	color: #2a1a00 !important;
}

/* Bottom mobile tab bar yields to the floating CTAs */
.ez777-mobile-nav {
	display: none !important;
}

@media (min-width: 900px) {
	.ez777-float-cta {
		/* desktop: still equal split, slightly inset like mobile reference */
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.ez777-float-cta-btn {
		min-height: 2.75rem;
		height: 2.75rem;
		font-size: 1rem;
	}
}

