:root {
	--primary-color: #efa608;
	--secondary-color: #d3b376;
	--accent-color: #ff6b6b;
	--dark-color: #100901;
	--gray-color: #8e9196;
	--light-color: #f6f7f9;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Nobile', serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	color: #333;
}

.header {
	background: #8e9196;
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 2rem;
	cursor: pointer;
	font-size: 40px;
	color: #f6f7f9;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	/* .header-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	} */

	.auth-buttons {
		margin-bottom: 10px;
	}

	.logo {
		font-size: 15px;
	}
}

.auth-buttons {
	display: flex;
	gap: 1rem;
}

.register-btn {
	padding: 0.5rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #865c03;
	color: var(--light-color);
	font-size: 20px;
}

.register-btn:hover {
	color: var(--dark-color);
}

/* Hero Section */
.hero {
	text-align: center;
	color: var(--light-color);
	padding: 200px 20px 50px;
	background-color: #100901;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.hero-content p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: #efa608;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s ease;
}

.cta-button:hover {
	background: #efa608;
}

/* Featured Games Section */
.featured-games {
	padding: 5rem 2rem;
	background: linear-gradient(
		102.3deg,
		rgb(197, 169, 56) 5.9%,
		rgb(235, 214, 168) 64%,
		rgb(209, 189, 41) 89%
	);
	color: var(--light-color);
}

.featured-games h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--light-color);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.game-card {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
	border: 2px solid #000;
}

.game-card:hover {
	transform: translateY(-10px);
}

.game-info {
	padding: 1.5rem;
	color: #000;
}

.game-info h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

/* Categories Section */
.categories {
	padding: 5rem 2rem;
	background: var(--light-color);
}

.categories h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--dark-color);
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.category-card {
	background: linear-gradient(
		102.3deg,
		rgb(232, 195, 48) 5.9%,
		rgb(235, 214, 168) 64%,
		rgb(228, 207, 46) 89%
	);
	color: #000;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-content {
	padding: 1.5rem;
}

.category-content h3 {
	font-size: 20px;
}

.card-container {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}

.casino-card {
	background: #000;
	border: 2px solid #f59e0b;
	border-radius: 16px;
	padding: 60px 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	color: #fff;
}

.logo img {
	height: 100px;
	object-fit: contain;
}

.bonus,
.refunded {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.bonus .icon,
.refunded .icon {
	font-size: 24px;
	color: #f59e0b;
}

.bonus .title,
.refunded .title {
	font-weight: bold;
}

.rating {
	text-align: center;
	font-size: 14px;
}

.rating .score {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
}

.rating .stars {
	color: #f59e0b; /* orange stars */
	font-size: 18px;
}

.rating .votes {
	color: #aaa;
}

.cta a {
	display: inline-block;
	background: #f59e0b;
	color: white;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: bold;
	text-decoration: none;
	transition: background 0.3s ease;
}

.cta a:hover {
	background: #714c0b;
}

@media (max-width: 768px) {
	.casino-card {
		flex-direction: column;
		text-align: center;
	}

	.bonus,
	.refunded {
		justify-content: center;
	}
}

/* Contact Section Styles */
.contact {
	padding: 5rem 0;
	color: #000;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.form-container {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid var(--dark-color);
	padding: 2rem;
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: none;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.2);
	color: #000;
	border: 2px solid #000;
}

.form-group option {
	background: var(--dark-color);
}

.submit-button {
	width: 100%;
	padding: 1rem;
	background: #efa608;
	border: 2px solid #efa608;
	border-radius: 10px;
	color: var(--dark-color);
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-button:hover {
	background: var(--light-color);
}

.map-container {
	grid-column: span 2;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.footer {
	background: #8e9196;
	color: var(--light-color);
	padding: 4rem 0 2rem;
}

footer {
	background-color: #111;
	color: #eee;
	font-family: sans-serif;
	padding: 40px 0;
	font-size: 14px;
}

.foot-con {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer-logo h2 {
	font-size: 28px;
	font-weight: bold;
	color: #d946ef;
	text-align: center;
}

.footer-logos {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #efa608;
	padding: 10px;
	border-radius: 5px;
}

.footer-logos img {
	height: 30px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.footer-logos img:hover {
	filter: grayscale(0%);
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-top: 40px;
}

.footer-col {
	flex: 1 1 220px;
	min-width: 220px;
}

.footer-col h3 {
	font-size: 15px;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.footer-col p {
	color: #000;
	line-height: 1.5;
}

.footer-col a {
	color: #d946ef;
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid #000;
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
	color: #888;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.footer-links li a {
	color: #eee;
	text-decoration: none;
	font-weight: bold;
}

.footer-links li a:hover {
	color: #d946ef;
}

.footer p {
	color: #000;
}

.disclaimer {
	font-size: 12px;
	margin-top: 6px;
}

@media (max-width: 768px) {
	.contact-content {
		grid-template-columns: 1fr;
	}

	.nav-container {
		flex-direction: column;
		gap: 1rem;
	}

	.contact-cards {
		grid-template-columns: 1fr;
	}
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #111;
	color: #fff;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
	font-size: 15px;
}

.cookie-button {
	background-color: #00c77b;
	color: white;
	padding: 8px 18px;
	font-weight: bold;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.cookie-button:hover {
	background-color: #00a96a;
}

@media (min-width: 640px) {
	.cookie-banner {
		flex-direction: row;
		justify-content: space-between;
		padding: 16px 40px;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}

	.contact-container {
		grid-template-columns: 1fr;
	}
}

.iti {
	width: 100%;
}

.iti__country-list {
	background: var(--dark-color) !important;
}

/* Styles for Privacy Policy and Terms of Use pages */
.privacy-policy,
.terms-of-use {
	padding: 4rem 0;
}

.policy-content,
.terms-content {
	max-width: 800px;
	margin: 0 auto;
}

.policy-content h2,
.terms-content h2 {
	color: var(--primary);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.policy-content p,
.terms-content p {
	margin-bottom: 1rem;
}

.terms-content p a {
	color: var(--primary-color);
}

.policy-content ul,
.terms-content ul {
	list-style-type: disc;
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.policy-content li,
.terms-content li {
	margin-bottom: 0.5rem;
}
.page-header {
	padding: 8rem 0 2rem;
	text-align: center;
}

.page-header h1 {
	font-size: 2.5rem;
	animation: fadeInUp 1s ease;
	margin-top: 30px;
}

.page-hero {
	background-color: var(--primary-color);
	color: var(--primary);
	text-align: center;
	padding: 10px;
	margin-top: 115px;
}

.page-hero h1 {
	font-size: 3rem;

	margin-bottom: 1rem;
}

.page-hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
	.page-header h1 {
		font-size: 24px;
	}
}

/* Cookie popup */
.cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background-color: var(--dark-color);
	color: white;
	padding: 1rem;
	border-radius: 20px;
	text-align: center;
	z-index: 1000;
	display: none;
}

.cookie-popup a {
	color: #2db3a3;
}

.cookie-popup.show {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-popup p {
	margin: 0;
	padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.cookie-popup.show {
		gap: 8px;
		flex-direction: column;
	}
}

.btn {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: var(--secondary);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.age-warning {
	background: linear-gradient(to right, #d2143a, #cc0033);
	color: white;
	font-family: sans-serif;
	font-size: 16px;
	font-weight: 500;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	max-width: 100%;
	margin: 0 auto 50px;
}

.age-warning .badge {
	font-weight: bold;
	font-size: 18px;
	padding: 6px 12px;
	border: 2px solid white;
	border-radius: 6px;
	display: inline-block;
}

.age-warning .message {
	line-height: 1.4;
}

@media (max-width: 600px) {
	.age-warning {
		flex-direction: column;
		align-items: flex-start;
		font-size: 15px;
	}

	.age-warning .badge {
		font-size: 16px;
	}
}
