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

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

img, svg {
	border-radius: 10px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-style: normal;

	background: #170d00;
}

img,
picture,
svg {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

button {
	display: block;
	cursor: pointer;
	padding: 0;
}

.jf-container {
	margin: 0 auto;
	width: 100%;
	max-width: 1920px;
	padding: 0 16px;
}

@media (min-width: 768px) {
	.jf-container {
		padding: 0 30px;
	}
}

@media (min-width: 1220px) {
	.jf-container {
		padding: 0 100px;
	}
}

@media (min-width: 1920px) {
	.jf-container {
		padding: 0 320px;
	}
}

.main-header-unikx {
	padding-top: 20px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
}

.main-header-unikx div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand-link-unikx {
	display: flex;
	align-items: center;
	gap: 9px;
}

.brand-link-unikx img {
	width: 36px;
	height: 38px;
}

.brand-link-unikx span {
	color: #fff;

	font-size: 17.685px;

	line-height: 1.3;
	letter-spacing: 0.442px;
}

.nav-list-unikx {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav-item-unikx {
	color: #cbd5e1;

	font-size: 14px;

	line-height: 1.4;
}

.jf-section-jeuxintro {
	position: relative;

	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 1) 0%,
		rgba(173, 114, 33, 0.8) 50%,
		rgba(23, 13, 0, 1) 100%
	);

	padding: 90px 0 0;
}

.jf-age-tag {
	display: flex;
	padding: 6px 24px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 30px;
	background: #d31b22;

	color: #fff;
	text-align: center;
	font-family: Nunito;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 2;
	width: 78px;
	height: 37px;

	margin: 0 auto 8px;
}

.jf-title-primary {
	color: #fff;
	text-align: center;

	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 24px;
}

.jf-desc-paragraph {
	color: #fff;
	text-align: center;

	font-size: 18px;

	font-weight: 400;
	line-height: 1.4;

	margin-bottom: 24px;
}

.jf-list-certifications {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;

	margin-bottom: 50px;
}

.jf-cert-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;

	border-radius: 10px;
	background: rgba(173, 114, 33, 0.6);
	backdrop-filter: blur(2px);
}

.jf-cert-item span {
	color: #fff;

	font-size: 18px;

	font-weight: 400;
	line-height: 1.4;
}

.jf-cert-item img {
	width: 32px;
	height: 32px;
}

.jf-casino-highlight {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;

	border-radius: 10px;
	background: #111;
	box-shadow: 0 4px 60px 0 rgba(196, 143, 71, 0.4);
	border: 3px solid transparent;
	transition: all 0.5s ease-in;
	z-index: 1;
}

.jf-casino-highlight:hover {
	border: 3px solid #ad7221;

	box-shadow: 0 4px 60px 0 rgba(196, 143, 71, 0.8);
}

.jf-casino-header {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 16px;

	border-radius: 10px;
	background: #1c1c1c;
}

.jf-casino-logo {
	width: 205px;
	height: 70px;
	margin: 0 auto;
}

.jf-rating-box {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.jf-rating-score {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.jf-rating-score img {
	width: 24px;
	height: 24px;
}

.jf-rating-score span {
	color: #fc0;
	text-align: center;

	font-size: 20px;

	font-weight: 700;
	line-height: 1.2;
}

.jf-rating-votes {
	color: #fff;
	text-align: center;
	font-size: 16px;

	line-height: 1.4;
}

.jf-casino-features {
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #1c1c1c;
}

.jf-feature-list {
	display: flex;
	flex-direction: column;

	gap: 16px;
}

.jf-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.jf-feature-label {
	color: #fff;

	font-size: 20px;

	font-weight: 700;
	line-height: 1.2;
}

.jf-feature-value {
	color: #fff;

	font-size: 18px;

	line-height: 1.4;
}

.jf-cta-button-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

.jf-cta-button {
	padding: 12px 24px;

	border-radius: 10px;
	background: #ad7221;

	color: #fff;

	font-size: 18px;

	font-weight: 700;
	line-height: normal;

	width: 295px;
	height: 49px;
	margin: 0 auto;
	text-align: center;
	text-transform: uppercase;

	transition: all 0.5s ease-in;
}

.jf-cta-button:hover {
	background: #7b4906;
}

.jf-faq-section-zone {
	padding: 80px 0;
}

.jf-faq-heading-main {
	color: #fff;
	text-align: center;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 40px;
}

.jf-faq-accordion-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.jf-faq-item-block {
	padding: 24px;

	border-radius: 10px;
	background: #111;
	display: flex;
	flex-direction: column;
	gap: 16px;
	border: 3px solid transparent;
	transition: all 0.5s ease-in;
}

.jf-faq-item-block:hover {
	border: 3px solid #ad7221;
}

.jf-faq-toggle-button {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	border: none;
	background-color: transparent;
}

.jf-faq-item-block.is-open {
	border-color: transparent !important;
}

.jf-faq-toggle-button span {
	color: #fff;

	font-size: 20px;
	text-align: start;
	font-weight: 700;
	line-height: 1.2;

	width: 70%;
}

.jf-faq-toggle-button img {
	width: 40px;
	height: 40px;
}

.jf-faq-answer-text {
	color: #fff;

	font-size: 16px;

	line-height: 1.4;
}

.jf-responsible-play-zone {
	padding: 60px 0;
	background: #ad7221;
}

.jf-responsible-heading {
	color: var(--White, #fff);
	text-align: center;

	font-size: 20px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 40px;
}

.jf-partner-grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.jf-footer-section {
	padding: 18px 0 24px;
	background: #000;
}

.jf-footer-top {
	display: flex;
	flex-direction: column;
	gap: 20px;

	margin-bottom: 18px;
}

.jf-brand-link {
	display: flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 18px;
}

.jf-brand-link img {
	width: 50px;
	height: 51px;
}

.jf-brand-link span {
	color: #fff;

	font-size: 24px;

	line-height: 1.3;
	letter-spacing: 0.6px;
}

.jf-age-badge {
	padding: 6px 24px;

	border-radius: 30px;
	background: #d31b22;

	color: #fff;
	text-align: center;

	font-size: 14px;

	font-weight: 700;
	line-height: 2;
	width: 78px;
	height: 37px;
}

.jf-footer-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.jf-footer-content-div {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.jf-footer-column h3 {
	color: #fff;

	font-size: 16px;

	font-weight: 700;
	line-height: 1.4;

	margin-bottom: 8px;
}

.jf-footer-column p {
	color: #fff;

	font-size: 14px;

	line-height: 1.4;
}

hr {
	border: none;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.jf-footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.jf-footer-links li {
	color: #fff;

	font-size: 14px;

	line-height: 1.4;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.jf-footer-note {
	color: #ccc;
	text-align: center;

	font-size: 14px;

	line-height: normal;
	padding-top: 18px;
}

#jf-cookie-consent {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	max-width: 380px;
	background-color: #fff;
	color: #1c1c1c;
	padding: 20px;
	border-radius: 12px;
	border: 3px solid #ad7221;
	box-shadow: 0 0 20px rgba(255, 191, 73, 0.3);

	animation: fadeIn 0.5s ease-in-out;
}

.jf-cookie-box {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.jf-cookie-heading {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	color: #1c1c1c;
}

.jf-cookie-message {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	color: #1c1c1c;
}

.jf-cookie-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 10px;
}

.jf-cookie-btn {
	padding: 8px 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.jf-accept-btn {
	background-color: #4caf50;
	color: #fff;
}

.jf-accept-btn:hover {
	background-color: #43a047;
	transform: scale(1.05);
}

.jf-decline-btn {
	background-color: #f44336;
	color: #fff;
}

.jf-decline-btn:hover {
	background-color: #e53935;
	transform: scale(1.05);
}

/* Анімація */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 📱 Адаптивність */
@media (max-width: 480px) {
	#jf-cookie-consent {
		right: 10px;
		left: 10px;
		bottom: 10px;
		max-width: unset;
	}

	.jf-cookie-actions {
		flex-direction: column;
		align-items: stretch;
	}
}

.main-plus {
	position: relative;
	padding: 90px 0 80px;
}

.main-plus-cont {
	max-width: 847px;
	margin: 0 auto 0 0;
}

.main-plus h1 {
	color: #fff;

	font-size: 24px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 16px;
}

.main-plus p {
	color: #fff;

	font-size: 16px;

	line-height: 1.4;

	margin-bottom: 40px;
}

.pad {
	padding-left: 15px;
}

.main-plus p span {
	display: block;
	background-color: #fff;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: relative;
	top: 13px;
	left: -12px;
}

.main-plus h2 {
	color: #fff;

	font-size: 20px;

	font-weight: 700;
	line-height: 1.2;

	margin-bottom: 8px;
}

@media (min-width: 1000px) {
	.main-plus {
		padding: 210px 0 120px;
	}

	.main-plus h1 {
		font-size: 40px;
	}

	.main-plus p {
		font-size: 18px;
	}

	.pad {
		padding-left: 20px;
	}

	.main-plus h2 {
		margin-bottom: 16px;
	}

	.jf-partner-grid {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.jf-faq-section-zone {
		padding: 120px 0;
	}

	.jf-faq-heading-main {
		font-size: 40px;
	}

	.jf-faq-item-block {
		padding: 40px;
	}

	.jf-faq-toggle-button span {
		width: 70%;
	}

	.jf-faq-answer-text {
		font-size: 18px;
	}

	.jf-casino-highlight {
		position: relative;
		padding: 40px;

		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
		gap: 32px;

		border-radius: 10px;
		background: #111;
		box-shadow: 0 4px 60px 0 rgba(196, 143, 71, 0.4);
	}
}

@media (min-width: 1200px) {
	.jf-footer-top {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 20px;
	}

	.jf-age-badge {
		font-size: 18px;

		line-height: 1.6;
		width: 81px;
		height: 41px;
	}

	.jf-footer-column {
		max-width: 250px;
	}

	hr {
		border: none;
		height: 1px;
		background: rgba(255, 255, 255, 0.1);
	}

	.jf-footer-content-div {
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
	}

	.jf-section-jeuxintro {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 1) 0%,
			rgba(173, 114, 33, 0.8) 50%,
			rgba(23, 13, 0, 1) 100%
		);

		padding: 130px 0 0;
	}

	.jf-age-tag {
		font-size: 18px;

		line-height: 1.6;
		width: 81px;
		height: 41px;
	}

	.jf-title-primary {
		font-size: 56px;
	}

	.jf-desc-paragraph {
		margin-bottom: 48px;
	}

	.jf-list-certifications {
		flex-direction: row;

		margin-bottom: 112px;
	}

	.jf-casino-highlight {
		padding: 40px;

		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
		gap: 32px;

		border-radius: 10px;
		background: #111;
		box-shadow: 0 4px 60px 0 rgba(196, 143, 71, 0.4);
	}

	.jf-casino-header {
		width: 33%;
		padding: 24px;
	}

	.jf-casino-features {
		width: 33%;
	}

	.jf-feature-list {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.jf-feature-item {
		display: flex;
		align-items: flex-start;
		gap: 8px;
	}

	.jf-feature-label {
		color: #fff;

		font-size: 20px;

		font-weight: 700;
		line-height: 1.2;
	}

	.jf-feature-value {
		color: #fff;

		font-size: 18px;

		line-height: 1.4;
	}

	.jf-cta-button-wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.jf-cta-button {
		padding: 12px 24px;

		border-radius: 10px;
		background: #ad7221;

		color: #fff;

		font-size: 18px;

		font-weight: 700;
		line-height: normal;

		width: 295px;
		height: 49px;
		margin: 0;
		text-align: center;
		text-transform: uppercase;
	}
}

.age-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.age-modal-box {
	background-color: #ffffff;
	color: #1c1c1c;
	padding: 32px;
	border-radius: 12px;
	text-align: center;
	width: 90%;
	max-width: 400px;
	border: 3px solid #ad7221;
	box-shadow: 0 0 20px rgba(255, 191, 73, 0.3);
}

.age-modal-text {
	color: #1c1c1c;
	font-size: 16px;
	margin-bottom: 24px;
}

.age-modal-buttons {
	display: flex;
	justify-content: space-around;
	gap: 16px;
}

.age-btn {
	padding: 10px 24px;
	font-size: 16px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.age-btn-yes {
	background-color: #4caf50;
	color: white;
}

.age-btn-yes:hover {
	background-color: #43a047;
}

.age-btn-no {
	background-color: #f44336;
	color: white;
}

.age-btn-no:hover {
	background-color: #e53935;
}
