* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif
}

body {
	background: #1a1a2e;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow-x: hidden
}

.page-container {
	position: relative;
	width: 375px;
	max-width: 100%;
	height: 812px;
	max-height: 100vh;
	overflow: hidden;
	background: #1a1a2e;
	border-radius: 0;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.5)
}

.bg-slideshow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	animation: bgFade 12s infinite
}

.slide1 {
	background-image: url('./4.png');
	animation-delay: 0s
}

.slide2 {
	background-image: url('./1.png');
	animation-delay: 6s
}

@keyframes bgFade {

	0%,
	25% {
		opacity: 1
	}

	33%,
	91% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.85) 50%, rgba(26, 26, 46, 0.95) 100%);
	z-index: 1
}

.content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 40px 20px 20px;
	height: 100%;
	overflow-y: auto;
	scrollbar-width: none
}

.content::-webkit-scrollbar {
	display: none
}

.app-logo {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	margin-bottom: 10px;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 4px 20px rgba(255, 75, 125, 0.3)
}

.brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 12px
}

.flame-icon {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 6px
}

.flame {
	font-size: 36px;
	animation: flicker 0.8s infinite alternate
}

.heart {
	font-size: 28px;
	color: #ff4b7d;
	animation: pulse 1.2s infinite
}

@keyframes flicker {
	0% {
		transform: scale(1);
		opacity: 1
	}

	100% {
		transform: scale(1.1);
		opacity: 0.85
	}
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.15)
	}
}

.app-name {
	font-size: 32px;
	font-weight: 800;
	background: linear-gradient(135deg, #ff4b7d, #ff7a5c, #ffb347);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: none;
	letter-spacing: 1px
}

.tagline {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-top: 2px
}

.match-banner {
	margin: 8px 0 14px;
	background: rgba(255, 75, 125, 0.15);
	border: 1px solid rgba(255, 75, 125, 0.3);
	border-radius: 30px;
	padding: 6px 18px;
	backdrop-filter: blur(10px)
}

.match-counter {
	display: flex;
	align-items: center;
	gap: 8px
}

.live-dot {
	width: 8px;
	height: 8px;
	background: #00ff88;
	border-radius: 50%;
	display: inline-block;
	animation: livePulse 1.5s infinite
}

@keyframes livePulse {

	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 6px #00ff88
	}

	50% {
		opacity: 0.5;
		box-shadow: 0 0 12px #00ff88
	}
}

.match-text {
	font-size: 13px;
	color: #fff
}

.match-text strong {
	color: #ff4b7d
}

.card-stack {
	display: flex;
	gap: 12px;
	margin: 6px 0 14px;
	width: 100%;
	justify-content: center;
	padding: 0 10px
}

.card {
	width: 140px;
	height: 190px;
	border-radius: 16px;
	overflow: hidden;
	background: #2a2a4a;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s;
	position: relative
}

.card:hover {
	transform: translateY(-4px)
}

.card-image {
	width: 100%;
	height: 100%;
	position: relative
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

.card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 10px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
	display: flex;
	flex-direction: column;
	gap: 2px
}

.user-name {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 4px
}

.verified-badge {
	display: inline-block;
	background: #1e90ff;
	color: #fff;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	font-size: 10px;
	line-height: 16px;
	text-align: center
}

.user-distance {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7)
}

.action-hint {
	margin: 2px 0 10px
}

.swipe-indicator {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.08);
	padding: 6px 18px;
	border-radius: 20px
}

.arrow-left,
.arrow-right {
	color: #ff4b7d;
	font-size: 16px;
	animation: arrowMove 1.5s infinite
}

.arrow-left {
	animation-delay: 0s
}

.arrow-right {
	animation-delay: 0.75s
}

@keyframes arrowMove {

	0%,
	100% {
		transform: translateX(0)
	}

	50% {
		transform: translateX(4px)
	}
}

.hint-text {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 1px
}

.features {
	display: flex;
	gap: 16px;
	margin: 4px 0 16px;
	width: 100%;
	justify-content: center
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: rgba(255, 255, 255, 0.06);
	padding: 10px 14px;
	border-radius: 12px;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.05)
}

.feature-icon {
	font-size: 22px
}

.feature-text {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap
}

.download-guide {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 10px;
	animation: bounce 2s infinite
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-5px)
	}
}

.download-btn {
	width: 220px;
	max-width: 80%;
	padding: 14px 0;
	font-size: 18px;
	font-weight: 800;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, #ff4b7d, #ff7a5c);
	border: none;
	border-radius: 50px;
	box-shadow: 0 8px 30px rgba(255, 75, 125, 0.5);
	cursor: pointer;
	transition: all 0.3s;
	letter-spacing: 2px;
	position: relative;
	overflow: hidden
}

.download-btn::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s
}

.download-btn:hover::after {
	opacity: 1
}

.download-btn:active {
	transform: scale(0.96)
}

.sub-text {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 12px;
	letter-spacing: 0.5px
}