* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	overflow: hidden;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #121212;
	color: #ffffff;
	overflow-x: hidden;
}

.page {
	display: none;
	min-height: 100vh;
	padding: 40px 20px 30px;
	position: relative;
}

.page.active {
	display: block;
}

.container {
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: calc(100vh - 70px);
}

.logo {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo svg {
	filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.heading {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 40px;
	color: #ffffff;
}

.heading .highlight {
	color: #f9bb18;
}

.language-list {
	width: 100%;
	margin-bottom: auto;
}

.language-item {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	margin-bottom: 12px;
	background: #121212;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 32px;
	cursor: pointer;
	transition: all 0.3s;
}

.language-item.active {
	border: 1px solid #f9bb18;
}

.flag {
	margin-right: 12px;
	width: 20px;
	height: 20px;
	object-fit: contain;
	object-position: center;
	overflow: hidden;
	border-radius: 4px;
}

.language-text {
	flex: 1;
	font-size: 16px;
	color: #ffffff;
}

.radio {
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	position: relative;
}

.radio.checked {
	border-color: #f9bb18;
	background-color: #f9bb18;
	color: #121212;
}

.radio.checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: black;
	font-size: 14px;
	font-weight: bold;
}

.illustration {
	position: relative;
	width: 100%;
	height: 200px;
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.illustration::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.illustration::after {
	content: '';
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 80px;
	background: linear-gradient(180deg, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0.2) 100%);
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
	z-index: 1;
	animation: energyFlow 2s ease-in-out infinite;
}

@keyframes energyFlow {
	0%,
	100% {
		opacity: 0.6;
		transform: translateX(-50%) scaleY(1);
	}
	50% {
		opacity: 1;
		transform: translateX(-50%) scaleY(1.1);
	}
}

.ufo {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.ufo-body {
	width: 60px;
	height: 30px;
	background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
	border-radius: 50px;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
	position: relative;
}

.ufo-body::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 20px;
	background: radial-gradient(ellipse, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
	border-radius: 50%;
}

.lightning-bolt {
	font-size: 24px;
	color: #f9bb18;
	text-align: center;
	margin-top: -10px;
	filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.charging-station {
	position: absolute;
	left: 20%;
	bottom: 40px;
	z-index: 2;
}

.station-body {
	width: 40px;
	height: 80px;
	background: linear-gradient(180deg, #ff6600 0%, #333 50%);
	border-radius: 8px;
	position: relative;
}

.station-icon {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 20px;
	color: #f9bb18;
}

.station-hose {
	width: 4px;
	height: 30px;
	background: linear-gradient(180deg, #f9bb18 0%, #ffaa00 100%);
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
	border-radius: 2px;
}

.station-hose::after {
	content: '';
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: #f9bb18;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.wallet-illustration {
	position: absolute;
	right: 20%;
	bottom: 30px;
	z-index: 2;
}

.wallet-body {
	width: 70px;
	height: 50px;
	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
	border-radius: 8px;
	position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.wallet-body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
	border-radius: 8px;
	pointer-events: none;
}

.wallet-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.benefits-illustration {
}

.wallet-security {
	position: absolute;
	right: 15%;
	bottom: 20px;
	z-index: 1;
}

.wallet-body-secure {
	width: 65px;
	height: 48px;
	background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
	border-radius: 8px;
	position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.wallet-logo-secure {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.steps-list {
	width: 100%;
	max-width: 320px;
	margin-bottom: auto;
}

.step-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
	min-height: 40px;
}

.step-number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f9bb18;
	color: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
	flex-shrink: 0;
	margin-right: 16px;
}

.step-line {
	position: absolute;
	left: 15px;
	top: 32px;
	width: 2px;
	height: 40px;
	border-left: 2px dashed #f9bb1888;
}

.step-item:last-child .step-line {
	display: none;
}

.step-text {
	flex: 1;
	font-size: 16px;
	line-height: 1.25;
	color: #ffffff;
}

.step-text .highlight {
	color: #f9bb18;
}

.benefits-list {
	width: 100%;
	max-width: 320px;
	margin-bottom: auto;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.benefit-item .highlight {
	color: #f9bb18;
}

.checkmark {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #f9bb18;
	color: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	flex-shrink: 0;
	margin-right: 12px;
	margin-top: 2px;
}

.benefit-item p {
	flex: 1;
	font-size: 16px;
	line-height: 1.5;
	color: #ffffff;
}

.security-text {
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
	color: #ffffff;
	max-width: 320px;
	margin-bottom: 64px;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}

.dot {
	width: 14px;
	height: 6px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.2);
	transition: all 0.3s;
}

.dot.visited {
	background: #f9bb18;
	width: 14px;
}
.dot.active {
	background: #f9bb18;
	width: 24px;
}

.btn-next {
	width: 100%;
	padding: 16px;
	background: linear-gradient(to right, #020202, #1d1d1d);
	border: 1px solid #f9bb18;
	border-radius: 999px;
	color: #f9bb18;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-next:hover {
	background: rgba(255, 215, 0, 0.1);
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-next:active {
	transform: scale(0.98);
}

.btn-primary {
	width: 100%;
	max-width: 320px;
	padding: 14px 16px;
	background: #f9bb18;
	border: none;
	border-radius: 999px;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-primary:hover {
	background: #ffaa00;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-primary:active {
	transform: scale(0.98);
}

@media (max-width: 480px) {
	.page {
		padding: 30px 16px 24px;
	}

	.heading {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.illustration {
		height: 180px;
		margin-bottom: 30px;
	}

	.benefits-illustration {
		margin-bottom: 25px;
	}

	.security-illustration {
		height: 160px;
		margin-bottom: 25px;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.page.active {
	animation: fadeIn 0.4s ease-out;
}

.main-page {
	padding: 20px 16px;
	gap: 16px;
	justify-content: flex-start;
	align-items: stretch;
}

.service-card {
	display: flex;
	align-items: center;
	padding: 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	margin-bottom: 12px;
	cursor: pointer;
	transition: all 0.3s;
}

.service-card:active {
	transform: scale(0.98);
	background: rgba(255, 255, 255, 0.05);
}

.service-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #f9bb18;
	margin-right: 12px;
	flex-shrink: 0;
}

.service-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.service-title {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
}

.service-subtitle {
	font-size: 14px;
	color: #f9bb18;
}

.service-arrow {
	font-size: 24px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 8px;
}

.wallet-status-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	margin: 24px 0;
	gap: 16px;
}

.btn-add-wallet {
	padding: 10px 20px;
	background: #f9bb18;
	border: none;
	border-radius: 999px;
	color: #121212;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	flex-shrink: 0;
}

.btn-add-wallet:active {
	transform: scale(0.95);
	background: #ffaa00;
}

.wallet-balance {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex: 1;
}

.balance-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.balance-value {
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
}

.battery-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.balance-warning {
	font-size: 12px;
	color: #ff4444;
	text-align: right;
	white-space: nowrap;
}

.nav-bar {
	display: flex;
	justify-content: space-around;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.3s;
}

.nav-item:active {
	transform: scale(0.95);
}

.nav-icon {
	font-size: 24px;
	color: #f9bb18;
}

.nav-label {
	font-size: 12px;
	color: #ffffff;
}

.wallet-bottom {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	width: 100%;
}

.btn-faq {
	width: 48px;
	height: 48px;
	padding: 0;
	background: #121212;
	border: 1px solid #f9bb18;
	border-radius: 12px;
	color: #f9bb18;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	box-shadow: 0 0 10px rgba(249, 187, 24, 0.3);
}

.btn-faq::before {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 10px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #f9bb18;
	z-index: 1;
}

.btn-faq::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 11px;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #121212;
	z-index: 2;
}

.btn-faq:active {
	transform: scale(0.95);
	background: rgba(249, 187, 24, 0.1);
}

.btn-faq span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-style: italic;
	position: relative;
	z-index: 3;
}

.btn-unlimited {
	flex: 1;
	padding: 16px;
	background: linear-gradient(to right, #020202, #1d1d1d);
	border: 1px solid #f9bb18;
	border-radius: 999px;
	color: #f9bb18;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 10px rgba(249, 187, 24, 0.3);
}

.btn-unlimited:active {
	transform: scale(0.98);
	background: rgba(249, 187, 24, 0.1);
}

.btn-unlimited span {
	color: #f9bb18;
}

@media (max-width: 480px) {
	.main-page {
		padding: 16px 12px;
		gap: 12px;
	}

	.service-card {
		padding: 14px;
		margin-bottom: 10px;
	}

	.service-icon {
		width: 36px;
		height: 36px;
		font-size: 20px;
		margin-right: 10px;
	}

	.service-title {
		font-size: 15px;
	}

	.service-subtitle {
		font-size: 13px;
	}

	.wallet-status-bar {
		padding: 14px;
		margin: 20px 0;
	}

	.btn-add-wallet {
		padding: 8px 16px;
		font-size: 13px;
	}

	.balance-value {
		font-size: 20px;
	}

	.nav-bar {
		padding: 16px 0;
	}

	.nav-icon {
		font-size: 22px;
	}

	.nav-label {
		font-size: 11px;
	}

	.btn-faq {
		width: 44px;
		height: 44px;
		font-size: 16px;
	}

	.btn-faq::before {
		bottom: -5px;
		left: 9px;
		border-left-width: 5px;
		border-right-width: 5px;
		border-top-width: 5px;
	}

	.btn-faq::after {
		bottom: -4px;
		left: 10px;
		border-left-width: 4px;
		border-right-width: 4px;
		border-top-width: 4px;
	}

	.btn-unlimited {
		padding: 14px;
		font-size: 15px;
	}
}

.faq-page {
	padding: 20px 16px;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 24px;
	overflow-y: auto;
	max-height: 100vh;
}

.faq-scroll-container {
	max-height: 80vh;
	overflow-y: auto;
	padding-right: 10px;
}

.faq-intro {
	margin-bottom: 8px;
}

.faq-intro p {
	font-size: 16px;
	line-height: 1.6;
	color: #ffffff;
	margin-bottom: 12px;
}

.faq-intro p:last-child {
	margin-bottom: 0;
}

.faq-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s;
}

.faq-header:active {
	opacity: 0.7;
}

.faq-title {
	font-size: 16px;
	color: #ffffff;
	flex: 1;
	text-align: left;
	line-height: 1.4;
}

.faq-lightning {
	color: #f9bb18;
	margin-right: 4px;
	font-size: 18px;
}

.faq-chevron {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.5);
	margin-left: 12px;
	transition: transform 0.3s;
	flex-shrink: 0;
	height: 12px;
	vertical-align: bottom;
	line-height: 0;
	user-select: none;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.faq-content p {
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	padding-bottom: 16px;
	margin: 0;
}

.btn-back {
	width: 100%;
	padding: 14px 16px;
	background: linear-gradient(to right, #020202, #1d1d1d);
	border: 1px solid #f9bb18;
	border-radius: 999px;
	color: #f9bb18;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 24px;
}

.btn-back:active {
	transform: scale(0.98);
	background: rgba(249, 187, 24, 0.1);
}

@media (max-width: 480px) {
	.faq-page {
		padding: 16px 12px;
		gap: 20px;
	}

	.faq-intro p {
		font-size: 15px;
		margin-bottom: 10px;
	}

	.faq-header {
		padding: 14px 0;
	}

	.faq-title {
		font-size: 15px;
	}

	.faq-content p {
		font-size: 14px;
		padding-bottom: 14px;
	}

	.btn-back {
		padding: 12px 14px;
		font-size: 15px;
		margin-top: 20px;
	}
}

.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	padding: 20px;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: #1a1a1a;
	border: 1px solid rgba(249, 187, 24, 0.3);
	border-radius: 16px;
	max-width: 400px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transform: scale(0.9);
	transition: transform 0.3s ease;
	box-shadow: 0 0 30px rgba(249, 187, 24, 0.2);
}

.modal-overlay.active .modal-content {
	transform: scale(1);
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
}

.modal-close {
	width: 32px;
	height: 32px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s;
	line-height: 1;
	padding: 0;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.modal-close:active {
	transform: scale(0.9);
}

.modal-body {
	padding: 24px 20px;
	flex: 1;
	overflow-y: auto;
}

.modal-text {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	text-align: center;
}

.modal-footer {
	padding: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-modal-connect {
	width: 100%;
	padding: 14px 16px;
	background: #f9bb18;
	border: none;
	border-radius: 999px;
	color: #121212;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-modal-connect:hover {
	background: #ffaa00;
	box-shadow: 0 0 20px rgba(249, 187, 24, 0.4);
}

.btn-modal-connect:active {
	transform: scale(0.98);
}

@media (max-width: 480px) {
	.modal-overlay {
		padding: 16px;
	}

	.modal-content {
		max-width: 100%;
		border-radius: 12px;
	}

	.modal-header {
		padding: 16px;
	}

	.modal-title {
		font-size: 18px;
	}

	.modal-close {
		width: 28px;
		height: 28px;
		font-size: 24px;
	}

	.modal-body {
		padding: 20px 16px;
	}

	.modal-text {
		font-size: 15px;
	}

	.modal-footer {
		padding: 16px;
	}

	.btn-modal-connect {
		padding: 12px 14px;
		font-size: 15px;
	}
}
