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

body {
	font-family: 'Lora', serif;
	color: #fff;
	background-color: #e0d15f;
}

.w {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	position: fixed;
	width: 100%;
	padding: 15px 0;
	background: #43513e;

	z-index: 10;
}

.h-w {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 30px;
	color: #ebbf0c;
	text-decoration: none;
	display: block;
}

nav {
	display: flex;
	gap: 20px;
}

nav a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 22px;
}

nav a:hover {
	color: #ebbf0c;
}

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

.burger div {
	width: 25px;
	height: 3px;
	background: #fff;
}

.mobile-nav {
	display: none;
	flex-direction: column;
	background: #1a1a1a;
	position: absolute;
	top: 60px;
	right: 20px;
	padding: 20px;
}

.mobile-nav a {
	color: #fff;
	margin-bottom: 10px;
}

.hero {
	padding: 130px 0;
	color: #000;
}

.hero h1 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 0.5rem;
}

.subtitle {
	font-size: 1.1rem;
	color: var(--accent);
	margin-bottom: 2rem;
	text-align: center;
}

.lotto-card {
	background: var(--bg-light);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	width: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: fadeIn 1s ease;
}

.jackpot {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary);
	margin-bottom: 1rem;
}

.draw-date {
	font-size: 1rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.timer {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.time-box {
	background: var(--accent);
	color: #000;
	padding: 0.8rem 1.2rem;
	border-radius: 10px;
	font-weight: bold;
	min-width: 70px;
	text-align: center;
	animation: bounce 1.2s infinite alternate;
}

.numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 2rem;
}

.number {
	background: #fff;
	color: #000;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.number:hover {
	transform: scale(1.1);
}

.number.bonus {
	background: var(--accent);
}

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

@keyframes bounce {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-5px);
	}
}

@media (max-width: 480px) {
	.jackpot {
		font-size: 2rem;
	}
	.time-box {
		min-width: 60px;
		padding: 0.6rem 0.8rem;
	}
	.number {
		width: 40px;
		height: 40px;
	}
}

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

	.burger {
		display: flex;
	}

	.mobile-nav.active {
		display: flex;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1.3rem;
	}
}

.play-btn {
	margin-top: 30px;
	display: inline-block;
	padding: 15px 30px;
	font-size: 1.3rem;
	background: linear-gradient(45deg, #ebbf0c, #391a05);
	color: #000;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 0 10px #ebbf0c;
	animation: pulse 2s infinite;
	transition:
		transform 0.5s ease,
		box-shadow 0.5s ease;
}

.play-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px #ff6600;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 10px #ebbf0c;
	}
	50% {
		box-shadow: 0 0 20px #ff6600;
	}
	100% {
		box-shadow: 0 0 10px #ebbf0c;
	}
}

.game {
	background-image: url('../img/bg.png');
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	padding: 40px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2rem;
	color: #000;
}

.games-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}

.lotto-box {
	max-width: 400px;
	width: 100%;
	border-radius: 20px;
	background-color: #00cc66;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	animation: slideUp 0.6s ease-in-out;
}

.lotto-title {
	padding: 1.2rem;
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
	color: #000;
}

.style-orange {
	background: linear-gradient(135deg, #ffa751, #ffe259);
}

.style-blue {
	background: linear-gradient(135deg, #6dd5ed, #2193b0);
}

.style-purple {
	background: linear-gradient(135deg, #c471f5, #fa71cd);
}

.lotto-numbers {
	/* background: #ffffff; */
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	padding: 1rem 0;
	color: #000;
}

.ball {
	width: 40px;
	height: 40px;

	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.ball:hover {
	transform: scale(1.1);
}

.ball-special {
	background: #ffd700;
	color: #000;
}

.lotto-details {
	/* background: #f9f9f9; */
	padding: 1rem 1.5rem;
	font-size: 0.95rem;
	color: #000;
}

.lotto-details li {
	margin-bottom: 0.5rem;
	color: #000;
}

.lotto-button {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 100%;
	padding: 1rem;
	font-weight: bold;
	font-size: 1rem;
	border: none;
	color: #000;
	cursor: pointer;
	transition: background 0.3s ease;
}

.btn-orange {
	background: #ff7043;
}

.btn-orange:hover {
	background: #f4511e;
}

.btn-blue {
	background: #1e88e5;
}

.btn-blue:hover {
	background: #1565c0;
}

.btn-purple {
	background: #9c27b0;
}

.btn-purple:hover {
	background: #6a1b9a;
}

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

@media (max-width: 480px) {
	.ball {
		width: 34px;
		height: 34px;
		font-size: 0.9rem;
	}
}

.advantages {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 60px 20px;
	justify-content: center;
}

.advantage {
	background: #fff;
	border-radius: 20px;
	padding: 30px 20px;
	max-width: 320px;
	flex: 1 1 260px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
}

.advantage:hover {
	transform: translateY(-5px);
	background: #f7f4f0;
}

.adv-icon {
	font-size: 36px;
	margin-bottom: 15px;
}

.advantage h3 {
	font-size: 25px;
	margin-bottom: 10px;
	color: #b14900;
}

.advantage p {
	font-size: 18px;
	color: #333;
}

/* INSTRUCTIONS SECTION */
.instructions {
	background: linear-gradient(135deg, #274e13, #1c3520);
	padding: 60px 20px;
	color: #f4f4f4;
	text-align: center;
}

.instructions h2 {
	font-size: 26px;
	margin-bottom: 40px;
	font-weight: 600;
}

.step-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}

.step {
	background: #fff;
	color: #1c3520;
	border-radius: 20px;
	padding: 25px;
	max-width: 280px;
	flex: 1 1 240px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.step:hover {
	transform: scale(1.05);
}

.step-number {
	background: #ebbf0c;
	color: #000;
	width: 36px;
	height: 36px;
	margin: 0 auto 15px;
	border-radius: 50%;
	font-size: 18px;
	line-height: 36px;
	font-weight: bold;
}

.step h4 {
	font-size: 25px;
	margin-bottom: 10px;
}

.step p {
	font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
	.advantages,
	.step-list {
		flex-direction: column;
		align-items: center;
	}
}

.faq-section {
	padding: 60px 20px;
	color: #1a1a1a;
	font-family: 'Segoe UI', Tahoma, sans-serif;
	text-align: center;
}

.faq-section h2 {
	font-size: 26px;
	margin-bottom: 40px;
	color: #b14900;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.faq-item {
	background: #ffffff;
	border-radius: 12px;
	margin-bottom: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: transform 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-2px);
}

.faq-question {
	width: 100%;
	padding: 18px 24px;
	font-size: 16px;
	font-weight: bold;
	background: none;
	border: none;
	color: #1a1a1a;
	text-align: left;
	cursor: pointer;
	position: relative;
	outline: none;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 24px;
	font-size: 20px;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	content: '−';
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 24px;
	background: #f7f4f0;
	color: #333;
	transition:
		max-height 0.4s ease,
		padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 16px 24px;
}

/* Mobile */
@media (max-width: 600px) {
	.faq-question {
		font-size: 15px;
	}

	.faq-answer {
		font-size: 14px;
	}
}

.site-footer {
	background: #1c3520;
	color: #f4f4f4;
	padding: 50px 20px 20px;
	font-family: 'Segoe UI', Tahoma, sans-serif;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-brand {
	flex: 1 1 300px;
}

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

.footer-description {
	font-size: 20px;
	line-height: 1.6;
	color: #ddd;
	max-width: 900px;
	margin: 0 auto;
}

.footer-links,
.footer-policies {
	flex: 1 1 180px;
}

.footer-links h4,
.footer-policies h4 {
	margin-bottom: 15px;
	font-size: 16px;
	color: #ffddb8;
}

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

.footer-links li,
.footer-policies li {
	margin-bottom: 12px;
}

.footer-links a,
.footer-policies a {
	color: #f4f4f4;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	transition: color 0.3s ease;
}

.footer-links a img {
	width: 18px;
	height: 18px;
	margin-right: 8px;
	filter: brightness(90%);
}

.footer-links a:hover,
.footer-policies a:hover {
	color: #ffa052;
}

.footer-bottom {
	text-align: center;
	margin-top: 40px;
	font-size: 16px;
	color: #bbb;
	border-top: 1px solid #3a5a44;
	padding-top: 20px;
}

.gambling-support {
	background: #ebbf0c;
	padding: 40px 20px;
	text-align: center;
	margin: 30px 0;
}

.support-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	align-items: center;
}

.support-logo {
	display: inline-block;
	transition:
		transform 0.3s ease,
		filter 0.3s ease;
	border-radius: 8px;
}

.support-logo img {
	max-height: 80px;
	width: auto;
	object-fit: contain;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.support-logo:hover img {
	transform: scale(1.07);
	filter: brightness(1.05);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
	.support-logos {
		gap: 20px;
	}

	.support-logo img {
		width: auto;
		max-height: 60px;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.footer-top {
		flex-direction: column;
		align-items: flex-start;
	}

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

.cookie-box {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #ffcc00;
	border: 2px solid #000;
	border-radius: 10px;
	padding: 20px;
	max-width: 600px;
	z-index: 1000;

	animation: slideIn 1s ease-in-out;
}

.cookie-box p {
	font-size: 0.7rem;
	color: #000;
	margin-bottom: 15px;
	line-height: 1.5;
}

.cookie-box button {
	padding: 10px 20px;
	font-size: 0.7rem;
	background: #fff;
	color: #000;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

.cookie-box button:hover {
	background: #ffaa00;
}

@keyframes slideIn {
	0% {
		transform: translateX(120%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.modal-age {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.95);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.modal-age.show {
	display: flex;
}

.modal-content {
	background-color: #1a1a1a;
	border: 3px solid #ffcc00;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	max-width: 400px;
	box-shadow: 0 0 20px rgba(255, 204, 0, 0.6);
	animation: popIn 0.6s ease-out;
}

.modal-content h2 {
	color: #ffcc00;
	margin-bottom: 20px;
	font-size: 1rem;
}

.modal-content button {
	margin: 10px;
	padding: 10px 20px;
	font-size: 0.75rem;
	background: linear-gradient(45deg, #ffcc00, #ff6600);
	color: #000;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

.modal-content button:hover {
	background: #ffaa00;
}

@keyframes popIn {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

.privacy-header {
	background: linear-gradient(135deg, #1c3520, #2f5e41);
	color: #fff;
	padding: 120px 20px 40px;
	text-align: center;
	animation: fadeIn 1s ease-out;
}

.privacy-header h1 {
	font-size: 36px;
	margin-bottom: 10px;
}

.privacy-header p {
	font-size: 16px;
	max-width: 700px;
	margin: 0 auto;
	color: #e4e4e4;
}

.privacy-section {
	background: #fff;
	padding: 40px 20px;
	border-bottom: 1px solid #f1f1f1;
	animation: fadeSlideUp 0.8s ease-in-out;
}

.privacy-section h2 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #b14900;
}

.privacy-section p {
	font-size: 16px;
	color: #333;
}

.privacy-section ul li {
	color: #333;
	font-size: 16px;
}

.privacy-section.highlighted {
	background: #fff8f2;
	border-left: 6px solid #b14900;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
}

/* Animations */
@keyframes fadeSlideUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

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

/* Responsive */
@media (max-width: 768px) {
	.privacy-header h1 {
		font-size: 28px;
	}

	.privacy-section h2 {
		font-size: 20px;
	}
}

.contact-section {
	max-width: 1200px;
	margin: auto;
	background-image: url(../img/bg.png);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 250px 30px 100px;
	border-left: 2px solid #ffcc00;
	border-right: 2px solid #ffcc00;

	box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
	/* animation: fadeIn 1.5s ease-in-out; */
}

.contact-section h1 {
	color: #000;
	font-size: 2.5rem;
	margin-bottom: 20px;
	text-align: center;
}

.contact-section p.description {
	font-size: 1.2rem;
	color: #000;
	margin-bottom: 30px;
	text-align: center;
}

form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

input,
textarea {
	font-size: 1rem;
	padding: 10px;
	border-radius: 6px;
	border: 2px solid #ffcc00;
	background-color: #1c1c1c;
	color: #fff;
	outline: none;
}

textarea {
	resize: vertical;
	min-height: 80px;
}

button {
	padding: 12px;
	background: linear-gradient(45deg, #ffcc00, #ff6600);
	color: #000;
	font-size: 1.2rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s;
}

button:hover {
	background: #ffaa00;
}

.confirmation {
	margin-top: 20px;
	color: #000;
	background-color: #00cc66;
	padding: 20px;
	border-radius: 20px;
	font-size: 1.5rem;
	text-align: center;
	display: none;
}

.contact-email {
	margin-top: 30px;
	font-size: 1.5rem;
	color: #aaa;
	text-align: center;
}

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

@media (max-width: 600px) {
	input,
	textarea,
	button {
		font-size: 0.6rem;
	}
}
