* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
:root {
	--primary-color: #e7effc;
	--secondary-color: #ff6600;
	--background-color: #f5f5f5;
	--text-color: #111827;
	--font-family: 'Inter', sans-serif;
	--font-size-base: 16px;
}

html {
	overflow-x: hidden;
}
body {
	background-image: url('./pngs/BG.png');
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	color: var(--primary-color);
	font-family: var(--font-family);
	font-size: 16px;
}
.container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	width: 100%;
	height: 80px;
	margin: 30px 0;
	padding: 0 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_logo {
	display: block;
	width: 100px;
}
.header_logo img {
	width: 100%;
	height: auto;
}
.header_navigation {
	display: flex;
	gap: 50px;
}
.header_navigation li a {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	transition: color 0.3s ease;
}
.header_navigation li a:hover {
	color: var(--secondary-color);
}
/* Header End */

/* Description */
.description {
	margin: 60px 0;
	padding: 0 60px;
}
.description .container {
	padding: 0 60px;
}
.description_heading {
	width: 60%;
	font-size: 56px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--secondary-color);
	margin-bottom: 20px;
}
.description_text {
	margin: 30px 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}
.description_text p {
	margin-bottom: 25px;
}
/* Description End */

/* Casino Brands */
.brands {
	width: 100%;
	margin-top: 80px;
	padding: 55px 60px 20px;
	background-color: var(--primary-color);
	border-radius: 15px 15px 0 0;
}
.brands_heading {
	font-size: 48px;
	font-weight: 700;
	color: var(--secondary-color);
}
.brands_cards {
	margin-top: 75px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.brands_cards-item {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
	padding: 40px 40px 55px;
	display: flex;
	border-radius: 15px;
	background-color: var(--primary-color);
	box-shadow: 0 0 15px rgba(17, 24, 39, 0.2);
}
.brands_cards-item:first-child {
	/* border: 3px solid var(--secondary-color); */
	box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}
.brands_cards-item:first-child::after {
	content: '';
	position: absolute;
	width: 75px;
	height: 75px;
	top: -15px;
	right: -20px;
	background-image: url(./pngs/TOP-1.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	pointer-events: none;
}
/* Only First Card */
/* Only First Card End*/
.cards_item-description {
	display: flex;
	align-items: center;
	color: var(--text-color);
}
.cards_item-logo {
	max-width: 120px;
}
.cards_item-logo img {
	width: 100%;
	height: auto;
}
.cards_item-info {
	margin-left: 40px;
}
.cards_item-heading {
	margin-bottom: 20px;
	font-size: 42px;
	font-weight: 700;
}
.cards_item-bonus {
	max-width: 700px;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.3;
}
.cards_item-action {
	min-width: 215px;
}
.cards_item-rating {
	margin-bottom: 35px;
	color: var(--text-color);
	font-size: 28px;
	font-weight: 600;
	text-align: center;
}
.cards_item-rating::before {
	content: '★★★★★';
	color: var(--secondary-color);
	font-size: 32px;
	position: relative;
	top: 0;
	margin-right: 10px;
}
.cards_item-button {
	padding: 15px 40px;
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	background-color: var(--secondary-color);
	border: 3px solid var(--secondary-color);
	border-radius: 13px;
}
.cards_item-button:hover {
	color: var(--text-color);
	background-color: var(--primary-color);
	border: 3px solid var(--secondary-color);
	box-shadow: 0px 0px 15px rgba(17, 24, 39, 0.5);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
/* Casino Brands End */

/* Payment Methods */
.payments {
	padding: 20px 0 40px;
	background-color: var(--primary-color);
	border-radius: 0 0 15px 15px;
}
.payments_heading {
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	text-align: center;
}
.payments_methods {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.payments_methods-item {
	max-width: 80px;
}
.payments_methods-item img {
	width: 100%;
	height: auto;
}
/* Payment Methods End */

/* Footer */
.footer {
	margin-top: 50px;
	padding: 0 60px;
}
.navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.navigation_logo {
	display: block;
	width: 100px;
}
.navigation_logo img {
	width: 100%;
	height: auto;
}
.footer_navigation {
	display: flex;
	align-items: center;
	gap: 50px;
}
.footer_navigation li a {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
	transition: color 0.3s ease;
}
.footer_navigation li a:hover {
	color: var(--secondary-color);
}
.license {
	margin-top: 40px;
}
.license_text {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 400;
	text-align: center;
}
.license_logo {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.license_logo div {
	padding: 5px 10px;
	width: 150px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-color);
	border-radius: 13px;
}
.license_logo img {
	width: 100%;
	height: auto;
}
.copyright {
	padding: 20px 0 20px;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}
/* Footer End */

/* PAGE: About Us */
.about {
	margin: 40px 0;
	padding: 40px 60px 70px;
	background-color: var(--primary-color);
	border-radius: 15px;
}
.about_heading {
	padding: 30px 0;
	color: var(--secondary-color);
	font-size: 48px;
	font-weight: 700;
}
.about_subheading {
	padding: 20px 0;
	color: var(--text-color);
	font-size: 32px;
	font-weight: 600;
}
.about_text {
	padding: 10px 0;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}
.about_list {
	list-style: inside disc;
}
.about_list-item {
	padding: 10px 30px;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}
/* PAGE: About Us End */

/* PAGE: FAQ */
.faq {
	margin: 40px 0;
	padding: 40px 60px 70px;
	background-color: var(--primary-color);
	border-radius: 15px;
}
.faq_heading {
	padding: 30px 0;
	color: var(--secondary-color);
	font-size: 48px;
	font-weight: 700;
}
.faq_container {
	margin-top: 40px;
	box-shadow: 0 0 15px rgba(17, 24, 39, 0.2);
	border-radius: 15px;
}
.faq_container-item:first-child .faq_question {
	border-radius: 15px 15px 0 0;
}
.faq_container-item:last-child .faq_question {
	border-radius: 0 0 15px 15px;
}
.faq_question {
	padding: 40px 40px;
	color: var(--text-color);
	font-size: 32px;
	font-weight: 600;
	border-bottom: 3px solid rgba(17, 24, 39, 0.2);
	cursor: pointer;
}
.faq_container-item:last-child .faq_question {
	border-bottom: none;
}
.faq_answer {
	max-height: 0;
	overflow: hidden;
}
.faq_container-item.active .faq_answer {
	padding: 40px 40px;
	border-bottom: 3px solid rgba(17, 24, 39, 0.2);
	max-height: 750px;
	overflow: visible;
}
.faq_answer-text {
	padding: 10px 0;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}
.faq_answer-text a {
	color: var(--secondary-color);
	font-weight: 600;
}
.faq_answer-list {
	list-style: inside disc;
}
.faq_list-item {
	padding: 10px 30px;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}

/* PAGE: FAQ End */

/* PAGE: Contact */
.contact {
	margin: 40px 0;
	padding: 40px 60px 70px;
	background-color: var(--primary-color);
	border-radius: 15px;
}
.contact_heading {
	padding: 30px 0;
	color: var(--secondary-color);
	font-size: 48px;
	font-weight: 700;
}
.contact_form {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
.contact_form-first,
.contact_form-last,
.contact_form-mail,
.contact_form-subject,
.contact_form-message {
	min-width: 245px;
	flex: 1 1 45%;
	display: flex;
	flex-direction: column;
}
.contact_form label {
	margin-bottom: 20px;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 600;
}
.contact_form label::after {
	content: '*';
	position: relative;
	top: -5px;
	left: 5px;
	color: var(--secondary-color);
}
.contact_form input,
textarea {
	padding: 15px 20px;
	border: 3px solid var(--secondary-color);
	border-radius: 13px;
	font-size: 18px;
	font-weight: 400;
}
.contact_form-message textarea {
	resize: none;
	height: 300px;
}
.contact_form-button {
	width: 100%;
}
.contact_form-button button {
	padding: 15px 40px;
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	background-color: var(--secondary-color);
	border: 3px solid var(--secondary-color);
	border-radius: 13px;
	cursor: pointer;
}
.contact_form-button button:hover {
	color: var(--text-color);
	background-color: var(--primary-color);
	border: 3px solid var(--secondary-color);
	box-shadow: 0px 0px 15px rgba(17, 24, 39, 0.5);
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
/* PAGE: Contact End */

/* PAGE: Privacy */
.privacy {
	margin: 40px 0;
	padding: 40px 60px 70px;
	background-color: var(--primary-color);
	border-radius: 15px;
}
.privacy_heading {
	padding: 30px 0;
	color: var(--secondary-color);
	font-size: 48px;
	font-weight: 700;
}
.privacy_subheading {
	padding: 20px 0;
	color: var(--text-color);
	font-size: 32px;
	font-weight: 600;
}
h3.privacy_subheading {
	font-size: 28px;
}
.privacy_text {
	padding: 10px 0;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}
.privacy_list {
	list-style: inside disc;
}
.privacy_list-item {
	padding: 10px 30px;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}
/* PAGE: Privacy End s*/

/* PAGE: Terms */
.terms {
	margin: 40px 0;
	padding: 40px 60px 70px;
	background-color: var(--primary-color);
	border-radius: 15px;
}
.terms_heading {
	padding: 30px 0;
	color: var(--secondary-color);
	font-size: 48px;
	font-weight: 700;
}
.terms_subheading {
	padding: 20px 0;
	color: var(--text-color);
	font-size: 32px;
	font-weight: 600;
}
.terms_text {
	padding: 10px 0;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}
.terms_text a {
	color: var(--secondary-color);
	font-weight: 600;
}
.terms_list {
	list-style: inside disc;
}
.terms_list-item {
	padding: 10px 30px;
	color: var(--text-color);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}
/* PAGE: Terms End */

/* ================= PRELOADER 777 (REELS) ================= */

#preloader {
	position: fixed;
	inset: 0;
	background: radial-gradient(
		circle at top,
		#1f2933 0%,
		#050814 60%,
		#000 100%
	);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.preloader--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.preloader_content {
	text-align: center;
	color: #ffffff;
	font-family: var(--font-family);
	padding: 20px;
}

/* Рамка слота */
.slot_frame {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px 24px 16px;
	background: #000;
	border-radius: 22px;
	border: 3px solid #ff6600;
	box-shadow: 0 0 25px rgba(255, 102, 0, 0.9), 0 0 60px rgba(255, 102, 0, 0.6);
}

.slot_frame::before {
	content: '';
	position: absolute;
	inset: 4px;
	border-radius: 18px;
	border: 2px dashed rgba(255, 255, 255, 0.25);
	box-shadow: 0 0 12px rgba(255, 102, 0, 0.5) inset;
	pointer-events: none;
}

.slot_reels {
	display: flex;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 14px;
	background: linear-gradient(180deg, #111827 0%, #020617 100%);
}

/* Один барабан (окно) */
.slot_reel {
	width: 56px;
	height: 76px; /* высота «окна» */
	overflow: hidden; /* показываем только один символ */
	border-radius: 10px;
	background: radial-gradient(circle at top, #111 0%, #000 60%, #111 100%);
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 102, 0, 0.5) inset;
	position: relative;
}

/* Внутренний столбик символов, который СПИННИТСЯ */
.slot_reel-inner {
	display: flex;
	flex-direction: column;
	animation: reel-spin 0.6s linear infinite;
}

/* второй и третий барабаны со смещением по времени */
.slot_reel--delay-1 .slot_reel-inner {
	animation-delay: 0.12s;
}
.slot_reel--delay-2 .slot_reel-inner {
	animation-delay: 0.24s;
}

/* СТОП барабана — отдельная анимация с «подскоком» */
.slot_reel.slot_reel--stopped .slot_reel-inner {
	animation: reel-stop 0.35s ease-out forwards;
}

/* Один символ */
.slot_symbol {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 76px; /* равна высоте окна барабана */
	color: var(--secondary-color);
	font-size: 40px;
	font-weight: 900;
	text-shadow: 0 0 12px rgba(255, 102, 0, 0.9), 0 0 24px rgba(255, 102, 0, 0.7);
}

/* Текст 18+ */
.preloader_text {
	margin-top: 40px;
	/* max-width: 360px; */
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.5;
	color: var(--primary-color);
}

/* БЕСКОНЕЧНЫЙ СПИН — лента едет вверх */
@keyframes reel-spin {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}

/* СТОП — лёгкий «подскок» */
@keyframes reel-stop {
	0% {
		transform: translateY(-10%);
	}
	60% {
		transform: translateY(0);
	}
	80% {
		transform: translateY(-4%);
	}
	100% {
		transform: translateY(0);
	}
}

/* Адаптив прелоудера */
@media (max-width: 480px) {
	.slot_frame {
		padding: 16px 18px 12px;
		border-radius: 18px;
	}
	.slot_reel {
		width: 46px;
		height: 64px;
	}
	.slot_symbol {
		height: 64px;
		font-size: 32px;
	}
	.slot_label {
		font-size: 16px;
	}
	.preloader_text {
		font-size: 12px;
		max-width: 280px;
	}
}

/* Responsive Design */
@media (max-width: 1440px) {
	.header,
	.footer {
		padding: 0 40px;
	}
	.description {
		padding: 0 40px;
	}
	.description .container {
		padding: 0 40px;
	}
	.brands {
		padding: 40px 40px 20px;
	}
	.about,
	.faq,
	.contact,
	.privacy,
	.terms {
		padding: 40px 40px 60px;
	}
}

@media (max-width: 1280px) {
	.header_logo {
		width: 100px;
	}
	.header_navigation {
		gap: 30px;
	}
	.description_heading {
		width: 70%;
		font-size: 48px;
	}
	.description_text {
		font-size: 20px;
	}
	.brands {
		padding: 35px 20px 15px;
	}
	.brands_heading {
		font-size: 40px;
	}
	.brands_cards-item {
		padding: 30px 20px 40px;
	}
	.cards_item-heading {
		font-size: 30px;
	}
	.cards_item-bonus {
		font-size: 20px;
	}
	.cards_item-rating {
		margin-bottom: 25px;
		font-size: 22px;
	}
	.cards_item-button {
		font-size: 18px;
		padding: 12px 30px;
	}

	.about_heading,
	.faq_heading,
	.contact_heading,
	.privacy_heading,
	.terms_heading {
		font-size: 40px;
	}
	.about_subheading,
	.faq_question,
	.contact_form label,
	.privacy_subheading,
	.terms_subheading {
		font-size: 28px;
	}
	.about_text,
	.about_list-item,
	.faq_answer-text,
	.faq_list-item,
	.privacy_text,
	.privacy_list-item,
	.terms_text,
	.terms_list-item {
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	body {
		background-attachment: scroll;
	}

	.header {
		padding: 0 20px;
	}
	.header_logo {
		width: 100px;
	}
	.header_navigation li a {
		font-size: 20px;
	}

	.description {
		padding: 0 20px;
	}
	.description .container {
		padding: 0;
	}
	.description_heading {
		width: 100%;
		font-size: 40px;
	}
	.description_text {
		font-size: 18px;
	}

	/* Блок действия — теперь колонкой и по центру */
	.cards_item-action {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	/* Рейтинг — центрируем */
	.cards_item-rating {
		margin-bottom: 30px; /* чуть меньше отступ */
		text-align: center;
	}

	/* Кнопка — тоже по центру */
	.cards_item-button {
		width: auto;
		display: inline-block;
		text-align: center;
	}

	.footer {
		padding: 0 20px;
	}
	.navigation {
		flex-direction: column;
		gap: 20px;
	}
	.navigation_logo {
		width: 100px;
	}
	.footer_navigation {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px 30px;
	}
	.footer_navigation li a {
		font-size: 16px;
	}
	.license_logo {
		gap: 20px;
	}
	.license_logo div {
		width: 130px;
		height: 50px;
	}

	.about,
	.faq,
	.contact,
	.privacy,
	.terms {
		padding: 30px 20px 50px;
	}
}

@media (max-width: 768px) {
	.header {
		margin: 20px 0;
		height: auto;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.header_logo {
		width: 100px;
	}
	.header_navigation {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}
	.header_navigation li a {
		font-size: 18px;
	}

	/* Описание */
	.description {
		margin: 40px 0 30px;
	}
	.description_heading {
		font-size: 32px;
		text-align: center;
	}
	.description_text {
		font-size: 16px;
	}
	.description_text p {
		margin-bottom: 18px;
	}

	/* Карточки казино */
	.brands {
		margin-top: 40px;
	}
	.brands_heading {
		font-size: 32px;
		text-align: center;
	}
	.brands_cards {
		margin-top: 40px;
	}
	.brands_cards-item {
		flex-direction: column;
		align-items: flex-start;
	}
	.cards_item-description {
		width: 100%;
		margin-bottom: 20px;
	}
	.cards_item-info {
		margin-left: 20px;
	}
	.cards_item-heading {
		font-size: 24px;
		margin-bottom: 10px;
	}
	.cards_item-bonus {
		font-size: 18px;
	}
	.cards_item-rating {
		font-size: 20px;
	}
	.cards_item-button {
		font-size: 16px;
	}

	/* Платёжные методы */
	.payments_heading {
		font-size: 18px;
		padding: 0 10px;
	}
	.payments_methods {
		padding: 0 15px;
		gap: 20px;
	}
	.payments_methods-item {
		max-width: 70px;
	}

	/* Footer */
	.navigation {
		flex-direction: column;
		gap: 20px;
	}
	.navigation_logo {
		width: 100px;
	}
	.footer_navigation {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px 30px;
	}
	.footer_navigation li a {
		font-size: 16px;
	}
	.license_logo {
		gap: 20px;
	}
	.license_logo div {
		width: 130px;
		height: 50px;
	}

	.about_heading,
	.faq_heading,
	.contact_heading,
	.privacy_heading,
	.terms_heading {
		font-size: 32px;
		text-align: center;
	}
	.about_subheading,
	.privacy_subheading,
	.terms_subheading,
	.faq_question {
		font-size: 24px;
	}
	.about_text,
	.about_list-item,
	.privacy_text,
	.privacy_list-item,
	.terms_text,
	.terms_list-item,
	.faq_answer-text,
	.faq_list-item {
		font-size: 18px;
	}

	.contact_form-first,
	.contact_form-last,
	.contact_form-mail,
	.contact_form-subject,
	.contact_form-message {
		flex: 1 1 100%;
	}
	.contact_form-message textarea {
		height: 220px;
	}
	.contact_form label {
		font-size: 20px;
	}
	.contact_form-button {
		display: flex;
		justify-content: center;
	}
	.contact_form-button button {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.header_logo {
		width: 100px;
	}
	.header_navigation li a {
		font-size: 16px;
	}

	.description {
		margin: 30px 0 20px;
	}
	.description_heading {
		font-size: 26px;
	}
	.description_text {
		font-size: 15px;
	}

	.brands {
		padding: 25px 15px 15px;
	}
	.brands_cards-item {
		padding: 25px 15px 30px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.cards_item-description {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.cards_item-logo {
		max-width: 110px;
		margin: 0 auto 15px;
	}
	.cards_item-info {
		margin-left: 0;
		text-align: center;
	}
	.cards_item-heading {
		font-size: 20px;
		text-align: center;
	}
	.cards_item-bonus {
		font-size: 16px;
		text-align: center;
	}
	.cards_item-action {
		gap: 10px;
	}
	.cards_item-rating {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.cards_item-button {
		width: 100%;
		text-align: center;
	}

	.payments_methods-item {
		max-width: 60px;
	}

	.footer_navigation {
		gap: 10px 20px;
	}
	.footer_navigation li a {
		font-size: 14px;
	}
	.license_text {
		font-size: 16px;
	}
	.license_logo div {
		width: 120px;
		height: 46px;
	}

	.about,
	.faq,
	.contact,
	.privacy,
	.terms {
		margin: 30px 0;
		padding: 25px 15px 40px;
	}
	.about_heading,
	.faq_heading,
	.contact_heading,
	.privacy_heading,
	.terms_heading {
		font-size: 26px;
	}
	.about_subheading,
	.privacy_subheading,
	h3.privacy_subheading,
	.terms_subheading,
	.faq_question {
		font-size: 20px;
		padding: 15px 0;
	}
	.faq_question {
		padding: 20px 20px;
	}
	.faq_container-item.active .faq_answer {
		padding: 20px 20px;
	}
	.about_text,
	.about_list-item,
	.privacy_text,
	.privacy_list-item,
	.terms_text,
	.terms_list-item,
	.faq_answer-text,
	.faq_list-item {
		font-size: 16px;
	}

	.preloader_reel {
		width: 34px;
		height: 46px;
		font-size: 26px;
	}
	.preloader_text {
		font-size: 12px;
		max-width: 280px;
	}
}

@media (max-width: 375px) {
	.header_navigation {
		gap: 10px 15px;
	}
	.header_navigation li a {
		font-size: 14px;
	}

	.description_heading {
		font-size: 22px;
	}
	.description_text {
		font-size: 14px;
	}

	.cards_item-heading {
		font-size: 18px;
	}
	.cards_item-bonus {
		font-size: 14px;
	}
	.cards_item-rating {
		font-size: 16px;
	}
	.cards_item-button {
		font-size: 14px;
	}

	.payments_heading {
		font-size: 16px;
	}

	.footer_navigation li a {
		font-size: 13px;
	}

	.about_heading,
	.faq_heading,
	.contact_heading,
	.privacy_heading,
	.terms_heading {
		font-size: 22px;
	}
	.faq_question {
		font-size: 18px;
	}
}

@media (max-width: 320px) {
	.header_logo {
		width: 100px;
	}
	.header_navigation li a {
		font-size: 12px;
	}

	.description_heading {
		font-size: 20px;
	}
	.description_text {
		font-size: 13px;
	}

	.brands_heading {
		font-size: 24px;
	}
	.cards_item-heading {
		font-size: 16px;
	}
	.cards_item-bonus {
		font-size: 13px;
	}
	.cards_item-button {
		font-size: 13px;
		padding: 8px 18px;
	}

	.about_heading,
	.faq_heading,
	.contact_heading,
	.privacy_heading,
	.terms_heading {
		font-size: 20px;
	}
}
/* Responsive Design End */

/* ADMIN PANEL */

.admin_panel {
	margin-top: 40px;
}

.admin_grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1.1fr 1.4fr;
	gap: 30px;
}

.admin_form,
.admin_list {
	background-color: var(--primary-color);
	border-radius: 15px;
	padding: 25px 20px 30px;
	color: var(--text-color);
	box-shadow: 0 0 15px rgba(17, 24, 39, 0.2);
}

.admin_form-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--secondary-color);
}

.admin_form-group {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.admin_form-group label {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-color);
}

.admin_form-group input[type='text'],
.admin_form-group input[type='file'] {
	padding: 10px 12px;
	border-radius: 10px;
	border: 2px solid var(--secondary-color);
	font-size: 14px;
}

.admin_checkbox label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}

.admin_hint {
	font-size: 12px;
	color: #4b5563;
}

.admin_logo-preview {
	margin-top: 6px;
	max-width: 140px;
}

.admin_logo-preview img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.admin_buttons {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.admin_btn {
	padding: 8px 18px;
	border-radius: 10px;
	border: 2px solid var(--secondary-color);
	background-color: transparent;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.admin_btn.primary {
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.admin_btn.small {
	padding: 4px 10px;
	font-size: 12px;
}

.admin_btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.admin_message {
	margin-top: 10px;
	font-size: 14px;
}

.admin_message.success {
	color: #16a34a;
}

.admin_message.error {
	color: #b91c1c;
}

.admin_brand-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 10px;
	border-bottom: 1px solid rgba(17, 24, 39, 0.15);
}

.admin_brand-main {
	display: flex;
	align-items: center;
	gap: 12px;
}

.admin_brand-logo {
	width: 70px;
	flex-shrink: 0;
}

.admin_brand-logo img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.admin_brand-info {
	font-size: 13px;
	max-width: 380px;
}

.admin_brand-name {
	font-weight: 700;
	margin-bottom: 4px;
}

.admin_brand-bonus {
	font-size: 12px;
	margin-bottom: 2px;
}

.admin_brand-rating {
	font-size: 12px;
	margin-bottom: 2px;
}

.admin_brand-link a {
	font-size: 12px;
	color: var(--secondary-color);
	word-break: break-all;
}

.admin_brand-controls {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.admin_switch {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
}

.admin_sort-buttons {
	display: flex;
	gap: 4px;
}

.admin_save-order {
	margin-top: 15px;
	display: flex;
	justify-content: flex-end;
}

/* Адаптив админки */
@media (max-width: 1024px) {
	.admin_grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.admin_brand-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.admin_brand-controls {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}
}
