:root {
	--mobile-bg: #f4efe4;
	--mobile-surface: rgba(255, 252, 245, 0.92);
	--mobile-ink: #1f1b18;
	--mobile-muted: #74695e;
	--mobile-accent: #b77928;
	--mobile-accent-strong: #8f4e13;
	--mobile-border: rgba(89, 62, 33, 0.12);
	--mobile-danger: #9f2d20;
	--mobile-success: #1f7a45;
	--mobile-shadow: 0 18px 44px rgba(77, 51, 21, 0.12);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background:
		linear-gradient(180deg, rgba(20, 16, 10, 0.1), rgba(20, 16, 10, 0.04));
	color: var(--mobile-ink);
	font-family: "Kanit", sans-serif;
	min-height: 100%;
}

body.mobile-app {
	display: flex;
	justify-content: center;
	padding: 0;
}

body.mobile-modal-open {
	overflow: hidden;
}

.mobile-loading {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.mobile-loading.is-visible {
	display: flex;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mobile-loading__backdrop {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 30%, rgba(255, 221, 156, 0.16), rgba(12, 8, 4, 0.82));
	backdrop-filter: blur(12px);
}

.mobile-loading__dialog {
	position: relative;
	width: min(100%, 300px);
	border-radius: 28px;
	padding: 26px 22px 22px;
	background: linear-gradient(180deg, rgba(20, 16, 10, 0.94), rgba(34, 24, 12, 0.92));
	border: 1px solid rgba(247, 205, 122, 0.26);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
	color: #fff4dc;
	text-align: center;
}

.mobile-loading__dialog::before {
	content: "";
	position: absolute;
	inset: 8px;
	border-radius: 22px;
	border: 1px solid rgba(255, 228, 180, 0.08);
	pointer-events: none;
}

.mobile-loading__ball {
	width: 82px;
	height: 82px;
	margin: 0 auto 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, rgba(255, 226, 148, 0.24), rgba(183, 121, 40, 0.04));
	box-shadow: 0 0 0 10px rgba(255, 233, 186, 0.04), 0 18px 36px rgba(0, 0, 0, 0.26);
}

.mobile-loading__ball-image {
	width: 64px;
	height: 64px;
	object-fit: contain;
	animation: mobile-loading-spin 1.8s linear infinite;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.mobile-loading__title {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.mobile-loading__subtitle {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 240, 214, 0.76);
}

.mobile-loading__progress {
	margin-top: 18px;
	height: 12px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 222, 164, 0.12);
}

.mobile-loading__progress-bar {
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #f1b854, #ffd989 52%, #f4b447);
	box-shadow: 0 0 16px rgba(255, 209, 120, 0.28);
	transition: width 0.22s ease;
}

.mobile-loading__percent {
	margin-top: 12px;
	font-size: 22px;
	font-weight: 700;
	color: #ffe2ab;
}

.swal-mobile-loading-popup {
	width: min(92vw, 344px) !important;
	border-radius: 32px !important;
	padding: 28px 22px 22px !important;
	background:
		radial-gradient(circle at top, rgba(255, 224, 154, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(12, 10, 8, 0.98), rgba(27, 19, 11, 0.96)) !important;
	border: 1px solid rgba(247, 205, 122, 0.24) !important;
	box-shadow: 0 32px 100px rgba(0, 0, 0, 0.46) !important;
	overflow: hidden !important;
}

.swal-mobile-loading-popup--fullscreen {
	width: min(94vw, 380px) !important;
	border-radius: 36px !important;
	padding: 32px 24px 24px !important;
}

.swal-mobile-loading {
	text-align: center;
	color: #fff4dc;
}

.swal-mobile-loading__crest {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffe8b7;
	background: rgba(255, 214, 130, 0.1);
	border: 1px solid rgba(255, 214, 130, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.swal-mobile-loading__ball-wrap {
	position: relative;
	margin-top: 16px;
}

.swal-mobile-loading__ball-wrap::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 132px;
	height: 132px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 203, 96, 0.24), rgba(255, 203, 96, 0) 70%);
	filter: blur(10px);
}

.swal-mobile-loading__ball {
	width: 82px;
	height: 82px;
	margin: 0 auto 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle, rgba(255, 226, 148, 0.24), rgba(183, 121, 40, 0.04));
	box-shadow: 0 0 0 10px rgba(255, 233, 186, 0.04), 0 18px 36px rgba(0, 0, 0, 0.26);
}

.swal-mobile-loading--withdraw .swal-mobile-loading__ball {
	width: 96px;
	height: 96px;
	background: linear-gradient(145deg, rgba(255, 219, 132, 0.32), rgba(184, 119, 40, 0.12));
	box-shadow: 0 0 0 12px rgba(255, 233, 186, 0.05), 0 22px 44px rgba(0, 0, 0, 0.3);
}

.swal-mobile-loading__ball-image {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
	animation: mobile-loading-spin 1.8s linear infinite;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.swal-mobile-loading--withdraw .swal-mobile-loading__ball-image {
	width: 76px;
	height: 76px;
	animation-duration: 1.3s;
}

.swal-mobile-loading__subtitle {
	margin-top: 14px;
	font-size: 13px;
	line-height: 1.75;
	color: rgba(255, 240, 214, 0.76);
}

.swal-mobile-loading__progress {
	margin-top: 18px;
	height: 12px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 222, 164, 0.12);
}

.swal-mobile-loading__progress-bar {
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #f1b854, #ffd989 52%, #f4b447);
	box-shadow: 0 0 16px rgba(255, 209, 120, 0.28);
	transition: width 0.22s ease;
}

.swal-mobile-loading__percent {
	margin-top: 12px;
	font-size: 22px;
	font-weight: 700;
	color: #ffe2ab;
}

.swal-mobile-loading__footnote {
	margin-top: 12px;
	font-size: 11px;
	line-height: 1.6;
	color: rgba(255, 236, 204, 0.58);
}

@keyframes mobile-loading-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.mobile-shell {
	width: 100%;
	max-width: 430px;
	min-height: 100vh;
	background: linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(247, 238, 224, 0.94));
	box-shadow: var(--mobile-shadow);
	position: relative;
	overflow-x: hidden;
}

.mobile-shell::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(36, 24, 12, 0.08)),
		linear-gradient(135deg, rgba(183, 121, 40, 0.08), transparent 28%),
		radial-gradient(circle at 85% 15%, rgba(94, 66, 36, 0.12), transparent 22%),
		radial-gradient(circle at 18% 38%, rgba(183, 121, 40, 0.1), transparent 22%);
	pointer-events: none;
}

.mobile-shell::after {
	content: "";
	position: absolute;
	inset: auto -120px 58px auto;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(183, 121, 40, 0.2) 0%, rgba(183, 121, 40, 0) 70%);
	filter: blur(10px);
	pointer-events: none;
}

.mobile-topbar {
	position: sticky;
	top: 0;
	z-index: 5;
	backdrop-filter: blur(16px);
	background: rgba(26, 19, 14, 0.72);
	border-bottom: 1px solid var(--mobile-border);
	padding: 18px 18px 14px;
}

.mobile-meta {
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	font-size: 11px;
	color: rgba(255, 241, 219, 0.8);
}

.mobile-meta a {
	color: var(--mobile-accent-strong);
	text-decoration: none;
	font-weight: 600;
}

.mobile-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mobile-brand__mark {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(183, 121, 40, 0.16) 0%, rgba(229, 192, 122, 0.3) 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(183, 121, 40, 0.28);
	overflow: hidden;
}

.mobile-brand__text h1 {
	margin: 0;
	font-size: 18px;
	line-height: 1.1;
	color: #fff5e1;
}

.mobile-brand__text p {
	margin: 4px 0 0;
	color: rgba(255, 235, 206, 0.76);
	font-size: 12px;
}

.mobile-brand__logo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.mobile-content {
	position: relative;
	padding: 20px 18px 128px;
	background: url("/assets/images/ilogo/bg.jpg") center top / cover no-repeat;
}

.mobile-hero,
.mobile-card,
.mobile-panel {
	background: var(--mobile-surface);
	border: 1px solid var(--mobile-border);
	border-radius: 24px;
	box-shadow: var(--mobile-shadow);
}

.mobile-hero {
	padding: 24px 20px;
	background:
		linear-gradient(160deg, rgba(18, 28, 35, 0.86), rgba(58, 42, 23, 0.74)),
		url("/assets/images/ilogo/header_bg.jpg") 50% 0 / cover no-repeat;
	color: #fff7ef;
}

.mobile-hero--rich {
	padding-bottom: 10px;
}

.mobile-hero__grid {
	display: grid;
	gap: 18px;
}

.mobile-hero__content {
	display: grid;
	gap: 14px;
}

.mobile-hero__art {
	display: flex;
	justify-content: center;
}

.mobile-hero__image {
	display: block;
	width: 100%;
	max-width: 280px;
	height: auto;
	filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.mobile-hero h2 {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.1;
}

.mobile-hero p {
	margin: 0;
	color: rgba(255, 245, 232, 0.84);
	font-size: 14px;
	line-height: 1.7;
}

.mobile-section {
	margin-top: 18px;
}

.mobile-section--top {
	margin-top: 0;
	margin-bottom: 16px;
}

.mobile-section__title {
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mobile-muted);
	margin: 0 0 10px;
}

.mobile-grid {
	display: grid;
	gap: 14px;
}

.mobile-card,
.mobile-panel {
	padding: 18px 16px;
}

.mobile-card h3,
.mobile-panel h3 {
	margin: 0 0 10px;
	font-size: 18px;
}

.mobile-card p,
.mobile-panel p,
.mobile-list li,
.mobile-note {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--mobile-muted);
}

.mobile-form {
	display: grid;
	gap: 14px;
}

.mobile-form label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 8px;
}

.mobile-input,
.mobile-select,
.mobile-button,
.mobile-linkbutton {
	width: 100%;
	border-radius: 16px;
	font-family: inherit;
}

.mobile-input,
.mobile-select {
	border: 1px solid rgba(85, 61, 36, 0.16);
	background: #fff;
	padding: 15px 14px;
	font-size: 15px;
	color: var(--mobile-ink);
}

.mobile-button,
.mobile-linkbutton {
	border: 0;
	padding: 15px 18px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
}

.mobile-button--primary,
.mobile-linkbutton--primary {
	background: linear-gradient(135deg, var(--mobile-accent-strong), var(--mobile-accent));
	color: #fff;
	box-shadow: 0 12px 26px rgba(143, 78, 19, 0.28);
}

.mobile-button--ghost,
.mobile-linkbutton--ghost {
	background: rgba(255, 255, 255, 0.72);
	color: var(--mobile-ink);
	border: 1px solid var(--mobile-border);
}

.mobile-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.mobile-actions--hero {
	margin-top: 18px;
}

.mobile-stat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px dashed rgba(89, 62, 33, 0.16);
}

.mobile-stat:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.mobile-stat__label {
	font-size: 13px;
	color: var(--mobile-muted);
}

.mobile-stat__value {
	font-size: 15px;
	font-weight: 600;
	text-align: right;
}

.mobile-list {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
}

.mobile-banner {
	border-radius: 22px;
	padding: 18px 16px;
	background: linear-gradient(135deg, rgba(183, 121, 40, 0.16), rgba(63, 43, 25, 0.06));
	border: 1px solid rgba(183, 121, 40, 0.2);
}

.mobile-ticker {
	display: grid;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 20px;
	background: rgba(255, 252, 247, 0.84);
	border: 1px solid var(--mobile-border);
}

.mobile-ticker__label {
	display: inline-flex;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(183, 121, 40, 0.16);
	color: var(--mobile-accent-strong);
	font-size: 12px;
	font-weight: 700;
}

.mobile-ticker__items {
	display: grid;
	gap: 8px;
	color: var(--mobile-muted);
	font-size: 13px;
	line-height: 1.6;
}

.mobile-ticker--marquee {
	gap: 12px;
	overflow: hidden;
}

.mobile-ticker__marquee {
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.mobile-ticker__track {
	display: inline-flex;
	align-items: center;
	gap: 28px;
	min-width: max-content;
	color: var(--mobile-muted);
	font-size: 13px;
	line-height: 1.5;
	animation: mobileTickerScroll 22s linear infinite;
	will-change: transform;
}

.mobile-ticker__track span::after {
	content: "•";
	margin-left: 28px;
	color: var(--mobile-accent-strong);
}

.mobile-promo-strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 82%;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 4px;
	scroll-snap-type: x proximity;
}

.mobile-promo-strip::-webkit-scrollbar {
	height: 6px;
}

.mobile-promo-strip::-webkit-scrollbar-thumb {
	background: rgba(143, 78, 19, 0.22);
	border-radius: 999px;
}

.mobile-promo-card,
.mobile-spotlight,
.mobile-game-card {
	background: rgba(255, 252, 245, 0.9);
	border: 1px solid var(--mobile-border);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--mobile-shadow);
}

.mobile-promo-card {
	scroll-snap-align: start;
}

.mobile-promo-card__body,
.mobile-game-card__body {
	padding: 14px 14px 16px;
	display: grid;
	gap: 8px;
}

.mobile-promo-card__body p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--mobile-muted);
	margin: 0;
}

.mobile-media {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: rgba(0, 0, 0, 0.04);
}

.mobile-stack {
	display: grid;
	gap: 14px;
}

.mobile-game-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.mobile-game-card__label {
	display: inline-flex;
	width: fit-content;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(183, 121, 40, 0.14);
	color: var(--mobile-accent-strong);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.mobile-game-card__body h3 {
	margin: 0;
	font-size: 15px;
}

.mobile-list--feature li {
	color: var(--mobile-ink);
}

.mobile-card--bank {
	display: grid;
	gap: 12px;
}

.mobile-bank-strip {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.mobile-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(183, 121, 40, 0.12);
	color: var(--mobile-accent-strong);
	font-size: 12px;
	font-weight: 600;
}

.mobile-badge--status {
	position: relative;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.mobile-badge__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
}

.mobile-badge--online {
	background: linear-gradient(135deg, rgba(35, 173, 90, 0.24), rgba(18, 96, 52, 0.72));
	color: #ebfff3;
	border: 1px solid rgba(115, 255, 171, 0.4);
	animation: mobileStatusGlowOnline 1.9s ease-in-out infinite;
}

.mobile-badge--online .mobile-badge__dot {
	background: #7bffab;
	box-shadow: 0 0 0 rgba(123, 255, 171, 0.6);
	animation: mobileStatusDotOnline 1.9s ease-in-out infinite;
}

.mobile-badge--offline {
	background: linear-gradient(135deg, rgba(219, 74, 55, 0.3), rgba(120, 28, 19, 0.78));
	color: #fff0ec;
	border: 1px solid rgba(255, 151, 136, 0.42);
	animation: mobileStatusGlowOffline 1.25s ease-in-out infinite;
}

.mobile-badge--offline .mobile-badge__dot {
	background: #ff9a8a;
	box-shadow: 0 0 0 rgba(255, 154, 138, 0.64);
	animation: mobileStatusDotOffline 1.25s ease-in-out infinite;
}

.mobile-empty,
.mobile-inline-message {
	padding: 14px 16px;
	border-radius: 16px;
	font-size: 14px;
}

.mobile-empty {
	background: rgba(255, 255, 255, 0.82);
	border: 1px dashed rgba(89, 62, 33, 0.18);
	color: var(--mobile-muted);
}

.mobile-inline-message {
	background: rgba(159, 45, 32, 0.08);
	color: var(--mobile-danger);
}

.mobile-inline-message--success {
	background: rgba(31, 122, 69, 0.1);
	color: var(--mobile-success);
}

.mobile-inline-message--warning {
	background: rgba(183, 121, 40, 0.13);
	color: var(--mobile-accent-strong);
}

.mobile-bottomnav {
	position: fixed;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	width: calc(100% - 24px);
	max-width: 406px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	padding: 10px;
	background: rgba(37, 28, 21, 0.94);
	border-radius: 24px;
	box-shadow: 0 16px 32px rgba(28, 20, 14, 0.3);
}

.mobile-bottomnav a {
	display: grid;
	gap: 4px;
	align-items: center;
	justify-items: center;
	color: rgba(255, 248, 239, 0.78);
	text-decoration: none;
	font-size: 11px;
	text-align: center;
	padding: 8px 6px;
	border-radius: 16px;
}

.mobile-bottomnav a i {
	font-size: 15px;
}

.mobile-bottomnav a.is-active {
	background: linear-gradient(135deg, var(--mobile-accent-strong), var(--mobile-accent));
	color: #fff;
}

.mobile-bottomnav--member {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 6px;
	padding: 10px 10px 12px;
}

.mobile-bottomnav--member a {
	padding-top: 10px;
	padding-bottom: 10px;
}

.mobile-bottomnav__play {
	position: relative;
	margin-top: 0;
	padding: 10px 8px 10px;
	background: transparent;
	color: #fff;
	border-radius: 18px;
	box-shadow: none;
	overflow: visible;
	min-height: 64px;
}

.mobile-bottomnav__play:hover,
.mobile-bottomnav__play:focus,
.mobile-bottomnav__play.is-launching {
	background: transparent;
	color: #fff;
}

.mobile-bottomnav__play strong {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	font-size: 11px;
	line-height: 1;
	text-shadow: 0 1px 0 rgba(120, 63, 8, 0.3);
}

.mobile-bottomnav__play-top {
	position: absolute;
	top: -42px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 10px 16px rgba(117, 62, 4, 0.24));
}

.mobile-bottomnav__play-ball {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 28px;
	background: rgba(24, 28, 52, 0.82);
	border: 1px solid rgba(34, 192, 255, 0.34);
	box-shadow: 0 10px 22px rgba(2, 32, 71, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mobile-bottomnav__play-ball-image {
	display: block;
	width: 82px;
	height: 82px;
	object-fit: contain;
}

.mobile-bottomnav__play.is-launching .mobile-bottomnav__play-top {
	animation: none;
}

.mobile-bottomnav__play.is-launching {
	animation: mobilePulseFast 0.46s ease-in-out forwards;
}

.mobile-table {
	display: grid;
	gap: 10px;
}

.mobile-table__row {
	padding: 14px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid var(--mobile-border);
	border-radius: 18px;
}

.mobile-table__row strong {
	display: block;
	margin-bottom: 6px;
}

.mobile-copy {
	margin-top: 10px;
}

@keyframes mobilePulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.92;
	}
	50% {
		transform: scale(1.08);
		opacity: 1;
	}
}

@keyframes mobileTickerScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes mobileStatusGlowOnline {
	0%,
	100% {
		box-shadow: 0 10px 24px rgba(11, 74, 39, 0.18), 0 0 0 rgba(86, 255, 152, 0.12);
		transform: translateY(0);
	}
	50% {
		box-shadow: 0 12px 28px rgba(11, 74, 39, 0.26), 0 0 18px rgba(86, 255, 152, 0.28);
		transform: translateY(-1px);
	}
}

@keyframes mobileStatusDotOnline {
	0% {
		box-shadow: 0 0 0 0 rgba(123, 255, 171, 0.6);
		transform: scale(1);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(123, 255, 171, 0);
		transform: scale(1.12);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(123, 255, 171, 0);
		transform: scale(1);
	}
}

@keyframes mobileStatusGlowOffline {
	0%,
	100% {
		box-shadow: 0 10px 24px rgba(88, 23, 17, 0.18), 0 0 0 rgba(255, 122, 104, 0.12);
		transform: translateY(0);
	}
	50% {
		box-shadow: 0 14px 30px rgba(88, 23, 17, 0.3), 0 0 20px rgba(255, 122, 104, 0.3);
		transform: translateY(-1px);
	}
}

@keyframes mobileStatusDotOffline {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 154, 138, 0.64);
		transform: scale(1);
		opacity: 1;
	}
	50% {
		box-shadow: 0 0 0 10px rgba(255, 154, 138, 0);
		transform: scale(1.18);
		opacity: 0.82;
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 154, 138, 0);
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes mobilePulseFast {
	0% {
		transform: scale(1);
		opacity: 0.92;
	}
	100% {
		transform: scale(1.18);
		opacity: 0.2;
	}
}

@keyframes mobileBallSpin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 430px) {
	.mobile-shell {
		max-width: 100%;
		box-shadow: none;
	}

	.mobile-content {
		padding-bottom: 134px;
	}

	.mobile-promo-strip {
		grid-auto-columns: 88%;
	}
}
