.gender-filter-wrap {
	position: relative;
	color: var(--nav-link-color);
	margin-right: 20px;
	font-weight: 500;
}

.gender-filter-drop {
	position: absolute;
	width: 100%;
	top: 100%;
	left: 0;
	border-radius: 0 0 10px 10px;
	display: none;
	background: linear-gradient(
		180deg,
		rgba(255, 0, 255, 0.15) 0%,
		rgba(255, 0, 255, 0.15) 100%
	);
	z-index: 2;
}

.gender-filter-wrap.gender-open .gender-filter-drop {
	display: block;
}

.gender-filter-btn {
	cursor: pointer;
	padding: 5px 20px;
	min-width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: color 0.3s ease;
}
.gender-filter-btn:hover {
	color: #fff;
}

.gender-filter-drop a {
	color: #fff;
	display: flex;
	padding: 10px;
	align-items: center;
	gap: 5px;
	transition: color 0.3s ease;
	justify-content: center;
}

.gender-filter-wrap.gender-open .gender-filter-drop {
	display: block;
}

.gender-filter-wrap.gender-open .gender-filter-btn {
	background: linear-gradient(
		180deg,
		rgba(255, 0, 255, 0.15) 0%,
		rgba(255, 0, 255, 0.15) 100%
	);
	color: #fff;
	border-radius: 10px 10px 0 0;
}

/* 2 task */

.section-title {
	font-size: 2.5rem;
	margin-bottom: 50px;
}

.popular-models-section {
	padding: 20px 0;
}
.model-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--nav-link-color);
}
.model-card img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid rgba(255, 0, 255, 0.3);
	transition: border-color 0.3s ease;
}
.model-card:hover img {
	border-color: #ff00ff;
}
.model-no-photo {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background: rgba(255, 0, 255, 0.15);
	border: 2px solid rgba(255, 0, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #fff;
}
.model-name {
	font-size: 1.5rem;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	color: #fff;
}

.swiper-button-prev.swiper-button-prev,
.swiper-button-next.swiper-button-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	backdrop-filter: blur(10px);
	background: rgba(16, 7, 18, 0.7);
	transition: 0.3s;
}

.swiper-button-prev.swiper-button-prev:after,
.swiper-button-next.swiper-button-next:after {
	font-size: 14px;
	color: #7e5786;
	transition: 0.3s;
}

/* Introductions 2 */

.player-wrap {
	position: relative;
}

.skip-buttons {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	gap: 160px;
	z-index: 100;
	pointer-events: none;
}

.skip-btn {
	pointer-events: all;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 14px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s;
}

.player-wrap:hover .skip-btn {
	opacity: 1;
}
