/* SWINGFIRE official site — mobile + PC */
:root {
	--app-height: 100%;
	--app-width: 100%;
	--teal-deep: #195a55;
	--teal-mid: #2a8c78;
	--sage: #d1d9c5;
	--mist: #eef3ea;
	--ink: #14352c;
	--ink-soft: #2a4a40;
	--amber: #e59a3a;
	--amber-deep: #8a4a14;
	--nav-h: 64px;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background: var(--teal-deep);
	-webkit-tap-highlight-color: transparent;
	overscroll-behavior: none;
}

body.is-landing {
	touch-action: manipulation;
	overflow: hidden;
	height: 100%;
}

body.is-playing {
	touch-action: none;
	background: #000;
	overflow: hidden;
}

/* —— Site shell —— */
#landing {
	position: fixed;
	inset: 0;
	z-index: 20;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: linear-gradient(180deg, var(--teal-deep) 0%, #2f6f66 28%, var(--sage) 72%, var(--mist) 100%);
	color: var(--ink);
	font-family: 'Figtree', sans-serif;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}
#landing.is-gone {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 40;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 clamp(14px, 3vw, 36px);
	background: rgba(232, 238, 228, 0.88);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(20, 53, 44, 0.12);
}
.nav-brand {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: normal;
	line-height: 1.2;
	font-stretch: normal;
	font-synthesis: none;
	transform: none;
	white-space: nowrap;
	color: var(--ink);
	text-decoration: none;
	flex-shrink: 0;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: clamp(8px, 1.4vw, 18px);
	flex-wrap: nowrap;
}
.nav-links a,
.nav-links button.nav-link {
	appearance: none;
	border: 0;
	background: none;
	padding: 0;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--ink-soft);
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
}
.nav-links a:hover,
.nav-links button.nav-link:hover {
	color: var(--ink);
}
.nav-play {
	appearance: none;
	border: none;
	cursor: pointer;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.1em;
	padding: 0.55rem 1.1rem;
	border-radius: 10px;
	color: #2a1808;
	background: linear-gradient(180deg, #f0b45a 0%, var(--amber) 55%, #c47820 100%);
	box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset;
	flex-shrink: 0;
}
.nav-play:hover { filter: brightness(1.05); }
.nav-toggle {
	display: none;
	appearance: none;
	border: 1px solid rgba(20, 53, 44, 0.25);
	background: rgba(255,255,255,0.55);
	width: 44px;
	height: 40px;
	border-radius: 10px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}
.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink);
	border-radius: 1px;
}

@media (max-width: 920px) {
	.nav-toggle { display: flex; }
	.nav-links {
		display: none;
		position: absolute;
		top: var(--nav-h);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 0 16px;
		background: rgba(238, 243, 234, 0.98);
		border-bottom: 1px solid rgba(20, 53, 44, 0.12);
		box-shadow: 0 12px 28px rgba(20, 53, 44, 0.12);
	}
	.site-nav.is-open .nav-links { display: flex; }
	.nav-links a,
	.nav-links button.nav-link {
		padding: 14px 20px;
		font-size: 1rem;
		border-bottom: 1px solid rgba(20, 53, 44, 0.06);
		text-align: left;
	}
}

/* —— Hero —— */
.hero {
	position: relative;
	min-height: calc(100vh - var(--nav-h));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px 20px 72px;
	overflow: hidden;
}
.hero-sky {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	background: #195a55 url('screens/hero-poster.jpg') center center / cover no-repeat;
}
.hero-sky::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(20, 53, 44, 0.42) 0%, rgba(20, 53, 44, 0.55) 55%, rgba(20, 53, 44, 0.62) 100%);
}
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-inner {
	position: relative;
	z-index: 1;
	width: min(920px, 94vw);
}
.hero-brand {
	margin: 0;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: clamp(3rem, 11vw, 6.2rem);
	letter-spacing: normal;
	line-height: 1.05;
	font-stretch: normal;
	font-synthesis: none;
	transform: none;
	color: #f4f7f2;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-tag {
	margin: 1.15rem auto 0;
	max-width: 28em;
	font-size: clamp(1.05rem, 2.5vw, 1.35rem);
	line-height: 1.45;
	color: #eef3ea;
	opacity: 0.95;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
	animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-play {
	appearance: none;
	margin-top: 2.2rem;
	border: none;
	cursor: pointer;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: clamp(1.1rem, 2.8vw, 1.4rem);
	letter-spacing: 0.12em;
	padding: 1rem 2.6rem;
	border-radius: 14px;
	color: #2a1808;
	background: linear-gradient(180deg, #f0b45a 0%, var(--amber) 55%, #c47820 100%);
	box-shadow:
		0 1px 0 rgba(255,255,255,0.35) inset,
		0 8px 24px rgba(20, 53, 44, 0.25);
	transition: transform 0.15s ease, filter 0.15s ease;
	animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero-play:hover {
	filter: brightness(1.05);
	transform: translateY(-2px);
}
.hero-play:active { transform: translateY(1px); }
@keyframes rise {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

/* —— Sections —— */
.section {
	padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 48px);
}
.section-inner {
	width: min(980px, 100%);
	margin: 0 auto;
}
.section-kicker {
	margin: 0 0 0.35rem;
	font-family: 'Syne', sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--teal-mid);
	font-weight: 700;
}
.section-title {
	margin: 0;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: clamp(1.7rem, 4vw, 2.4rem);
	letter-spacing: 0.02em;
	color: var(--ink);
}
.section-lead {
	margin: 0.85rem 0 0;
	max-width: 36em;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--ink-soft);
}

.section--alt {
	background: rgba(255, 255, 255, 0.22);
}

.steps {
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}
.steps li {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 14px;
	align-items: start;
	padding: 16px 0;
	border-top: 1px solid rgba(20, 53, 44, 0.12);
}
.steps li:last-child { border-bottom: 1px solid rgba(20, 53, 44, 0.12); }
.step-num {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--teal-mid);
	line-height: 1.1;
}
.step-body strong {
	display: block;
	font-size: 1.05rem;
	color: var(--ink);
	margin-bottom: 0.25rem;
}
.step-body span {
	color: var(--ink-soft);
	line-height: 1.45;
	font-size: 0.98rem;
}

.demo-shot {
	margin: 1.6rem 0 0;
	padding: 0;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(20, 53, 44, 0.14);
	background: rgba(20, 53, 44, 0.08);
	box-shadow: 0 12px 32px rgba(20, 53, 44, 0.12);
}
.demo-shot img {
	display: block;
	width: 100%;
	height: auto;
}

.shot-grid {
	margin-top: 1.6rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.shot-card {
	margin: 0;
	padding: 0;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(20, 53, 44, 0.14);
	background: rgba(255, 255, 255, 0.35);
	box-shadow: 0 8px 24px rgba(20, 53, 44, 0.1);
}
.shot-card img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top center;
	background: #2a4a40;
}
.shot-card figcaption {
	margin: 0;
	padding: 0.65rem 0.85rem 0.85rem;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--ink);
}
@media (max-width: 760px) {
	.shot-grid { grid-template-columns: 1fr; }
}

.shot-grid--legacy {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
@media (max-width: 760px) {
	.shot-grid--legacy { grid-template-columns: 1fr; }
}
.shot {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: 14px;
	overflow: hidden;
	border: 2px solid rgba(20, 53, 44, 0.28);
	box-shadow: 0 10px 28px rgba(20, 53, 44, 0.12);
}
.shot-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.25), transparent 50%),
		linear-gradient(180deg, #195a55 0%, #4a8a7a 45%, #d1d9c5 100%);
}
.shot--b .shot-bg {
	background:
		radial-gradient(circle at 30% 40%, rgba(229,154,58,0.35), transparent 40%),
		linear-gradient(180deg, #14352c 0%, #2a8c78 50%, #c8d4bc 100%);
}
.shot--c .shot-bg {
	background:
		radial-gradient(circle at 80% 30%, rgba(255,255,255,0.3), transparent 35%),
		linear-gradient(200deg, #1f6a60 0%, #6a9a88 40%, #e8eee4 100%);
}
.shot-cloud {
	position: absolute;
	width: 28%;
	opacity: 0.92;
	filter: drop-shadow(0 4px 8px rgba(20,53,44,0.2));
}
.shot-cloud--a { left: 8%; bottom: 18%; }
.shot-cloud--b { right: 10%; top: 22%; width: 22%; }
.shot-gem {
	position: absolute;
	width: 11%;
	right: 18%;
	top: 28%;
	animation: floaty 3.2s ease-in-out infinite;
}
@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
.shot-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px 14px;
	background: linear-gradient(transparent, rgba(20, 53, 44, 0.72));
	color: #f4f7f2;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
}

.about-grid {
	margin-top: 1.8rem;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 28px;
	align-items: start;
}
@media (max-width: 760px) {
	.about-grid { grid-template-columns: 1fr; }
}
.about-copy p {
	margin: 0 0 1rem;
	line-height: 1.6;
	color: var(--ink-soft);
}
.about-copy a {
	color: var(--ink);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.stat-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}
.stat-list li {
	padding: 14px 16px;
	border-left: 4px solid var(--teal-mid);
	background: rgba(255,255,255,0.35);
}
.stat-list strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 1.15rem;
	color: var(--ink);
}
.stat-list span {
	font-size: 0.92rem;
	color: var(--ink-soft);
}

.recharge-note {
	margin-top: 1.5rem;
	padding: 18px 20px;
	background: rgba(255,255,255,0.4);
	border: 1px solid rgba(20, 53, 44, 0.15);
	border-radius: 12px;
	line-height: 1.55;
	color: var(--ink-soft);
}
.recharge-actions {
	margin-top: 1.4rem;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.site-footer {
	padding: 36px 20px 48px;
	text-align: center;
	border-top: 1px solid rgba(20, 53, 44, 0.12);
	background: rgba(20, 53, 44, 0.06);
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 18px;
	margin-bottom: 16px;
}
.footer-links button {
	appearance: none;
	border: 0;
	background: none;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ink-soft);
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer-company {
	margin: 0 auto 18px;
	max-width: 36em;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--ink-soft);
}
.footer-company-name {
	margin: 0 0 0.45rem;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	color: var(--ink);
}
.footer-company p {
	margin: 0.15rem 0;
}
.footer-company a {
	color: var(--ink);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.footer-links a {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--ink-soft);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer-copyright {
	margin: 0 0 10px;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	color: var(--ink);
}
.footer-copy {
	margin: 0;
	font-size: 0.85rem;
	color: var(--ink-soft);
	opacity: 0.85;
}

/* —— Independent policy pages —— */
body.is-policy {
	touch-action: manipulation;
	overflow: auto;
	height: auto;
	min-height: 100%;
	background: var(--mist);
	font-family: 'Figtree', sans-serif;
	color: var(--ink);
}
.policy-top {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px clamp(14px, 3vw, 36px);
	background: rgba(232, 238, 228, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(20, 53, 44, 0.12);
}
.policy-back {
	appearance: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(20, 53, 44, 0.25);
	background: rgba(255,255,255,0.65);
	color: var(--ink);
	font-family: 'Figtree', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.55rem 1rem;
	border-radius: 10px;
	text-decoration: none;
	cursor: pointer;
}
.policy-back:hover {
	background: rgba(255,255,255,0.9);
}
.policy-brand {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	letter-spacing: normal;
	line-height: 1.2;
	font-stretch: normal;
	font-synthesis: none;
	transform: none;
	white-space: nowrap;
	color: var(--ink);
	text-decoration: none;
}
.policy-main {
	width: min(760px, 94vw);
	margin: 0 auto;
	padding: 36px 0 64px;
}
.policy-main h1 {
	margin: 0 0 0.5rem;
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.7rem, 4vw, 2.3rem);
	color: var(--ink);
}
.policy-meta {
	margin: 0 0 1.5rem;
	font-size: 0.9rem;
	color: var(--ink-soft);
}
.policy-main h2 {
	margin: 1.6rem 0 0.6rem;
	font-family: 'Syne', sans-serif;
	font-size: 1.15rem;
	color: var(--ink);
}
.policy-main h3 {
	margin: 1.1rem 0 0.45rem;
	font-family: 'Syne', sans-serif;
	font-size: 1.02rem;
	color: var(--ink);
}
.policy-main p,
.policy-main li {
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--ink-soft);
}
.policy-main p { margin: 0 0 0.85rem; }
.policy-main ol,
.policy-main ul {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
}
.policy-main li { margin-bottom: 0.45rem; }
.policy-operator {
	margin-top: 2rem;
	padding: 16px 18px;
	border-left: 4px solid var(--teal-mid);
	background: rgba(255,255,255,0.4);
	border-radius: 0 12px 12px 0;
}
.policy-operator h3 {
	margin: 0 0 0.5rem;
	font-family: 'Syne', sans-serif;
	font-size: 1rem;
	color: var(--ink);
}
.policy-operator p {
	margin: 0.2rem 0;
	font-size: 0.92rem;
}
.policy-operator a {
	color: var(--ink);
	font-weight: 600;
}

/* —— Recharge page —— */
body.is-recharge .recharge-page {
	width: min(1100px, 94vw);
	margin: 0 auto;
	padding: 28px 0 64px;
}
.recharge-hero h1 {
	margin: 0 0 0.55rem;
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.7rem, 4vw, 2.35rem);
	color: var(--ink);
}
.recharge-lead {
	margin: 0 0 1.4rem;
	max-width: 42em;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--ink-soft);
}
.recharge-panel {
	margin: 0 0 1.25rem;
	padding: 18px 18px 20px;
	border: 1px solid rgba(20, 53, 44, 0.14);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.55);
}
.recharge-panel h2 {
	margin: 0 0 0.65rem;
	font-family: 'Syne', sans-serif;
	font-size: 1.15rem;
	color: var(--ink);
}
.recharge-panel--usage ul {
	margin: 0;
	padding-left: 1.2rem;
	color: var(--ink-soft);
	line-height: 1.65;
}
.recharge-panel--usage li {
	margin-bottom: 0.45rem;
}
.recharge-panel--usage a {
	color: var(--ink);
	font-weight: 700;
}
.recharge-panel--paynote {
	border-color: rgba(229, 154, 58, 0.55);
	background: rgba(229, 154, 58, 0.14);
}
.recharge-panel--paynote p {
	margin: 0;
	line-height: 1.55;
	color: var(--ink);
	font-size: 0.98rem;
}
.recharge-sublead {
	margin: -0.35rem 0 1rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--muted, #3d5a4f);
}
.field-hint {
	margin: 0 0 0.75rem;
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--muted, #3d5a4f);
}
.recharge-cta-note {
	margin: 0.75rem 0 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--muted, #3d5a4f);
}
.gem-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(220px, 1fr));
	gap: 14px;
}
.gem-card {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
	min-height: 118px;
	padding: 14px 14px 12px;
	border: 2px solid rgba(26, 61, 52, 0.35);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.78);
	text-align: left;
	cursor: pointer;
	font-family: 'Figtree', Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: normal;
	font-stretch: normal;
	font-synthesis: none;
	color: var(--ink);
	transform: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.gem-card:hover {
	background: rgba(255, 255, 255, 0.95);
}
.gem-card--tagged {
	border-color: rgba(229, 154, 58, 0.75);
	background: rgba(255, 255, 255, 0.88);
}
.gem-card.is-selected {
	border-color: var(--amber);
	box-shadow: 0 0 0 3px rgba(229, 154, 58, 0.28);
	background: #fff;
}
.gem-card-top {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-width: 0;
	padding-right: 4.5em;
	box-sizing: border-box;
}
.gem-card-tag {
	position: absolute;
	top: 10px;
	right: 12px;
	font-family: 'Figtree', Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: normal;
	line-height: 1.2;
	color: var(--amber-deep);
	white-space: nowrap;
}
.gem-card-icon {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	object-fit: contain;
}
.gem-card-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	min-width: 0;
	flex: 1 1 auto;
}
.gem-card-name,
.gem-card-desc,
.gem-card-price {
	display: block;
	font-family: 'Figtree', Arial, Helvetica, sans-serif;
	letter-spacing: normal;
	font-stretch: normal;
	transform: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gem-card-name {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	color: var(--ink);
}
.gem-card-desc {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.25;
	color: var(--ink-soft);
}
.gem-card-price {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	padding: 8px 10px;
	border-radius: 999px;
	background: linear-gradient(180deg, #f0b45a 0%, var(--amber) 55%, #c47820 100%);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	white-space: nowrap;
	overflow: visible;
	text-overflow: clip;
}
.recharge-form {
	display: grid;
	gap: 16px;
	width: 100%;
	max-width: none;
	min-width: 0;
	box-sizing: border-box;
}
.recharge-fields-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
	min-width: 0;
}
.field {
	display: grid;
	gap: 6px;
	min-width: 0;
}
.field-label {
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--ink);
}
.field-label em {
	color: #b45309;
	font-style: normal;
}
.field input[type="text"],
.field input[type="email"] {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	padding: 0.7rem 0.85rem;
	border: 1px solid rgba(20, 53, 44, 0.28);
	border-radius: 10px;
	background: #fff;
	font: inherit;
	font-size: 1rem;
	color: var(--ink);
}
.field input:focus {
	outline: 2px solid rgba(42, 140, 120, 0.45);
	outline-offset: 1px;
}
.field--pay {
	margin: 0;
	padding: 0;
	border: 0;
	min-width: 0;
	width: 100%;
}
.pay-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 12px;
	margin-top: 8px;
	min-width: 0;
}
.pay-option {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid rgba(20, 53, 44, 0.18);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.75);
	cursor: pointer;
	min-width: 0;
	box-sizing: border-box;
}
.pay-option input {
	margin-top: 4px;
	flex-shrink: 0;
}
.pay-option > span {
	min-width: 0;
	flex: 1 1 auto;
}
.pay-option strong {
	display: block;
	color: var(--ink);
}
.pay-option small {
	display: block;
	margin-top: 2px;
	color: var(--ink-soft);
	font-size: 0.85rem;
}
.pay-option-note {
	margin: 8px 0 0;
	font-size: 0.85rem;
	color: var(--amber-deep);
	font-weight: 600;
}
.field--check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--ink-soft);
	min-width: 0;
	width: 100%;
}
.field--check input {
	margin-top: 4px;
	flex-shrink: 0;
}
.field--check > span {
	min-width: 0;
	flex: 1 1 auto;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.field--check a {
	color: var(--ink);
	font-weight: 700;
}
.recharge-submit {
	appearance: none;
	border: 0;
	border-radius: 12px;
	padding: 0.9rem 1.2rem;
	width: min(100%, 360px);
	justify-self: center;
	box-sizing: border-box;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	color: #fff;
	background: linear-gradient(180deg, #f0b45a 0%, var(--amber) 55%, #c47820 100%);
	cursor: pointer;
}
.recharge-submit:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	filter: grayscale(0.25);
}
.recharge-result {
	margin-top: 1.1rem;
	padding: 16px 18px;
	border-radius: 12px;
	border: 1px solid rgba(42, 140, 120, 0.4);
	background: rgba(42, 140, 120, 0.12);
	color: var(--ink-soft);
	line-height: 1.55;
}
.recharge-result h3 {
	margin: 0 0 0.55rem;
	font-family: 'Syne', sans-serif;
	color: var(--ink);
}
.recharge-result p { margin: 0.35rem 0; }
.recharge-result a {
	color: var(--ink);
	font-weight: 700;
}
@media (max-width: 900px) {
	.gem-grid { grid-template-columns: repeat(3, minmax(180px, 1fr)); }
}
@media (max-width: 720px) {
	.recharge-fields-row,
	.pay-options {
		grid-template-columns: 1fr;
	}
	.recharge-submit {
		width: 100%;
		max-width: none;
	}
}
@media (max-width: 640px) {
	.gem-grid { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
	.gem-card { min-height: 110px; }
	.gem-card-top { padding-right: 0; }
	.gem-card--tagged .gem-card-top { padding-right: 4.2em; }
	.recharge-panel {
		padding: 14px 12px 16px;
	}
}

/* remove unused legal modal styles */

/* —— Game shell (unchanged fill behavior) —— */
html.is-fill, html.is-fill body.is-playing {
	position: fixed;
	inset: 0;
	width: var(--app-width);
	height: var(--app-height);
	max-width: 100%;
	max-height: 100%;
}
#gameContainer {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
body.is-playing #gameContainer {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
html.is-fill #gameContainer {
	position: fixed;
	left: 0;
	top: 0;
	width: var(--app-width);
	height: var(--app-height);
}
#gameContainer canvas {
	display: block;
	margin: 0;
	touch-action: none;
}
html.is-fill #gameContainer canvas {
	position: absolute;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	max-width: none !important;
	max-height: none !important;
}
#siteFooter { display: none; }
#orientation {
	display: none;
	position: fixed;
	z-index: 9999;
	inset: 0;
	background: #000;
	color: #cfd8c8;
	font-family: Arial, Helvetica, sans-serif;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	font-size: 20px;
	line-height: 1.5;
}
html.is-mobile .cc_banner-wrapper,
html.is-mobile .cc_container {
	display: none !important;
}
