@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: #000;
	color: #fff;
    font-size: 18px;
	overflow-x: hidden;
}

/* MODAL */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.95);
	backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

.modal-content {
	text-align: center;
	max-width: 340px;
}

.modal-title {
	font-size: 22px;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.modal-text {
	opacity: 0.7;
	font-size: 14px;
	margin-bottom: 20px;
}

.modal-buttons {
	display: flex;
	gap: 10px;
}

.modal-btn {
	flex: 1;
	padding: 14px;
	border: none;
	background: #1a1a1a;
	color: #fff;
	border-radius: 12px;
}

/* STEPS */
.step {
	display: none;
	height: 100vh;
	position: relative;
	align-items: center;
	justify-content: center;
}

.step.active {
	display: flex;
}

/* BACKGROUND IMAGE */
.step::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: brightness(0.35) contrast(1.1);
	z-index: 0;
}

/* different images per step */
.step:nth-child(1)::before { background-image: url("../images/girl1.jpg"); }
.step:nth-child(2)::before { background-image: url("../images/girl2.jpg"); }
.step:nth-child(3)::before { background-image: url("../images/girl3.jpg"); }
.step:nth-child(4)::before { background-image: url("../images/girl4.jpg"); }
.step:nth-child(5)::before { background-image: url("../images/girl5.jpg"); }
.step:nth-child(6)::before { background-image: url("../images/girl6.jpg"); }
.step:nth-child(7)::before { background-image: url("../images/girl7.jpg"); }

.card {
	position: relative;
	z-index: 1;
	width: 90%;
	max-width: 360px;
	text-align: center;
}

h1,h2 {
	margin-bottom: 15px;
	letter-spacing: 1px;
}

p {
	opacity: 0.85;
	font-size: 18px;
	margin-bottom: 20px;
}

.answers {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.main-btn {
	padding: 14px;
	border-radius: 14px;
    font-size: 18px;
    width: 100%;
	border: 1px solid rgba(255,255,255,0.15);
	background: rgba(0,0,0,0.4);
	color: #fff;
	backdrop-filter: blur(10px);
}

.main-btn:hover {
	background: rgba(255,255,255,0.08);
}

.final-btn {
	display: block;
	margin-top: 20px;
	padding: 16px;
	border-radius: 14px;
	background: linear-gradient(to right, #fd94a6, #800080);
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}

/* RULES */
.rules p {
	font-size: 18px;
    text-align: left;
	margin: 6px 0;
	opacity: 0.8;
}