* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #1c1c1c;
	line-height: 1.6;
	background-color: #f9f9f9;
}
.container {
	width: 90%;
	max-width: 1220px;
	margin: 0 auto;
}

/* Header */
.site-header {
	background: #131212;
	color: #fff;
	padding: 1rem 0;
}
.header-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.5rem;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
}
.site-logo img {
	height: 32px;
}
.main-nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}
.main-nav a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}
.main-nav a:hover {
	text-decoration: underline;
}

/* Hero */
.intro-section {
	background: linear-gradient(120deg, #076bed, orange);
	color: #fff;
	padding: 4rem 0;
	text-align: center;
}

.intro-section h1 {
	font-size: 40px;
}
.features-list {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 1rem;
}
.features-list li {
	list-style: none;
	font-weight: 600;
}
.badge {
	margin-right: 0.5rem;
}

/* Reviews */
.reviews-highlight {
	background: rgb(237, 236, 235);
	padding: 4rem 0;
}
.reviews-highlight h2 {
	text-align: center;
	margin-bottom: 2rem;
}
.casino-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.casino-entry {
	background: rgb(232, 178, 79);
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	position: relative;
}
.casino-entry img {
	max-width: 200px;
	margin: 1rem 0;
}

.casino-entry h3,
.casino-entry p {
	color: #000;
}

.btn-primary,
.btn-secondary {
	display: block;
	margin: 0.5rem auto;
	padding: 0.6rem 1.2rem;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
}

.btn-secondary {
	background: linear-gradient(120deg, orange, #076bed);
	color: #fff;
	border: 1px solid #0096c7;
	transition: all 0.5s ease;
}

.btn-secondary:hover {
	background: linear-gradient(120deg, #076bed, orange);
}

/* Criteria */
.criteria-section {
	background: #f8f9fa;
	padding: 4rem 0;
}
.criteria-section h2 {
	text-align: center;
	margin-bottom: 2rem;
}
.criteria-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}
.criteria-list li {
	list-style: none;
	background: rgb(219, 184, 120);
	padding: 1.5rem;
	border-radius: 6px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
.criteria-list h3 {
	margin-bottom: 0.5rem;
	color: #000;
}

/* Footer */
.site-footer {
	background: #131212;
	color: #ccc;
	padding: 3rem 0 2rem;
}
.footer-top {
	text-align: center;
	margin-top: 2rem;
}
.footer-logo {
	height: 40px;
}
.footer-cols {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}
.footer-cols h4 {
	margin-bottom: 0.5rem;
	color: #fff;
}
.footer-cols ul {
	list-style: none;
}
.footer-cols a {
	color: #ccc;
	text-decoration: none;
}
.footer-cols a:hover {
	text-decoration: underline;
}
.footer-disclaimer {
	margin-top: 2rem;
	font-size: 0.9rem;
	color: #aaa;
	text-align: center;
}

.foot-l {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
	justify-content: center;
	margin-bottom: 60px;
}

.foot-l img {
	max-width: 200px;
}

.faq-section {
	background: rgb(231, 223, 208);
	padding: 60px 20px;
	font-family: 'Inter', sans-serif;
}

.faq-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 40px;
	color: #222;
}

.faq-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
}

.faq-question {
	width: 100%;
	background: rgb(219, 184, 120);
	border: none;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 600;
	padding: 15px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #eef2f7;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	padding: 0 15px;
	transition:
		max-height 0.3s ease,
		padding 0.3s ease;
}

.faq-answer p {
	margin: 10px 0;
	font-size: 0.95rem;
	color: #444;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #131212;
	color: #f3f4f6;
	padding: 20px;
	z-index: 1000;
	display: none;
	animation: slideUp 0.4s ease forwards;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
	border-top: 1px solid orange;
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.cookie-content p {
	flex: 1 1 70%;
	font-size: 0.95rem;
	margin: 0;
}

.cookie-btn {
	background-color: orange;
	color: #000;
	border: none;
	padding: 10px 20px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.cookie-btn:hover {
	background-color: rgb(209, 172, 103);
}

@keyframes slideUp {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

.policy {
	padding: 60px 0;
	background: linear-gradient(120deg, #076bed, orange);
}

.policy h4 {
	font-size: 40px;
	text-align: center;
	margin-bottom: 40px;
}

.policy h3 {
	font-size: 30px;

	margin: 30px 0;
}

.custom-contact {
	padding: 60px 20px;
	background: linear-gradient(120deg, #076bed, orange);
	font-family: 'Inter', sans-serif;
}

.form-wrapper {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-title {
	text-align: center;
	font-size: 28px;
	margin-bottom: 25px;
	color: #0f172a;
}

form input,
form textarea {
	width: 100%;
	padding: 12px 16px;
	margin-bottom: 18px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
	border-color: orange;
	outline: none;
}

.submit-btn {
	width: 100%;
	padding: 14px;
	background: orange;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.submit-btn:hover {
	background: rgb(165, 120, 37);
}

/* Modal */
.contact-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;
	animation: fadeIn 0.3s ease forwards;
}

.contact-modal.hidden {
	display: none;
}

.modal-box {
	background: #ffffff;
	padding: 30px 40px;
	border-radius: 10px;
	max-width: 400px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-box h3 {
	margin-bottom: 10px;
	color: orange;
}

.modal-box p {
	font-size: 16px;
	margin-bottom: 20px;
}

.modal-close {
	padding: 10px 20px;
	border: none;
	background: orange;
	color: #000;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ban-notice-footer {
	background: linear-gradient(135deg, #1e2a38, #437e94);
	color: #fefefe;
	padding: 16px 22px;
	border-radius: 12px;
	margin-top: 35px;
	font-family: 'Helvetica Neue', sans-serif;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	text-align: center;
	animation: slideInNotify 0.9s ease-out;
}
.ban-age-icon {
	font-weight: bold;
	margin-right: 5px;
}
.ban-support-link a {
	color: #f9d423;
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.25s ease;
}
.ban-support-link a:hover {
	color: #ffffff;
}
@keyframes slideInNotify {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.footer-safeplay__container {
	background-color: #1a1a1a;
	color: #f0f0f0;
	padding: 40px 20px;
	font-family: Arial, sans-serif;

	max-width: 900px;
	margin: 0 auto 40px;
}

.footer-safeplay__title {
	font-size: 24px;
	margin-bottom: 20px;
	color: #ffffff;
	text-transform: uppercase;
}

.footer-safeplay__text {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
	color: #dddddd;
}

.footer-safeplay__helplines {
	margin: 10px 0 20px 0;
	padding-left: 20px;
}

.footer-safeplay__helplines li {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 8px;
}

.footer-safeplay__notice {
	background-color: #ffc107;
	color: #222222;
	padding: 15px;
	border-radius: 6px;
	font-weight: bold;
	font-size: 15px;
}
