body {
	margin: 0;
	font-family: 'Segoe UI', sans-serif;
	background: #0c0b12;
	color: #fff;
	line-height: 1.6;
}

.cont {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* HERO SECTION */
.hero {
	padding: 4rem 2rem;
	text-align: center;
	background: radial-gradient(ellipse at center, #1b0f30, #0c0b12);
	animation: fadeIn 1.2s ease-in;
}

.hero h1 {
	font-size: 2rem;
	color: #fff;
	text-shadow:
		0 0 10px #e400ff,
		0 0 20px #ff6fe9;
	margin-bottom: 1rem;
}

.hero p {
	max-width: 800px;
	margin: 0 auto;
	color: #ddd;
	font-size: 1rem;
}

/* AVANTAGES SECTION */
.advantages {
	background-color: #1b0f30;
	padding: 3rem 1.5rem;
}

.advantages h2 {
	text-align: center;
	color: #fff;
	font-size: 1.6rem;
	margin-bottom: 2.5rem;
	text-shadow: 0 0 6px #00ffe5;
}

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

.card {
	background: #0f0d1c;
	border: 1px solid #3a3250;
	padding: 2rem 1.5rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 0 15px rgba(144, 0, 255, 0.3);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 0 20px #ff00ff,
		0 0 30px #6f00ff;
}

.card-icon {
	font-size: 2rem;
	color: #ff00ff;
	margin-bottom: 1rem;
	text-shadow: 0 0 6px #ff90ff;
}

.card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	color: #fff;
}

.card p {
	font-size: 0.95rem;
	color: #ccc;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

	.advantages h2 {
		font-size: 1.3rem;
	}

	.card {
		padding: 1.5rem 1rem;
	}
}

header {
	background: linear-gradient(to right, #a02f2f, #1b1b1b, #e2d8b8);
	padding: 1rem 0;

	color: white;
	position: relative;
	z-index: 1000;
}

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

.logo {
	font-size: 1.4rem;
	font-weight: bold;
	white-space: nowrap;
}

nav {
	display: flex;
	gap: 2rem;
}

nav a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

nav a:hover {
	color: #ffd700;
}

/* BURGER BUTTON */
.burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.burger div {
	width: 25px;
	height: 3px;
	background: white;
	border-radius: 2px;
}

/* MODAL MENU (mobile) */
.mobile-menu {
	display: none;
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	background: #1b1b1b;
	padding: 2rem 1.5rem;
	flex-direction: column;
	gap: 1.2rem;
	z-index: 999;
}

.mobile-menu a {
	color: white;
	font-size: 1rem;
	text-decoration: none;
}

.mobile-menu.show {
	display: flex;
	animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	nav {
		display: none;
	}

	.burger {
		display: flex;
	}
}

.bookie-card {
	background: #1a1a1a;
	border: 2px solid #333;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(255, 0, 100, 0.4);
	padding: 20px;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.bookie-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 25px rgba(255, 0, 100, 0.8);
}

.bookie-logo {
	flex: 1 1 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bookie-logo img {
	max-width: 150px;
	background-color: #fff;
	padding: 30px;
	border-radius: 30px;
}

.bookie-info {
	flex: 2 1 300px;
	text-align: center;
}

.bookie-info h3 {
	font-size: 1.3em;
	margin: 5px 0;
	color: #ff0066;
	text-shadow: 0 0 10px #ff0066;
}

.bookie-info p {
	font-size: 1em;
	color: #ccc;
}

.bookie-payments {
	flex: 1 1 100px;
	text-align: center;
}

.bookie-payments img {
	width: 30px;
	margin: 5px;
}

.bookie-bonus {
	flex: 1 1 150px;
	text-align: center;
}

.bookie-bonus a {
	background: #ff0066;
	border: none;
	color: #fff;
	padding: 12px 20px;
	font-size: 1em;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 0 15px #ff0066;
	transition: all 0.3s ease;
	text-decoration: none;
}

.bookie-bonus a:hover {
	background: #ff3399;
	box-shadow:
		0 0 25px #ff3399,
		0 0 10px #ff3399 inset;
}

@media (max-width: 768px) {
	.bookie-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.bookie-logo,
	.bookie-info,
	.bookie-payments,
	.bookie-bonus {
		flex: 1 1 100%;
		margin-bottom: 15px;
	}
}

.tech-section,
.types-section {
	background: #1a1a1a;
	border-radius: 16px;
	padding: 40px 20px;
	margin-bottom: 40px;
	box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.tech-section h2,
.types-section h2 {
	text-align: center;
	font-size: 2em;
	color: #ff0080;
	text-shadow: 0 0 10px #ff0080;
	margin-bottom: 40px;
}

.tech-grid,
.types-grid {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.tech-card,
.type-card {
	background: #222;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(255, 0, 128, 0.2);
	padding: 20px;
	width: 300px;
	text-align: center;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.tech-card:hover,
.type-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

.tech-card img,
.type-card img {
	max-width: 100px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.tech-card h3,
.type-card h3 {
	color: #ff0080;
	font-size: 1.3em;
	margin-bottom: 10px;
	text-shadow: 0 0 5px #ff0080;
}

.tech-card p,
.type-card p {
	color: #ccc;
	font-size: 0.95em;
}

.type-number {
	background: #ff0055;
	color: #fff;
	font-weight: bold;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin: 0 auto 10px;
	border-radius: 50%;
	box-shadow: 0 0 10px #ff0055;
}

@media (max-width: 768px) {
	.tech-card,
	.type-card {
		width: 100%;
	}
}

@media (min-width: 769px) {
	.footer-links,
	.footer-legal {
		flex: 1 1 200px;
	}

	.footer-logo {
		flex: 1 1 250px;
	}
}

.responsable-section,
.cta-section {
	margin: 40px auto;
	max-width: 960px;
	padding: 30px;
	border-radius: 16px;
	text-align: center;
}

.responsable-section {
	background: #1e1e1e;
	box-shadow: 0 0 15px rgba(255, 0, 120, 0.2);
	transition: box-shadow 0.3s ease;
}

.responsable-section:hover {
	box-shadow: 0 0 35px rgba(255, 0, 120, 0.5);
}

.responsable-section h2 {
	font-size: 1.8em;
	color: #ff0077;
	margin-bottom: 10px;
	text-shadow: 0 0 10px #ff0077;
}

.responsable-section p {
	color: #ccc;
	font-size: 1.05em;
	line-height: 1.6em;
}

.cta-section {
	background: linear-gradient(
		135deg,
		rgba(70, 0, 50, 0.85),
		rgba(20, 0, 20, 0.9)
	);
	color: #fff;
	box-shadow: 0 0 20px rgba(255, 0, 100, 0.3);
	transition: transform 0.3s ease;
}

.cta-section:hover {
	transform: scale(1.02);
}

.cta-section h2 {
	font-size: 1.9em;
	margin-bottom: 20px;
	color: #ff99cc;
	text-shadow: 0 0 12px #ff99cc;
}

.cta-section p {
	font-size: 1.1em;
	margin-bottom: 30px;
}

.cta-btn {
	background: #ff0055;
	padding: 15px 30px;
	border: none;
	font-size: 1em;
	color: #fff;
	border-radius: 50px;
	cursor: pointer;
	transition:
		background 0.3s ease,
		box-shadow 0.3s ease;
	box-shadow: 0 0 10px #ff0055;
}

.cta-btn:hover {
	background: #ff3377;
	box-shadow:
		0 0 20px #ff3377,
		0 0 8px #ff3377 inset;
}

@media (max-width: 768px) {
	.responsable-section,
	.cta-section {
		padding: 20px;
	}

	.cta-section h2 {
		font-size: 1.5em;
	}

	.cta-btn {
		width: 100%;
		max-width: 280px;
	}
}

.footer {
	background: #15151f;
	padding: 40px 20px 10px;
	box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}

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

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
}

.footer-logo img {
	max-width: 160px;
	margin-bottom: 15px;
}

.footer-description {
	font-size: 0.95em;
	color: #aaa;
}

.footer-links h4,
.footer-legal h4 {
	font-size: 1.1em;
	color: #ff0077;
	margin-bottom: 10px;
	text-shadow: 0 0 8px #ff0077;
}

.footer-links ul,
.footer-legal ul {
	list-style: none;
	padding: 0;
}

.footer-links li,
.footer-legal li {
	margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
	color: #ff66aa;
}

.footer-badges {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	margin: 30px 0;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: 10px;
	border-radius: 30px;
}

.footer-badges img {
	display: block;
	max-height: 40px;
	transition: transform 0.3s ease;
}

.footer-badges img:hover {
	transform: scale(1.1);
}

.footer-disclaimer {
	font-size: 1em;
	color: #fff;
	margin: 20px 0;
	line-height: 1.6;
	text-align: center;
}

.footer-copy {
	text-align: center;
	border-top: 1px solid #333;
	padding-top: 20px;
	font-size: 0.85em;
	color: #777;
}

@media (max-width: 768px) {
	.footer-top {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-links,
	.footer-legal {
		margin-top: 20px;
	}

	.footer-badges {
		justify-content: center;
	}
}

.consent-box {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #e0e5ec;
	box-shadow:
		9px 9px 16px #b8bec6,
		-9px -9px 16px #ffffff;
	padding: 20px 30px;
	border-radius: 20px;
	z-index: 9999;
	animation: fadeInUp 1s ease-out;
	/* display: block; */
}

.consent-box p {
	margin: 0 0 10px 0;
	color: #000;
}

.consent-box button {
	background: #e0e5ec;
	border: none;
	padding: 10px 20px;
	border-radius: 30px;
	color: #000;
	box-shadow:
		inset 3px 3px 6px #b8bec6,
		inset -3px -3px 6px #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.consent-box button:hover {
	box-shadow:
		3px 3px 6px #b8bec6,
		-3px -3px 6px #ffffff;
}

.hidden {
	display: none;
}

/* Modal Style */
.age-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(20, 20, 20, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	animation: fadeIn 1s ease-in-out;
}

.age-modal-content {
	background: #e0e5ec;
	padding: 40px;
	border-radius: 25px;
	text-align: center;
	box-shadow:
		10px 10px 20px #b8bec6,
		-10px -10px 20px #ffffff;
	max-width: 400px;
	animation: popUp 0.8s ease;
}

.age-modal-content h2,
.age-modal-content p {
	color: #000;
}

.age-modal-content button {
	margin-top: 20px;
	padding: 12px 25px;
	font-size: 16px;
	border: none;
	border-radius: 30px;
	background: #e0e5ec;
	box-shadow:
		inset 4px 4px 8px #b8bec6,
		inset -4px -4px 8px #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.age-modal-content button:hover {
	box-shadow:
		4px 4px 8px #b8bec6,
		-4px -4px 8px #ffffff;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes popUp {
	from {
		transform: scale(0.6);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.contact-section {
	background: url('https://source.unsplash.com/1600x900/?casino,bet')
		center/cover no-repeat;
	padding: 60px 20px;
	display: flex;
	justify-content: center;
}

.contact-card {
	background: #ffffffcc;
	padding: 30px;
	max-width: 480px;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #1a1a1a;
}

.contact-info {
	font-size: 14px;
	margin-bottom: 25px;
	color: #333;
	line-height: 1.6;
}

form input,
form textarea {
	width: 100%;
	margin-bottom: 15px;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
}

form button {
	width: 100%;
	background: #b30047;
	color: #fff;
	padding: 12px;
	font-size: 16px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}

form button:hover {
	background: #8a0034;
}

/* Modal Styles */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	background: rgba(0, 0, 0, 0.7);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-content {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h3,
.modal-content p {
	color: #000;
}

.modal-content button {
	margin-top: 15px;
	background: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
}

.gitprosa-warning-section {
	background: #fdfdfd;
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	color: #1a1a1a;
}

.gitprosa-warning-container {
	max-width: 880px;
	margin: auto;
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	line-height: 1.7;
}

.gitprosa-warning-container h2 {
	text-align: center;
	font-size: 28px;
	color: #b30047;
	margin-bottom: 30px;
}

.gitprosa-warning-container h3 {
	font-size: 20px;
	color: #333;
	margin-top: 30px;
	margin-bottom: 10px;
}

.gitprosa-warning-container p {
	font-size: 15px;
	margin-bottom: 15px;
	text-align: justify;
}

@media (max-width: 600px) {
	.gitprosa-warning-container {
		padding: 25px;
	}

	.gitprosa-warning-container h2 {
		font-size: 24px;
	}

	.gitprosa-warning-container h3 {
		font-size: 18px;
	}
}
