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

body {
	font-family: Arial, sans-serif;
	background-image: url('/images/bg.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	line-height: 1.6;
}

header {
	background-color: #111;
	color: #fff;
	padding: 1rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}

nav {
	display: flex;
	gap: 1rem;
	position: relative;
}

nav a,
nav button {
	color: #fff;
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

nav a:hover,
nav button:hover {
	color: #f0b400;
}

.dropdown {
	position: relative;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #fff;
	top: 100%;
	left: 0;
	min-width: 160px;
	z-index: 100;
	border: 1px solid #ccc;
}

.dropdown-content a {
	display: block;
	padding: 0.75rem 1rem;
	color: #111;
	text-decoration: none;
}

.dropdown-content a:hover {
	background-color: #eee;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.hero {
	/* background-color: #fffbe6; */
	color: #000;
	padding: 3rem 1rem;
	text-align: center;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #f9f9f9;
	padding: 30px;
	border-radius: 20px;
}

.hero h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.hero p {
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
	.container {
		flex-direction: column;
		align-items: flex-start;
	}

	nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
		margin-top: 1rem;
	}

	.dropdown-content {
		position: static;
		border: none;
		background-color: #fff;
		box-shadow: none;
	}

	.dropdown:hover .dropdown-content {
		display: block;
	}
}

.advantages {
	padding: 4rem 1rem;
}

.advantages .container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #f9f9f9;
	padding: 30px;
	border-radius: 20px;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2.5rem;
	color: #111;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.advantage-card {
	background-color: #fff;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.advantage-card:hover {
	transform: translateY(-5px);
}

.advantage-card h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: #222;
}

.advantage-card p {
	font-size: 1rem;
	color: #555;
}

@media (max-width: 600px) {
	.section-title {
		font-size: 1.5rem;
	}

	.advantage-card {
		padding: 1.5rem;
	}
}

.bookie-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	max-width: 1200px;
	margin: 20px auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.bookie-logo {
	text-align: center;
	margin-bottom: 1rem;
}

.bookie-logo img {
	max-width: 200px;
	margin-bottom: 0.5rem;
}

.stars {
	color: #f5a623;
	font-size: 1.2rem;
}

.bookie-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
}

.features {
	display: flex;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.features li img {
	width: 24px;
	height: 24px;
}

.bookie-description {
	text-align: center;
	font-size: 0.95rem;
	color: #333;
}

.bookie-description .tagline {
	font-style: italic;
	color: #666;
	margin-bottom: 0.25rem;
}

.bookie-description strong {
	font-size: 1.1rem;
	display: block;
	color: #000;
}

.bookie-description .note {
	font-size: 0.85rem;
	color: #666;
}

.payments img {
	height: 28px;
	margin: 0 6px;
}

.bonus-btn {
	display: inline-block;
	background: #9c1354;
	color: #fff;
	padding: 12px 20px;
	border-radius: 6px;
	font-weight: bold;
	text-decoration: none;
	transition: background 0.3s;
	margin-top: 1rem;
}

.bonus-btn:hover {
	background: #b71b65;
}

@media (min-width: 768px) {
	.bookie-card {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 40px;
	}

	.bookie-logo {
		flex: 0 0 200px;
		text-align: left;
		margin-bottom: 0;
	}

	.bookie-info {
		flex: 1;
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
		gap: 20px;
	}

	.bookie-description {
		text-align: left;
	}

	.bonus-btn {
		margin-top: 0;
	}
}

.testimonials {
	padding: 4rem 1rem;
}

.testimonials-container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #f9f9f9;
	padding: 30px;
	border-radius: 20px;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 3rem;
	color: #111;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.testimonial-card {
	background: #fff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-text {
	font-style: italic;
	font-size: 1rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.user-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.user-info img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.user-name {
	font-weight: bold;
	color: #111;
}

.user-location {
	font-size: 0.9rem;
	color: #666;
}

@media (min-width: 768px) {
	.testimonial-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.testimonial-card {
		height: 100%;
	}
}

.legal-section {
	background-color: #1b1b1b;
	color: #fff;
	padding: 3rem 1rem;
	font-size: 0.95rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.legal-title {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	text-align: center;
	color: #f0b400;
}

.legal-content p {
	margin-bottom: 1.2rem;
	line-height: 1.7;
}

.legal-content h3 {
	font-size: 1.2rem;
	margin-top: 1.5rem;
	margin-bottom: 0.8rem;
	color: #ff6666;
}

.legal-content a {
	color: #f0b400;
	text-decoration: underline;
}

.legal-content a:hover {
	text-decoration: none;
}

@media (max-width: 768px) {
	.legal-title {
		font-size: 1.4rem;
	}

	.legal-content {
		font-size: 0.9rem;
	}
}

.site-footer {
	background-color: #111;
	color: #f0f0f0;
	font-size: 0.95rem;
	padding: 3rem 1rem 1rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	text-align: center;
}

.footer-description {
	color: #ccc;
	font-size: 0.95rem;
	max-width: 480px;
	margin: 0 auto;
}

.footer-partners {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.2rem;
	background-color: #f2d6e8;
	padding: 1rem;
	border-radius: 8px;
}

.footer-partners img {
	max-height: 55px;
	width: auto;
	object-fit: contain;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 1rem;
}

.footer-links a {
	color: #f0b400;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #ffffff;
}

.footer-bottom {
	border-top: 1px solid #333;
	margin-top: 2rem;
	padding-top: 1rem;
	text-align: center;
	font-size: 0.85rem;
	color: #aaa;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #1a1a1a;
	color: #fff;
	padding: 1rem;
	z-index: 9999;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
	display: none;
}

.cookie-banner__content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	font-size: 0.95rem;
}

.cookie-banner p {
	margin: 0;
	text-align: center;
}

.cookie-banner a {
	color: #f0b400;
	text-decoration: underline;
}

.cookie-btn {
	background-color: #f0b400;
	color: #000;
	padding: 0.6rem 1.2rem;
	border: none;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s;
}

.cookie-btn:hover {
	background-color: #d89f00;
}

@media (min-width: 600px) {
	.cookie-banner__content {
		flex-direction: row;
		justify-content: space-between;
	}

	.cookie-banner p {
		text-align: left;
	}
}

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

.age-modal {
	background: #fff;
	color: #111;
	max-width: 500px;
	width: 100%;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.age-modal h2 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

.age-modal p {
	font-size: 1rem;
	margin-bottom: 1.5rem;
	color: #444;
}

.age-confirm-btn {
	background-color: #f0b400;
	border: none;
	color: #000;
	padding: 0.75rem 1.5rem;
	font-weight: bold;
	font-size: 1rem;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.age-confirm-btn:hover {
	background-color: #d89f00;
}

.age-decline-btn {
	background-color: #f02000;
	border: none;
	color: #000;
	padding: 0.75rem 1.5rem;
	font-weight: bold;
	font-size: 1rem;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.age-decline-btn:hover {
	background-color: #f1553d;
}

body.modal-open {
	overflow: hidden;
}

@media (max-width: 480px) {
	.age-modal {
		padding: 1.5rem;
	}

	.age-modal h2 {
		font-size: 1.3rem;
	}

	.age-modal p {
		font-size: 0.95rem;
	}
}

.confidentialite-section {
	padding: 4rem 1.5rem;
	font-size: 1rem;
	color: #222;
}

.confidentialite-section-container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #f9f9f9;
	padding: 30px;
	border-radius: 20px;
}

.section-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
	color: #111;
}

.confidentialite-section h3 {
	font-size: 1.3rem;
	margin-top: 2rem;
	color: #444;
}

.confidentialite-section p {
	line-height: 1.7;
	margin-top: 1rem;
	color: #333;
}

.confidentialite-section a {
	color: #f0b400;
	text-decoration: underline;
}

.confidentialite-section a:hover {
	text-decoration: none;
}

@media (max-width: 600px) {
	.section-title {
		font-size: 1.6rem;
	}

	.confidentialite-section h3 {
		font-size: 1.15rem;
	}

	.confidentialite-section {
		font-size: 0.95rem;
		padding: 3rem 1rem;
	}
}

.contact-section {
	padding: 4rem 1rem;

	font-size: 1rem;
	color: #222;
}

.contact-section-container {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #f9f9f9;
	padding: 40px;
	border-radius: 20px;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 2rem;
}

.contact-grid {
	display: grid;
	gap: 2rem;
}

.contact-info p {
	margin-bottom: 0.8rem;
	color: #444;
}

.contact-form label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 500;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.7rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	margin-top: 0.3rem;
	font-size: 1rem;
}

.contact-form button {
	margin-top: 1rem;
	background-color: #f0b400;
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	font-weight: bold;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

.contact-form button:hover {
	background-color: #d89f00;
}

@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* Модалка */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

.modal-box {
	background: #fff;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-box p {
	margin-bottom: 1.5rem;
	color: #111;
}

.modal-box button {
	padding: 0.6rem 1.2rem;
	border: none;
	background: #f0b400;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
}

.modal-box button:hover {
	background: #d89f00;
}
