* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	padding: 25px 0 0;
}

.pagination-link,
.pagination-current {
	display: inline-block;
	min-width: 36px;
	height: 36px;
	line-height: 36px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #e6e6e6;
	text-align: center;
	font-size: 14px;
	color: #666;
	background-color: #fff;
	transition: all 0.2s ease;
}

.pagination-link:hover {
	background: linear-gradient(45deg, #ff1493, #ff69b4);
	border-color: #ff1493;
	color: #fff;
}

.pagination-current {
	background: linear-gradient(45deg, #ff1493, #ff69b4);
	border-color: #ff1493;
	color: #fff;
	font-weight: 700;
}

.pagination-prev,
.pagination-next {
	font-weight: 700;
	font-size: 18px;
}

.pagination-first,
.pagination-last {
	font-weight: 700;
}

.pagination-ellipsis {
	color: #999;
	min-width: 20px;
	text-align: center;
}

@media (max-width: 600px) {
	.pagination {
		gap: 4px;
		padding-top: 15px;
	}
	.pagination-link,
	.pagination-current {
		min-width: 32px;
		height: 32px;
		line-height: 32px;
		font-size: 13px;
		border-radius: 6px;
	}
}

@media (min-width: 1020px) {
	.pagination {
		padding-top: 30px;
	}
	.pagination-link:hover {
		box-shadow: 0 4px 10px rgba(255, 20, 147, 0.25);
		transform: translateY(-1px);
	}
}

body {
	font-family: Arial, sans-serif;
	background-color: #f8f8f8;
	color: #333;
	line-height: 1.4;
}

a {
	text-decoration: none;
}

.main-header {
	background-color: #fff;
	color: #333;
	padding: 12px 0;
	margin: 0 20px;
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid #eee;
}

.header-container {
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 2px;
}

.p-text {
	background: linear-gradient(45deg, #ff1493, #ff69b4);
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 20px;
}

.b-text {
	color: #333;
	font-size: 28px;
}

.dot {
	color: #ff1493;
	font-size: 32px;
}

.z-text {
	color: #333;
	font-size: 28px;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.search-container {
	display: flex;
	align-items: center;
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 25px;
	padding: 8px 15px;
	min-width: 300px;
}

.search-input {
	border: none;
	outline: none;
	flex: 1;
	font-size: 14px;
	color: #666;
	background-color: #f8f8f8;
}

.search-input::placeholder {
	color: #aaa;
}

.search-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	margin-left: 10px;
}

.content-nav-tabs {
	display: flex;
	gap: 5px;
	margin-bottom: 10px;
	margin-top: 20px;
}

.content-nav-tab {
	background: none;
	border: none;
	padding: 8px 16px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	transition: all 0.3s ease;
}

.content-nav-tab:hover {
	background-color: #e0e0e0;
	color: #333;
}

.content-nav-tab.active {
	background-color: #333;
	color: white;
}

.main-container {
	margin: 0 auto;
	padding: 20px;
	display: flex;
	gap: 30px;
}

.sidebar {
	width: 240px;
	flex-shrink: 0;
}

.filter-section {
	background-color: white;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-section h3 {
	font-size: 16px;
	margin-bottom: 15px;
	color: #333;
	font-weight: bold;
}

.filter-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.filter-option {
	display: block;
	font-size: 14px;
	color: #555;
	cursor: pointer;
	padding: 6px 0;
	transition: color 0.3s ease;
}

.filter-option:hover {
	color: #ff1493;
}

#categories .filter-option.active {
	color: #ff1493;
	font-weight: bold;
}

#search-results {
	margin-bottom: 20px;
}

.tags-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 15px;
	padding: 4px 12px;
	font-size: 12px;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.tag:hover {
	background-color: #ff1493;
	color: white;
	border-color: #ff1493;
}

.main-content {
	flex: 1;
	min-width: 0;
}

.section-header {
	margin-bottom: 15px;
}

.section-header h2 {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-bottom: 8px;
}

.section-header p {
	font-size: 14px;
	color: #666;
}

.live-cams-section {
	margin-bottom: 40px;
}

.models-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.model-card {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.model-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.model-image {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

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

.new-indicator {
	position: absolute;
	top: 10px;
	left: 10px;
	background: linear-gradient(45deg, #ff1493, #ff69b4);
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: bold;
}

.viewers {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: bold;
}

.model-info {
	padding: 15px;
}

.model-info h4 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}

.model-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.model-tags span {
	background-color: #f0f0f0;
	color: #666;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 11px;
}

.show-more {
	text-align: center;
	width: 30%;
	margin: 0 auto;
}

#show-more {
	display: block;
	cursor: pointer;
	padding: 10px;
	border-radius: 5px;
	background: #fe0088;
	color: white;
}
#show-more:hover {
	background-color: #ff1493;
}

.media-wrapper {
	clear: both;
	overflow: hidden;
	margin-top: 10px;
}

#iframe {
	display: flex;
	margin: 0 auto 10px;
}

.video-area {
	overflow: hidden;
	text-align: center;
}

.video-area video {
	width: 100%;
	height: auto;
}

.video-info-wrap {
	overflow: hidden;
	padding-bottom: 10px;
}

.model-info-full {
	line-height: 20px;
	padding-top: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.model-info-full-item {
	display: flex;
}
.model-info-full-label {
	font-weight: bold;
	min-width: 180px;
}
.model-info-full-tags {
	display: flex;
}
.model-info-full-tags a {
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 15px;
	padding: 4px 12px;
	font-size: 12px;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.model-info-full-tags a:hover {
	background-color: #ff1493;
	color: white;
	border-color: #ff1493;
}

.model-info-full-tags-value {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-left: -5px;
}

.chat-wrp {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 0;
	margin: 5px 0 10px 0;
}

.chat {
	flex-grow: 1;
	flex-shrink: 1;
	min-width: 50px;
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 8px 15px;
	font-size: 14px;
	color: #666;
}

.chat:focus {
	outline: none;
}

.chat::placeholder {
	color: #666;
	opacity: 1;
}

.chat::-webkit-input-placeholder {
	color: #666;
}

.chat::-moz-placeholder {
	color: #666;
	opacity: 1;
}

.chat:-ms-input-placeholder {
	color: #666;
}

.chat:-moz-placeholder {
	color: #666;
	opacity: 1;
}

.private-chat-button,
.send-button,
.profile-button {
	display: block;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 5px;
	background: #fe0088;
	color: white;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
}
.private-chat-button:hover,
.send-button:hover,
.profile-button:hover {
	background-color: #ff1493;
}

.related-models {
	text-align: center;
	margin-bottom: 20px;
}

@media (max-width: 1200px) {
	.main-container {
		padding: 15px;
		gap: 20px;
	}

	.models-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 15px;
	}
}

@media (max-width: 992px) {
	.search-container {
		min-width: 250px;
	}
}

@media (max-width: 768px) {
	.main-header {
		margin: 0;
	}
	.section-header {
		text-align: center;
	}
	.main-container {
		flex-direction: column;
		gap: 20px;
	}

	.sidebar {
		width: 100%;
		order: 2;
	}

	.main-content {
		order: 1;
	}

	.header-container {
		flex-direction: column;
		gap: 15px;
		padding: 0 15px;
	}

	.header-right {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		gap: 10px;
	}

	.search-container {
		min-width: 200px;
		flex: 1;
	}

	.models-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 12px;
	}

	.filter-section {
		padding: 15px;
	}

	.content-nav-tabs {
		justify-content: center;
		font-weight: bold;
	}
}

@media (max-width: 576px) {
	.main-header {
		margin: 0;
	}
	.section-header {
		text-align: center;
	}
	.main-container {
		padding: 10px;
	}

	.logo {
		font-size: 24px;
	}

	.p-text {
		font-size: 18px;
	}

	.b-text,
	.z-text {
		font-size: 24px;
	}

	.search-container {
		min-width: 150px;
	}

	.header-buttons {
		flex-wrap: wrap;
		gap: 8px;
	}

	.models-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		gap: 10px;
	}

	.model-image {
		height: 150px;
	}

	.model-info {
		padding: 12px;
	}

	.section-header h2 {
		font-size: 18px;
	}

	.content-nav-tab {
		padding: 10px 20px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.main-header {
		margin: 0;
	}
	.section-header {
		text-align: center;
	}
	.header-container {
		padding: 0 10px;
	}

	.models-grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.model-card {
		border-radius: 8px;
	}

	.model-image {
		height: 120px;
	}

	.model-info {
		padding: 10px;
	}

	.model-info h4 {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.model-tags span {
		font-size: 10px;
		padding: 2px 6px;
	}

	.content-nav-tabs {
		gap: 3px;
	}

	.content-nav-tab {
		padding: 8px 16px;
		font-size: 14px;
	}

	.chat-wrp {
		font-size: small;
	}
}

@media (max-width: 360px) {
	.main-header {
		margin: 0;
	}
	.section-header {
		text-align: center;
	}
	.main-container {
		padding: 8px;
	}

	.models-grid {
		grid-template-columns: 1fr;
	}

	.header-right {
		flex-direction: column;
		align-items: stretch;
	}

	.search-container {
		min-width: auto;
	}

	.chat-wrp {
		font-size: small;
	}
}

.footer {
	background-color: #fff;
	border-top: 1px solid #eee;
	margin-top: 40px;
	padding: 40px 0 20px 0;
	display: flex;
	justify-content: center;
}

.footer .content {
	max-width: 1400px;
	padding: 0 40px;
}

.p-searches {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}

.footer-links-1 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 30px;
}

.footer-links-1.ft-l {
	margin-bottom: 40px;
}

.f-l-inner {
	display: flex;
	flex-direction: column;
}

.f-l-inner a {
	color: #666;
	font-size: 14px;
	text-decoration: none;
	padding: 4px 0;
	transition: color 0.3s ease;
}

.f-l-inner a:hover {
	color: #ff1493;
}

.f-l-inner.ft-bl {
	text-align: center;
	grid-column: 1 / -1;
}

.f-l-inner.ft-bl span {
	color: #666;
	font-size: 14px;
	margin-right: 10px;
}

.footer-wrapper {
	background-color: #f8f8f8;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

.copyright {
	text-align: center;
	color: #999;
	font-size: 12px;
	padding: 15px 0;
}

.footer-wrapper {
	text-align: start;
}

.ft-l {
	margin: 0 auto;
	margin-bottom: 20px;
}

.ft-bl {
	display: flex;
	gap: 10px;
	margin: 0 auto;
	margin-top: 20px;
}

.p-searches {
	font-weight: bold;
	display: block;
	font-size: 13px;
	position: relative;
}

@media (max-width: 992px) {
	.footer-links-1 {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 576px) {
	.footer {
		padding: 30px 0 15px 0;
	}

	.footer .content {
		padding: 0 15px;
	}

	.footer-links-1 {
		grid-template-columns: 1fr;
		gap: 15px;
		text-align: center;
	}

	.p-searches {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.footer-wrapper {
		padding: 15px;
		margin-bottom: 15px;
	}
}
