@font-face {
    font-family: "Montserrat";
    src:url("montserrat_reg.ttf") format("woff");
}	

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

body {
	background: #07070c;
	color: #fff;
	overflow-x: hidden;
}

/* soft neon atmosphere */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at 20% 20%, rgba(255, 0, 150, .25), transparent 40%),
		radial-gradient(circle at 80% 60%, rgba(120, 0, 255, .25), transparent 45%);
	pointer-events: none;
}

/* ======================
   WRAP
====================== */

.wrap {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.app {
	width: 420px;
}

/* ======================
   STEP SYSTEM
====================== */

.step {
	display: none;
	animation: pop .25s ease;
}

.step.active {
	display: block;
}

@keyframes pop {
	from {
		transform: scale(.96);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* ======================
   HEADLINE
====================== */

h1 {
	font-size: 38px;
	line-height: 1.05;
	margin-bottom: 14px;
}

p {
	opacity: .75;
	margin-bottom: 18px;
}

/* ======================
   GIRL FEED CARDS
====================== */

.feed {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.card {
	position: relative;
	height: 220px;
	border-radius: 18px;
	overflow: hidden;

	border: 1px solid rgba(255, 255, 255, .12);
	cursor: pointer;

	transition: .25s;
}

.card:hover {
	transform: scale(1.03);
}

/* images */
.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.85) contrast(1.1);
}

/* overlay text */
.info {
	position: absolute;
	bottom: 14px;
	left: 14px;
}

.name {
	font-size: 18px;
	font-weight: 700;
}

.status {
	font-size: 12px;
	opacity: .7;
}

/* ======================
   BUTTONS
====================== */

a {
	display: block;
	text-decoration: none;
	color: #fff;

	padding: 14px;
	border-radius: 14px;

	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);

	margin-bottom: 10px;

	transition: .2s;
}

a:hover {
	transform: translateX(6px);
	background: rgba(255, 255, 255, .1);
}

/* CTA */
.cta {
	background: #ff2d8f;
	border: none;
	font-weight: 700;
	text-align: center;
}

/* tag */
.tag {
	font-size: 12px;
	letter-spacing: 3px;
	opacity: .5;
	margin-bottom: 10px;
}