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

body {
	font-family: 'PT Sans', sans-serif;
	font-weight: 400;
	font-style: normal;
}

.hero-section {
	background: radial-gradient(circle at center, #111827 0%, #0f172a 100%);
	color: #e2e8f0;
	font-family: 'Poppins', sans-serif;
	padding: 8rem 1rem;
	text-align: center;
}

.banner-top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	background-color: #4b5563;
	color: #f8fafc;
	font-size: 13px;
	padding: 0.5rem;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	z-index: 10;
}

.banner-top img {
	width: 50px;
}

.container {
	max-width: 920px;
	margin: auto;
	position: relative;
	z-index: 1;
}

.site-title img {
	width: 180px;
	transition: all 0.5s ease;
	margin-bottom: 60px;
}

.site-title img:hover {
	transform: scale(1.05);
}

.main-heading {
	font-size: 2rem;
	font-weight: 700;
	color: #f9fafb;
	margin-bottom: 1.2rem;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.intro-text {
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.advantages-list {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	padding: 0;
	margin: 0 0 50px 0;
}

.advantages-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.1);
	padding: 12px 20px;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.advantages-list li img {
	width: 30px;
}

.advantages-list li:hover {
	background: rgba(255, 255, 255, 0.2);
}

.glow-card {
	background-color: #e8f0f8;
	border: 1px solid #334155;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	flex-wrap: wrap;
	gap: 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.glow-card:hover {
	transform: translateY(-4px);
}

.glow-logo img {
	max-height: 80px;
	filter: brightness(1.2);
}

.glow-info {
	text-align: center;
	flex-grow: 1;
	color: #e0f2fe;
}

.glow-info .votes {
	font-size: 14px;
	color: #0f172a;
	margin-bottom: 0.8rem;
}

.glow-info .score {
	font-size: 28px;
	font-weight: 900;
	color: #34d399;
}

.glow-info .bonus {
	color: #552df4;
	font-size: 15px;
	margin-top: 0.8rem;
}

.visit-btn {
	background: linear-gradient(to right, #22d3ee, #a78bfa);
	color: #0f172a;
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.3);
	transition: all 0.3s ease;
}

.visit-btn:hover {
	background: linear-gradient(to right, #0ea5e9, #8b5cf6);
	color: #fff;
	box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}

.seccion-informativa {
	background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	color: #222;
}

.seccion-informativa .contenedor {
	max-width: 1000px;
	margin: 0 auto;
}

footer {
	background: #111;
	padding: 40px 0;
}

.bloque-info {
	margin-bottom: 40px;
	padding: 30px;
	background: #fff;
	border-left: 6px solid #0178d4;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.bloque-info:hover {
	transform: translateY(-4px);
}

.bloque-info h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: #0c3968;
}

.bloque-info p {
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
}

.block-avertissement {
	background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
	border-left: 5px solid #ff3e3e;
	color: #f2f2f2;
	padding: 2rem;
	margin: 3rem auto;
	max-width: 850px;
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
}

.avertissement-wrapper h2 {
	font-size: 1.6rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
	color: #ff5e5e;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #ff5e5e;
	padding-bottom: 0.5rem;
}

.avertissement-wrapper p {
	margin: 1rem 0;
}

.avertissement-wrapper strong {
	color: #ffffff;
	font-weight: bold;
	background: rgba(255, 94, 94, 0.15);
	padding: 0.1rem 0.3rem;
	border-radius: 4px;
}

.f-link {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	padding: 1.5rem 1rem;

	border-top: 2px solid #2c2c2c;
	border-bottom: 2px solid #2c2c2c;
}

.f-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.3rem;
	background-color: #1e1e1e;
	border-radius: 6px;
	transition:
		transform 0.2s ease,
		box-shadow 0.3s ease;
}

.f-link a:hover {
	transform: scale(1.05);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

.f-link img {
	height: 36px;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%) brightness(1.2);
	transition: filter 0.3s ease;
}

.f-link a:hover img {
	filter: grayscale(0%) brightness(1.1);
}

@media (max-width: 500px) {
	.f-link img {
		height: 28px;
	}
}

.bot {
	text-align: center;
	color: #ffffff;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(90deg, #111, #1c1c1c);
	color: #fff;
	z-index: 9999;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease-in-out;
}

.cookie-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

.cookie-container p {
	font-size: 0.95rem;
	line-height: 1.4;
}

.cookie-btn {
	background: #00c078;
	color: #fff;
	border: none;
	padding: 0.7rem 1.5rem;
	border-radius: 30px;
	cursor: pointer;
	font-weight: bold;
	box-shadow: 0 0 10px rgba(0, 192, 120, 0.4);
	transition: background 0.3s;
}

.cookie-btn:hover {
	background: #00a364;
}

.hidden {
	display: none;
}

.legal-links {
	text-align: center;
	margin: 3rem auto;
	padding: 1rem;
}

.legal-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.legal-links li a {
	position: relative;
	font-size: 0.95rem;
	font-weight: 600;
	color: #ffffff;
	background: linear-gradient(90deg, #14b8a6, #6366f1);
	padding: 0.5rem 1rem;
	border-radius: 30px;
	text-decoration: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.3s;
	box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.legal-links li a:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(99, 102, 241, 0.7);
}

.hero-section-p {
	padding: 2rem 1rem;
}
.hero-section-p img {
	margin: 0;
}

.jeu-responsable {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: #f1f5f9;
	padding: 3rem 1.5rem;
	font-family: 'Segoe UI', sans-serif;
}

.jeu-responsable h1 {
	text-align: center;
	font-size: 2.2rem;
	color: #38bdf8;
	margin-bottom: 1rem;
}

.jeu-responsable h2 {
	margin-top: 2rem;
	font-size: 1.4rem;
	color: #7dd3fc;
}

.tips-list,
.warning-list,
.support-links {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.tips-list li,
.warning-list li {
	margin-bottom: 0.5rem;
	list-style: disc;
}

.support-links li {
	margin-bottom: 0.5rem;
	list-style: none;
}

.support-links a {
	color: #93c5fd;
	text-decoration: underline;
}

.update-date {
	text-align: center;
	font-size: 0.85rem;
	color: #cbd5e1;
	margin-top: 3rem;
	font-style: italic;
}
