:root {
	/* Colores base */
	--bg-color: #f4f6f8;
	--text-color: #333;
	--white: #ffffff;
	--shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
	--border-radius: 16px;
	--transition: all 0.3s ease;

	/* Colores Juegos */
	--euromillones: #00488c;
	--primitiva: #008547;
	--bonoloto: #6e851e;
	--gordo: #db3f47;
	--eurodreams: #6b3e98;
	--loteria: #007ac0;
	--quiniela: #ba423f;
	--lototurf: #d16929;
	--quinigol: #2a88b5;
	--quintuple: #eab842;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 40px;
	color: var(--text-color);
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
	margin-top: -30px;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 1.5rem;
		margin-bottom: 28px;
	}

	.section-subtitle {
		font-size: 1rem;
		margin-bottom: 28px;
	}
}

.btn-primary {
	display: inline-block;
	background-color: #001367;
	color: var(--white);
	padding: 15px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: var(--transition);
	box-shadow: 0 4px 15px rgba(0, 19, 103, 0.3);
}

.btn-primary:hover {
	background-color: #000c42;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 19, 103, 0.4);
}

/* Reveal Animations */
.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
