body {
	margin: 0;
	padding: 0;
	font-family: 'Changa', sans-serif;
	background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
	color: #e8e8e8;
}

.site-header {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6, #1d4ed8);
	color: #fff;
	padding: 1rem 1.5rem;
	position: relative;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
	animation: headerGlow 3s ease-in-out infinite alternate;
}

@keyframes headerGlow {
	0% { box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3); }
	100% { box-shadow: 0 4px 30px rgba(59, 130, 246, 0.6); }
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.brand-logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.brand-logo:hover::before {
	left: 100%;
}

.brand-logo:hover {
	transform: scale(1.05);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.brand-logo img {
	height: 36px;
	width: auto;
}

.desktop-nav {
	display: flex;
	gap: 1.5rem;
}

.desktop-nav a {
	color: #f0f0f0;
	text-decoration: none;
	font-weight: 600;
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.desktop-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #60a5fa, #3b82f6);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.desktop-nav a:hover::after {
	width: 100%;
}

.desktop-nav a:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	font-size: 1.5rem;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
}

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

	.nav-toggle {
		display: block;
	}
}

/* 🍭 Cookie Banner */
.fun-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
	color: #1f2937;
	font-weight: 700;
	text-align: center;
	padding: 1.2rem 1.5rem;
	box-shadow: 0 -8px 25px rgba(251, 191, 36, 0.4);
	z-index: 9999;
	animation: slideUp 0.6s ease forwards;
	border-top: 3px solid #d97706;
}

.fun-cookie-banner p {
	margin: 0 0 0.8rem;
	font-size: 1.1rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.fun-cookie-button {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	color: #fff;
	padding: 0.8rem 1.8rem;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
	position: relative;
	overflow: hidden;
}

.fun-cookie-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.fun-cookie-button:hover::before {
	left: 100%;
}

.fun-cookie-button:hover {
	background: linear-gradient(135deg, #b91c1c, #dc2626);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

/* 🔞 Age Gate Modal */
.lotto-age-gate {
	position: fixed;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(30, 58, 138, 0.9));
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.5s ease forwards;
	backdrop-filter: blur(10px);
}

.age-gate-popup {
	background: linear-gradient(135deg, #1e293b, #334155, #475569);
	border: 3px solid #3b82f6;
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	max-width: 450px;
	width: 90%;
	box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
	animation: popIn 0.4s ease;
	position: relative;
	overflow: hidden;
}

.age-gate-popup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd);
	animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.age-gate-popup h3 {
	color: #60a5fa;
	margin-bottom: 0.8rem;
	font-size: 1.5rem;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.age-gate-popup p {
	color: #e2e8f0;
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.age-btn-yes {
	background: linear-gradient(135deg, #10b981, #059669);
	color: #fff;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	margin: 0.5rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
	position: relative;
	overflow: hidden;
}

.age-btn-yes::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.age-btn-yes:hover::before {
	left: 100%;
}

.age-btn-yes:hover {
	transform: scale(1.05) translateY(-2px);
	background: linear-gradient(135deg, #059669, #10b981);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.age-btn-no {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: #fff;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	margin: 0.5rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
	position: relative;
	overflow: hidden;
}

.age-btn-no::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.age-btn-no:hover::before {
	left: 100%;
}

.age-btn-no:hover {
	transform: scale(1.05) translateY(-2px);
	background: linear-gradient(135deg, #dc2626, #ef4444);
	box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

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

	to {
		opacity: 1;
	}
}

@keyframes popIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 500px) {
	.age-gate-popup h3 {
		font-size: 1.3rem;
	}

	.fun-cookie-banner p {
		font-size: 0.9rem;
	}

	.fun-cookie-button,
	.age-btn-yes,
	.age-btn-no {
		width: 100%;
		margin: 0.4rem 0;
	}
}

.lucky-blast {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6, #1d4ed8, #1e40af);
	color: #f8fafc;
	text-align: center;
	padding: 6rem 2rem;
	font-family: 'Changa', sans-serif;
	position: relative;
	overflow: hidden;
	animation: heroGlow 8s infinite alternate ease-in-out;
}

.lucky-blast::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

@keyframes heroGlow {
	0% { 
		box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
		background: linear-gradient(135deg, #1e3a8a, #3b82f6, #1d4ed8, #1e40af);
	}
	100% { 
		box-shadow: 0 0 80px rgba(59, 130, 246, 0.6);
		background: linear-gradient(135deg, #1d4ed8, #3b82f6, #1e3a8a, #1e40af);
	}
}

.blast-inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem;
	position: relative;
	z-index: 2;
}

.blast-title {
	font-size: 4rem;
	font-weight: 900;
	letter-spacing: 2px;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #60a5fa, #3b82f6, #1d4ed8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 30px rgba(96, 165, 250, 0.8);
	animation: titlePulse 3s ease-in-out infinite alternate;
}

@keyframes titlePulse {
	0% { transform: scale(1); }
	100% { transform: scale(1.02); }
}

.blast-subtext {
	font-size: 1.4rem;
	color: #e2e8f0;
	margin-bottom: 3rem;
	line-height: 1.8;
	font-weight: 500;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blast-timer {
	display: flex;
	justify-content: center;
	gap: 1.8rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
	font-family: 'Share Tech Mono', monospace;
}

.blast-timer div {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.2rem 1.8rem;
	border-radius: 10px;
	border: 2px solid #00e5ff;
	box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
	backdrop-filter: blur(8px);
	transition: transform 0.3s ease;
}

.blast-timer div:hover {
	transform: scale(1.05);
}

.timer-wrapper {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.8));
	border: 2px solid #60a5fa;
	padding: 2.5rem 2rem;
	max-width: 500px;
	margin: 3rem auto;
	text-align: center;
	font-family: 'Changa', sans-serif;
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.timer-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #60a5fa, #93c5fd, #60a5fa);
	animation: timerShimmer 3s ease-in-out infinite;
}

@keyframes timerShimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.timer-label {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fbbf24;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.timer-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.time-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem 1.5rem;
	background: linear-gradient(135deg, #1e293b, #334155);
	border: 2px solid #60a5fa;
	border-radius: 15px;
	min-width: 90px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.time-unit::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
	transition: left 0.5s ease;
}

.time-unit:hover::before {
	left: 100%;
}

.time-unit:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(96, 165, 250, 0.4);
}

.time-unit span {
	font-size: 2.5rem;
	font-weight: 900;
	color: #fbbf24;
	line-height: 1.2;
	text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.time-unit em {
	font-size: 0.8rem;
	color: #e2e8f0;
	margin-top: 0.5rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
}

.divider {
	font-size: 2.5rem;
	font-weight: bold;
	color: #60a5fa;
	text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
	animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}


.blast-call {
	background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
	color: #1f2937;
	padding: 1.2rem 3rem;
	border-radius: 60px;
	font-size: 1.3rem;
	font-weight: 800;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 2px solid #d97706;
}

.blast-call::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.6s ease;
}

.blast-call:hover::before {
	left: 100%;
}

.blast-call:hover {
	background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24);
	transform: scale(1.05) translateY(-3px);
	box-shadow: 0 12px 35px rgba(251, 191, 36, 0.7);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes glowPulse {
	0% {
		box-shadow: 0 0 40px rgba(0, 255, 200, 0.2);
	}

	100% {
		box-shadow: 0 0 80px rgba(0, 255, 200, 0.6);
	}
}

@media (max-width: 600px) {
	.blast-title {
		font-size: 2rem;
	}

	.blast-subtext {
		font-size: 1rem;
	}

	.timer-grid {
		flex-direction: column;
		gap: 0.5rem;
	}

	.divider {
		display: none;
	}
}


.lucky-benefits {
	background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
	padding: 5rem 1.5rem;
	position: relative;
	overflow: hidden;
}

.lucky-benefits::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
	opacity: 0.3;
}

.benefits-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.benefits-heading {
	font-size: 3rem;
	font-weight: 900;
	background: linear-gradient(135deg, #60a5fa, #3b82f6, #1d4ed8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 4rem;
	text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.benefits-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 2.5rem;
}

@media (max-width: 768px) {
	.benefits-cards {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(6, auto);
	}
}

.benefit-card {
	background: linear-gradient(135deg, #1e293b, #334155);
	border: 2px solid #475569;
	border-radius: 25px;
	padding: 2.5rem 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.benefit-card:hover::before {
	transform: scaleX(1);
}

.benefit-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
	border-color: #60a5fa;
}

.benefit-icon-new {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #fbbf24;
	text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
	animation: iconFloat 3s ease-in-out infinite;
}

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

.benefit-card p {
	font-size: 1.1rem;
	color: #e2e8f0;
	line-height: 1.7;
	font-weight: 500;
}


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

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounceIcon {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-4px);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.benefits-wrap {
		flex-direction: column;
		align-items: stretch;
	}

	.benefits-gallery {
		grid-template-columns: 1fr 1fr;
	}

	.benefits-title {
		font-size: 1.6rem;
		text-align: center;
	}

	.benefits-text,
	.benefits-gallery {
		width: 100%;
	}
}

.zone-info {
	background: #e0ecec;
	padding: 4rem 2rem;
	font-family: 'Segoe UI', sans-serif;
}

.zone-wrapper {
	max-width: 1200px;
	margin: 2rem auto;
	display: grid;
	gap: 2.5rem;
}

.block-fun {
	background: #37a0d5;
	border-left: 8px solid #2929fa;
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 8px 16px rgba(255, 202, 40, 0.15);
	animation: slideFadeIn 0.6s ease forwards;
}

.block-fun h2 {
	color: #6200ff;
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

.block-fun p,
.block-fun li {
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

.details-list,
.strategy-list {
	padding-left: 1.2rem;
	margin-top: 0.8rem;
}

.details-list li,
.strategy-list li {
	margin-bottom: 0.5rem;
	position: relative;
}

.strategy-list li::before {
	content: '🎯';
	position: absolute;
	left: -1.5rem;
}

.odds-grid {
	display: grid;
	gap: 0.5rem;
}

.odds-grid>div {
	display: grid;
	grid-template-columns: 1fr 2fr 2fr;
	background: #e1caead3;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	color: #1c004f;
	transition: transform 0.2s ease;
}

.odds-head {
	background: #ec407a;
	color: #fff;
}

.odds-grid>div:hover {
	transform: scale(1.02);
}

/* Animation */
@keyframes slideFadeIn {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.zone-wrapper {
		grid-template-columns: 1fr;
	}

	.block-fun {
		padding: 1.5rem;
	}

	.block-fun h2 {
		font-size: 1.3rem;
	}
}

.lotto-footer {
	background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
	color: #e2e8f0;
	padding: 80px 20px;
	font-family: 'Changa', sans-serif;
	position: relative;
	overflow: hidden;
}

.lotto-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
	animation: footerShimmer 5s ease-in-out infinite;
}

@keyframes footerShimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.lotto-footer-inner {
	display: flex;
	flex-direction: column;
	gap: 50px;
	max-width: 1280px;
	margin: 0 auto;
	padding-top: 50px;
	position: relative;
	z-index: 2;
}

.lotto-footer-left,
.lotto-footer-right {
	flex: 1;
}

.lotto-logo-link {
	font-size: 32px;
	font-weight: 800;
	color: #fbbf24;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.lotto-logo-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
	transition: left 0.5s ease;
}

.lotto-logo-link:hover::before {
	left: 100%;
}

.lotto-logo-link:hover {
	color: #f59e0b;
	transform: scale(1.05);
	text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

.lotto-footer-info {
	font-size: 15px;
	line-height: 1.6;
	color: #cccccc;
}

.lotto-footer-info a {
	color: #00ffc8;
	text-decoration: none;
	border-bottom: 1px dashed #00ffc8;
}

.lotto-footer-info a:hover {
	color: #ffffff;
	border-bottom-color: #ffffff;
}

.lotto-info-title {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 12px;
	font-weight: 500;
}

.lotto-badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.lotto-badges img {
	width: 90px;
	height: auto;
	border-radius: 6px;
	transition: transform 0.3s ease;
	opacity: 0.9;
}

.lotto-badges img:hover {
	transform: scale(1.05);
	opacity: 1;
}

.lotto-age-badge {
	background-color: #00ffc8;
	color: #000;
	font-size: 16px;
	font-weight: bold;
	padding: 6px 14px;
	border-radius: 30px;
}

.lotto-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 14px;
	margin-top: 10px;
}

.lotto-footer-links a {
	color: #888;
	text-decoration: none;
	transition: color 0.3s ease;
}

.lotto-footer-links a:hover {
	color: #ffffff;
}

/* Responsive layout */
@media (min-width: 768px) {
	.lotto-footer-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.lotto-footer-copy {
	text-align: center;
	color: #666;
	font-size: 13px;
	padding-top: 30px;
	border-top: 1px solid #1f1f1f;
	margin-top: 40px;
}

.lotto-container {
	margin: 0 auto;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, #1e293b, #334155, #475569);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	font-family: 'Changa', sans-serif;
	position: relative;
	overflow: hidden;
}

.lotto-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
	animation: containerShimmer 4s ease-in-out infinite;
}

@keyframes containerShimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.lotto-heading {
	font-size: 2.2rem;
	font-weight: 800;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 3rem;
	text-align: center;
	text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.lotto-card {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border: 2px solid #475569;
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.lotto-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #60a5fa, #3b82f6);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.lotto-card:hover::before {
	transform: scaleX(1);
}

.lotto-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
	border-color: #60a5fa;
}

.lotto-card label {
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fbbf24;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lotto-input {
	width: 100%;
	padding: 1rem 1.2rem;
	font-size: 1rem;
	border-radius: 12px;
	border: 2px solid #475569;
	background: linear-gradient(135deg, #1e293b, #334155);
	color: #e2e8f0;
	transition: all 0.3s ease;
	font-weight: 500;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23fbbf24' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.75rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
}

.lotto-input:focus {
	border-color: #60a5fa;
	outline: none;
	box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
	background: linear-gradient(135deg, #334155, #475569);
}

.lotto-input option {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: #fbbf24;
	font-weight: 600;
	padding: 1rem;
	border: none;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lotto-input option:hover {
	background: linear-gradient(135deg, #1e293b, #334155);
	color: #f59e0b;
}

.lotto-input option:checked {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: #1f2937;
	font-weight: 800;
}

.inline-checkbox {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	color: #fbbf24;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
}

.inline-checkbox:hover {
	transform: translateY(-2px);
	text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.inline-checkbox input[type="checkbox"] {
	width: 22px;
	height: 22px;
	border: 3px solid #475569;
	border-radius: 6px;
	background: linear-gradient(135deg, #1e293b, #334155);
	appearance: none;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.inline-checkbox input[type="checkbox"]:checked {
	border-color: #fbbf24;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
	transform: scale(1.1);
}

.inline-checkbox input[type="checkbox"]:checked::before {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #1f2937;
	font-weight: 900;
	font-size: 14px;
}

.inline-checkbox:hover input[type="checkbox"] {
	border-color: #60a5fa;
	box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.lotto-options {
	display: flex;
	gap: 2rem;
	margin-top: 1rem;
}

.lotto-options .option {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 1rem;
	font-weight: 700;
	color: #e2e8f0;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	cursor: pointer;
	padding: 0.8rem 1.2rem;
	border-radius: 12px;
	background: linear-gradient(135deg, #1e293b, #334155);
	border: 2px solid #475569;
	position: relative;
	overflow: hidden;
}

.lotto-options .option::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
	transition: left 0.5s ease;
}

.lotto-options .option:hover::before {
	left: 100%;
}

.lotto-options .option:hover {
	transform: translateY(-3px);
	border-color: #60a5fa;
	box-shadow: 0 8px 20px rgba(96, 165, 250, 0.3);
	color: #fbbf24;
}

.lotto-options .option input[type="radio"] {
	width: 20px;
	height: 20px;
	border: 3px solid #475569;
	border-radius: 50%;
	background: linear-gradient(135deg, #1e293b, #334155);
	appearance: none;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lotto-options .option input[type="radio"]:checked {
	border-color: #fbbf24;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
	transform: scale(1.1);
}

.lotto-options .option input[type="radio"]:checked::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	background: #1f2937;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.lotto-options .option:hover input[type="radio"] {
	border-color: #60a5fa;
	box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.lotto-numbers {
	margin-top: 1rem;
	background-color: #fff;
	border: 1px dashed #aaa;
	border-radius: 8px;
	padding: 1rem;
	min-height: 80px;
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 10px;
	padding: 10px;
	
}

.lotto-summary {
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border-radius: 20px;
	border: 2px solid #475569;
	position: relative;
	overflow: hidden;
}

.lotto-summary::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #fbbf24, #f59e0b);
	animation: summaryShimmer 3s ease-in-out infinite;
}

@keyframes summaryShimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.lotto-total {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fbbf24;
	margin-bottom: 1.5rem;
	text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lotto-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	font-weight: 800;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.4s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
	position: relative;
	overflow: hidden;
	border: 2px solid #059669;
}

.lotto-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.lotto-button:hover::before {
	left: 100%;
}

.lotto-button:hover {
	background: linear-gradient(135deg, #059669, #10b981);
	transform: scale(1.05) translateY(-3px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

@media (max-width: 480px) {
	.lotto-container {
		padding: 1.5rem 1rem;
	}

	.lotto-options {
		flex-direction: column;
	}
}


.lotto-info-section {
	/* background: linear-gradient(135deg, #ffe29f, #ffa07a); */
	padding: 40px 20px;
	animation: fadeInUp 1s ease-out;
	border-radius: 16px;
	color: #333;
	font-family: 'Arial', sans-serif;
	margin-bottom: 40px;
}

.lotto-info-container {
	max-width: 1000px;
	margin: auto;
}

.lotto-heading-xl {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #d84315;
}

.lotto-heading-lg {
	font-size: 22px;
	font-weight: bold;
	margin-top: 30px;
	color: #6a1b9a;
}

.lotto-heading-md {
	font-size: 18px;
	font-weight: bold;
	margin: 25px 0 10px;
	color: #00796b;
}

.lotto-text {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.lotto-comparison {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}

.lotto-entry-standard,
.lotto-entry-system {
	flex: 1 1 45%;
	background: rgba(255, 255, 255, 0.9);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lotto-table {
	margin-top: 10px;
	border-collapse: collapse;
	width: 100%;
}

.lotto-table-row {
	display: flex;
	padding: 6px 0;
	border-bottom: 1px dashed #ccc;
}

.lotto-table-head {
	font-weight: bold;
	color: #000;
	background: rgba(255, 255, 255, 0.4);
}

.lotto-col {
	padding: 5px 10px;
}

.lotto-col.small {
	flex: 0 0 60px;
}

.lotto-col.large {
	flex: 1;
}

@media (max-width: 768px) {
	.lotto-comparison {
		flex-direction: column;
	}

	.lotto-entry-standard,
	.lotto-entry-system {
		flex: 1 1 100%;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lotto-syndicate-section {
	background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
	padding: 80px 20px;
	color: #f8fafc;
	font-family: 'Changa', sans-serif;
	position: relative;
	overflow: hidden;
}

.lotto-syndicate-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(251,191,36,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
	opacity: 0.3;
}

.zone-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.lotto-syndicate-form {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	padding: 50px;
	border-radius: 30px;
	box-shadow: 0 0 50px rgba(59, 130, 246, 0.2);
	display: flex;
	flex-direction: column;
	gap: 50px;
	border: 2px solid #475569;
	position: relative;
	overflow: hidden;
}

.lotto-syndicate-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
	animation: formShimmer 4s ease-in-out infinite;
}

@keyframes formShimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.lotto-syndicate-title {
	font-size: 2rem;
	color: #fbbf24;
	border-left: 6px solid #f59e0b;
	padding-left: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 2px;
	text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.lotto-syndicate-step {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lotto-syndicate-options {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
}

.lotto-syndicate-card {
	background: linear-gradient(145deg, #1e293b, #334155);
	border: 2px solid #475569;
	border-radius: 25px;
	padding: 30px;
	width: 40%;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
}

.lotto-syndicate-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #60a5fa, #3b82f6);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.lotto-syndicate-card:hover::before {
	transform: scaleX(1);
}

.lotto-syndicate-card:hover {
	transform: translateY(-10px) scale(1.02);
	border-color: #60a5fa;
	background: linear-gradient(145deg, #334155, #475569);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.card-head {
	font-size: 1.6rem;
	color: #fbbf24;
	margin-bottom: 15px;
	font-weight: 800;
	text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.card-head span {
	display: block;
	font-size: 1rem;
	color: #e2e8f0;
	font-weight: 600;
	margin-top: 5px;
}

.card-price {
	font-size: 1.4rem;
	color: #10b981;
	margin-bottom: 20px;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.lotto-syndicate-card label {
	font-weight: bold;
	color: #d1d1d1;
	display: flex;
	align-items: center;
	gap: 10px;
}

#lotto-share-count {
	background: linear-gradient(135deg, #1e293b, #334155);
	color: #fbbf24;
	border: 2px solid #475569;
	padding: 1rem 1.5rem;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 700;
	width: fit-content;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23fbbf24' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.75rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#lotto-share-count:focus {
	border-color: #60a5fa;
	box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
	outline: none;
}

#lotto-share-count option {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: #fbbf24;
	font-weight: 600;
	padding: 1rem;
	border: none;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

#lotto-share-count option:hover {
	background: linear-gradient(135deg, #1e293b, #334155);
	color: #f59e0b;
}

#lotto-share-count option:checked {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: #1f2937;
	font-weight: 800;
}

.repeat-toggle label {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fbbf24;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	cursor: pointer;
	padding: 1rem 1.5rem;
	border-radius: 15px;
	background: linear-gradient(135deg, #1e293b, #334155);
	border: 2px solid #475569;
	position: relative;
	overflow: hidden;
}

.repeat-toggle label::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
	transition: left 0.5s ease;
}

.repeat-toggle label:hover::before {
	left: 100%;
}

.repeat-toggle label:hover {
	transform: translateY(-3px);
	border-color: #fbbf24;
	box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
	color: #f59e0b;
}

.repeat-toggle input[type="checkbox"] {
	width: 22px;
	height: 22px;
	border: 3px solid #475569;
	border-radius: 6px;
	background: linear-gradient(135deg, #1e293b, #334155);
	appearance: none;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.repeat-toggle input[type="checkbox"]:checked {
	border-color: #fbbf24;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
	transform: scale(1.1);
}

.repeat-toggle input[type="checkbox"]:checked::before {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #1f2937;
	font-weight: 900;
	font-size: 14px;
}

.repeat-toggle label:hover input[type="checkbox"] {
	border-color: #fbbf24;
	box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.lotto-total-text {
	font-size: 1.8rem;
	font-weight: 900;
	text-align: center;
	color: #fbbf24;
	background: linear-gradient(135deg, #0f172a, #1e293b);
	padding: 25px;
	border-radius: 20px;
	border: 2px solid #475569;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
	box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.lotto-total-text::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #fbbf24, #f59e0b);
	animation: totalTextShimmer 3s ease-in-out infinite;
}

@keyframes totalTextShimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.lotto-total-text span {
	font-weight: 800;
	color: #f8fafc;
	text-shadow: 0 0 10px rgba(248, 250, 252, 0.5);
}

.lotto-btn {
	background: #ab47bc;
	color: #fff;
	padding: 14px 28px;
	font-size: 1rem;
	text-transform: uppercase;
	border-radius: 32px;
	text-align: center;
	text-decoration: none;
	align-self: center;
	transition: background 0.3s ease;
}

.lotto-btn:hover {
	background: #ce7ef5;
	color: #000;
}

@media (max-width: 768px) {
	.lotto-syndicate-card {
		width: 100%;
	}
}


.lotto-party-section {
	background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
	padding: 80px 30px;
	margin: 0 auto;
	color: #f8fafc;
	font-family: 'Changa', sans-serif;
	position: relative;
	overflow: hidden;
}

.lotto-party-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,10 25,20 15,25 5,20 5,10" fill="none" stroke="rgba(251,191,36,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
	opacity: 0.3;
}

.lotto-party-header h3 {
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	border-left: 6px solid #f59e0b;
	padding-left: 20px;
	margin-bottom: 40px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
	position: relative;
	z-index: 2;
}

.lotto-party-header span {
	color: #ef4444;
	font-weight: 900;
	font-size: 2.2rem;
	margin-right: 15px;
	text-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
}

.lotto-party-grid {
	display: grid;
		grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 30px;
	position: relative;
	z-index: 2;
}

.lotto-party-card {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border: 3px solid #475569;
	border-radius: 25px;
	padding: 30px;
	transition: all 0.4s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lotto-party-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.lotto-party-card:hover::before {
	transform: scaleX(1);
}

.lotto-party-card:hover {
	border-color: #60a5fa;
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
	transform: translateY(-10px) scale(1.02);
}

.lotto-party-card.selected {
	border-color: #ef4444;
	box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4);
	transform: scale(1.03);
	background: linear-gradient(135deg, #1e293b, #334155);
}

.party-img {
	height: 140px;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
	margin-bottom: 20px;
	filter: brightness(0.9) contrast(1.1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.party-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.party-details:hover .party-img::before {
	opacity: 1;
}

.party-details h4 {
	font-size: 1.4rem;
	color: #fbbf24;
	margin-bottom: 10px;
	font-weight: 800;
	text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.party-details p {
	font-size: 1rem;
	color: #e2e8f0;
	margin-bottom: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.party-details strong {
	display: block;
	font-size: 1.3rem;
	color: #10b981;
	margin-bottom: 10px;
	font-weight: 800;
	text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.party-details strong small {
	font-size: 0.9rem;
	color: #94a3b8;
	font-weight: 600;
	margin-left: 6px;
}

.party-details span {
	font-size: 1rem;
	color: #60a5fa;
	display: block;
	margin-bottom: 15px;
	font-weight: 600;
	text-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
}

.party-details label {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #f8fafc;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lotto-party-total {
	font-size: 1.8rem;
	font-weight: 900;
	margin-top: 40px;
	text-align: center;
	color: #fbbf24;
	background: linear-gradient(135deg, #0f172a, #1e293b);
	padding: 25px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
	border: 2px solid #475569;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.lotto-party-total::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #fbbf24, #f59e0b);
	animation: totalShimmer 3s ease-in-out infinite;
}

@keyframes totalShimmer {
	0%, 100% { transform: translateX(-100%); }
	50% { transform: translateX(100%); }
}

.lotto-party-total span {
	color: #f8fafc;
	font-weight: 800;
	text-shadow: 0 0 10px rgba(248, 250, 252, 0.5);
}

.lotto-btn {
	display: block;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: #fff;
	padding: 18px 40px;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
	border-radius: 50px;
	width: fit-content;
	margin: 30px auto 0;
	transition: all 0.4s ease;
	text-transform: uppercase;
	letter-spacing: 2px;
	box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
	position: relative;
	overflow: hidden;
	border: 2px solid #dc2626;
}

.lotto-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.lotto-btn:hover::before {
	left: 100%;
}

.lotto-btn:hover {
	background: linear-gradient(135deg, #dc2626, #ef4444);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 35px rgba(239, 68, 68, 0.6);
}

@media (max-width: 600px) {
	.lotto-party-grid {
		grid-template-columns: 1fr;
	}
}


.lotto-results-section {
	background: linear-gradient(135deg, #2ca6ec, #08732a, #042f00);
	padding: 40px 20px;
	border-radius: 16px;
	max-width: 900px;
	margin: 2rem auto;
	font-family: 'Arial', sans-serif;
	color: #333;
	animation: fadeInUp 0.8s ease;
}

.lotto-results-header {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
}

.lotto-results-header h2 {
	font-size: 26px;
	color: #6a1b9a;
	margin-bottom: 5px;
}

.lotto-results-header strong {
	color: #d84315;
}

.lotto-winner-numbers {
	margin-top: 10px;
	font-size: 16px;
	background: #fff8e1;
	padding: 15px;
	border-radius: 12px;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.lotto-ball {
	display: inline-block;
	background-color: #ff4081;
	color: #fff;
	font-weight: bold;
	border-radius: 50%;
	padding: 10px 14px;
	margin: 5px 4px;
	font-size: 15px;
	animation: bounceIn 0.5s ease;
}

.lotto-ball.alt {
	background-color: #4caf50;
}

.lotto-results-table-container {
	overflow-x: auto;
	background: #fff;
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.lotto-results-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	text-align: center;
}

.lotto-results-table th,
.lotto-results-table td {
	padding: 12px 10px;
	border-bottom: 1px solid #ddd;
}

.lotto-results-table th {
	background-color: #fce4ec;
	color: #6a1b9a;
	font-weight: bold;
}

.lotto-results-table tr:hover {
	background-color: #fff3e0;
	transition: 0.3s;
}

@media (max-width: 600px) {
	.lotto-results-header h2 {
		font-size: 20px;
	}

	.lotto-ball {
		padding: 8px 10px;
		font-size: 13px;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounceIn {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}

	60% {
		transform: scale(1.1);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

.lotto-stats-block {
	background: linear-gradient(135deg, #2ca6ec, #08732a, #042f00);
	padding: 40px 20px;
	border-radius: 16px;
	max-width: 900px;
	margin: 2rem auto;
	animation: fadeInUp 1s ease;
	font-family: 'Arial', sans-serif;
	color: #333;
}

.lotto-frequency-header h2 {
	font-size: 24px;
	color: #6a1b9a;
	margin-bottom: 10px;
}

.lotto-frequency-header p {
	font-size: 15px;
	color: #555;
	margin-bottom: 20px;
}

.lotto-legend {
	display: flex;
	gap: 20px;
	margin-bottom: 25px;
	font-size: 14px;
	font-weight: bold;
	color: #444;
}

.lotto-dot {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	margin-right: 6px;
}

.dot-first {
	background-color: #ff8a65;
}

.dot-last {
	background-color: #4db6ac;
}

.lotto-number-bars {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

.lotto-number-bar {
	background: #fff3e0;
	padding: 10px 20px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-width: 180px;
	animation: bounceIn 0.5s ease;
}

.lotto-number-bar.reverse {
	background: #e0f7fa;
	flex-direction: row-reverse;
}


.lotto-number-ball {
	background: #ffca28;
	color: #000;
	font-weight: bold;
	border-radius: 50%;
	padding: 10px 14px;
	margin: 0 10px;
	font-size: 16px;
	box-shadow: 0 0 0 3px rgba(255, 202, 40, 0.3);
	animation: scaleIn 0.4s ease-in-out;
}

@media (max-width: 600px) {
	.lotto-number-bars {
		flex-direction: column;
		align-items: center;
	}

	.lotto-number-bar {
		width: 100%;
		justify-content: space-around;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounceIn {
	from {
		transform: scale(0.7);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		transform: scale(0);
	}

	to {
		transform: scale(1);
	}
}

.lotto-checkout-section {
	background: #f5f7fa;
	padding: 60px 15px;
	color: #1a1a1a;
	font-family: 'Segoe UI', sans-serif;
}

.lotto-checkout-header h1 {
	text-align: center;
	font-size: 28px;
	color: #2c3e50;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lotto-checkout-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.lotto-checkout-form input,
.lotto-checkout-form select {
	padding: 14px 16px;
	border-radius: 12px;
	border: 2px solid #dcdfe3;
	background-color: #f9fafb;
	font-size: 16px;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.lotto-checkout-form input:focus,
.lotto-checkout-form select:focus {
	border-color: #3498db;
	background: #ffffff;
	outline: none;
}

.lotto-payment-box {
	background: #eaf6ff;
	padding: 24px;
	border-radius: 16px;
	text-align: center;
	margin-top: 25px;
	border: 1px solid #cbe5ff;
}

.lotto-payment-box p {
	margin: 8px 0;
	font-size: 17px;
}

.lotto-amount {
	font-size: 26px;
	font-weight: 700;
	color: #1e88e5;
}

.lotto-pay-btn {
	background: linear-gradient(to right, #1e88e5, #42a5f5);
	color: #ffffff;
	padding: 14px 30px;
	border: none;
	border-radius: 60px;
	font-weight: 600;
	font-size: 17px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.lotto-pay-btn:hover {
	background: linear-gradient(to right, #1976d2, #2196f3);
}

.lotto-ticket-summary {
	margin-top: 40px;
	text-align: center;
}

.lotto-ticket-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.lotto-ticket-numbers span {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ecf0f1;
	border-radius: 50%;
	font-weight: 600;
	font-size: 16px;
	color: #2c3e50;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.powerball {
	background: #ff5252 !important;
	color: #fff !important;
}

/* Modal Styles */
.lotto-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.lotto-modal-content {
	background: #ffffff;
	padding: 40px;
	border-radius: 18px;
	text-align: center;
	max-width: 420px;
	width: 90%;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 600px) {
	.lotto-checkout-header h1 {
		font-size: 22px;
	}

	.lotto-checkout-form input,
	.lotto-checkout-form select {
		font-size: 15px;
	}

	.lotto-amount {
		font-size: 22px;
	}

	.lotto-ticket-numbers span {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
}


.lotto-cookies-policy {
	background: #d3e3ff;
	padding: 40px 20px;
	font-family: 'Arial', sans-serif;
	color: #333;
	animation: fadeInUp 1s ease;
}

.lotto-cookies-container {
	max-width: 850px;
	margin: auto;
	background: #ffffff;
	padding: 30px 25px;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.lotto-cookies-title {
	font-size: 28px;
	color: #f06292;
	margin-bottom: 20px;
	text-align: center;
}

.lotto-cookies-subtitle {
	font-size: 20px;
	margin-top: 25px;
	color: #6a1b9a;
}

.lotto-cookies-container p {
	font-size: 15px;
	line-height: 1.7;
	margin-top: 10px;
}

.lotto-cookies-container ul {
	margin-top: 10px;
	padding-left: 20px;
}

.lotto-cookies-container li {
	margin-bottom: 8px;
	font-size: 15px;
}

.lotto-cookies-footer {
	margin-top: 30px;
	font-size: 14px;
	text-align: center;
}

.lotto-cookies-footer a {
	color: #d84315;
	text-decoration: underline;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	.lotto-cookies-container {
		padding: 20px;
	}

	.lotto-cookies-title {
		font-size: 24px;
	}

	.lotto-cookies-subtitle {
		font-size: 18px;
	}
}

.mpz-privacy-wrapper {
	background: #d3e3ff;
	padding: 50px 20px;
	animation: fadeSlideIn 1.2s ease;
}

.mpz-privacy-container {
	max-width: 880px;
	margin: auto;
	background: #ffffff;
	padding: 35px 30px;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	font-family: 'Segoe UI', sans-serif;
	color: #333;
}

.mpz-privacy-title {
	font-size: 32px;
	color: #f06292;
	margin-bottom: 24px;
	text-align: center;
}

.mpz-subtitle {
	font-size: 20px;
	margin-top: 25px;
	color: #6a1b9a;
}

.mpz-privacy-container p {
	font-size: 15px;
	line-height: 1.7;
	margin: 12px 0;
}

.mpz-privacy-container ul {
	padding-left: 20px;
	margin-top: 10px;
}

.mpz-privacy-container li {
	font-size: 15px;
	margin-bottom: 8px;
}

.mpz-privacy-footer {
	font-size: 14px;
	text-align: center;
	margin-top: 30px;
}

.mpz-privacy-footer a {
	color: #d84315;
	text-decoration: underline;
}

@keyframes fadeSlideIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	.mpz-privacy-container {
		padding: 25px 20px;
	}

	.mpz-privacy-title {
		font-size: 26px;
	}

	.mpz-subtitle {
		font-size: 18px;
	}
}

.mpz-terms-section {
	background: #d3e3ff;
	padding: 60px 20px;
	animation: fadeTerms 1s ease-in-out;
}

.mpz-terms-container {
	max-width: 900px;
	margin: auto;
	background: #fff;
	padding: 40px 35px;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	font-family: 'Rubik', sans-serif;
	color: #333;
}

.mpz-terms-title {
	text-align: center;
	font-size: 32px;
	color: #ff4081;
	margin-bottom: 30px;
}

.mpz-terms-subtitle {
	font-size: 20px;
	margin-top: 25px;
	color: #7b1fa2;
}

.mpz-terms-container p {
	font-size: 15px;
	line-height: 1.8;
	margin: 10px 0;
}

.mpz-terms-footer {
	margin-top: 40px;
	text-align: center;
	font-size: 14px;
	color: #555;
}

.mpz-terms-footer a {
	color: #d81b60;
	text-decoration: underline;
}

@keyframes fadeTerms {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 640px) {
	.mpz-terms-container {
		padding: 25px 20px;
	}

	.mpz-terms-title {
		font-size: 26px;
	}

	.mpz-terms-subtitle {
		font-size: 18px;
	}
}

.mpz-scroll-top {
	position: fixed !important;
	bottom: 30px !important;
	right: 30px !important;
	left: auto !important;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: #1f2937;
	border: none;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
	cursor: pointer;
	transition: all 0.4s ease;
	font-size: 24px;
	font-weight: 800;
	position: relative;
	overflow: hidden;
}

.mpz-scroll-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.mpz-scroll-top:hover::before {
	left: 100%;
}

.mpz-scroll-top:hover {
	background: linear-gradient(135deg, #f59e0b, #fbbf24);
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
}

.mpz-scroll-top svg {
	width: 22px;
	height: 22px;
	stroke: #1f2937;
	transition: stroke 0.3s ease;
}

.mpz-scroll-top:hover svg {
	stroke: #1f2937;
}


.lotto-step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}


.lotto-select {
  padding: 10px 16px;
  border-radius: 12px;
  border: 2px solid #bdc3c7;
  background: #ffffff;
  font-size: 1rem;
  color: #34495e;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.lotto-select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.4);
}

.lotto-select:disabled {
  background: #ecf0f1;
  color: #95a5a6;
  cursor: not-allowed;
}

.lotto-radio-group {
  display: flex;
  gap: 25px;
  align-items: center;
  color: #34495e;
  font-weight: 600;
  font-size: 1rem;
}

.lotto-radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.lotto-radio-group input[type="radio"] {
  accent-color: #2980b9;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.lotto-number-grid {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  padding: 10px 0;
}

.lotto-total {
  grid-column: span 2;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2980b9;
  padding: 16px 0;
  border-top: 2px solid #dce6f1;
  border-bottom: 2px solid #dce6f1;
  user-select: none;
}

.lotto-basket-btn {
  grid-column: span 2;
  padding: 15px 0;
  border-radius: 10px;
  background-color: #2980b9;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.35s ease;
  box-shadow: 0 6px 15px rgba(41, 128, 185, 0.5);
}

.lotto-basket-btn:hover {
  background-color: #1c598a;
  box-shadow: 0 8px 20px rgba(28, 89, 138, 0.7);
}

@media (max-width: 700px) {
  .lotto-content-block {
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    gap: 30px;
  }

  .lotto-number-grid {
    grid-column: auto;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .lotto-basket-btn {
    padding: 14px 0;
    font-size: 1.1rem;
  }
}
.lotto-content-block {
  margin: 0 auto;
  background: #121212;
  padding: 40px 40px 50px;
  color: #eee;
  font-family: 'Roboto Mono', monospace;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lotto-step {
  display: block;
}

.lotto-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 22px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #90caf9;
}

.lotto-select {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 15px;
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid #475569;
  color: #fbbf24;
  font-size: 1rem;
  transition: all 0.3s ease;
  appearance: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23fbbf24' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.lotto-select:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
  background: linear-gradient(135deg, #334155, #475569);
}

.lotto-select:disabled {
  background: linear-gradient(135deg, #334155, #475569);
  color: #64748b;
  cursor: not-allowed;
  border-color: #64748b;
  box-shadow: none;
}

.lotto-select option {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fbbf24;
  font-weight: 600;
  padding: 1rem;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lotto-select option:hover {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #f59e0b;
}

.lotto-select option:checked {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  font-weight: 800;
}

.lotto-radio-group {
	margin-top: 1rem;
  display: flex;
  gap: 40px;
  color: #90caf9;
  font-weight: 600;
  font-size: 1.05rem;
}

.lotto-radio-group label {
  cursor: pointer;
  position: relative;
  padding-left: 32px;
  user-select: none;
}

.lotto-radio-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.lotto-radio-group input[type="radio"] + span {
  position: relative;
}

.lotto-radio-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #90caf9;
  border-radius: 50%;
  background: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.lotto-radio-group input[type="radio"]:checked + span::before,
.lotto-radio-group input[type="radio"]:checked + span {
  background-color: #90caf9;
  border-color: #90caf9;
}

.lotto-number-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.lotto-number-grid div {
  background: #1a237e;
  border-radius: 8px;
  color: #e3f2fd;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.lotto-number-grid div:hover {
  background-color: #3949ab;
}

.lotto-total {
  margin-top: 36px;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  color: #82b1ff;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px #82b1ffaa;
}

.lotto-basket-btn {
  margin-top: 28px;
  background: linear-gradient(90deg, #3949ab, #1e88e5);
  padding: 18px 0;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: #e3f2fd;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.7);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  cursor: pointer;
  display: block;
}

.lotto-basket-btn:hover {
  background: linear-gradient(90deg, #1e88e5, #3949ab);
  box-shadow: 0 10px 30px rgba(26, 35, 126, 0.9);
}

@media (max-width: 720px) {
  .lotto-content-block {
    padding: 30px 25px;
  }

  .lotto-number-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
}

.custom-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f8fafc;
  transition: all 0.3s ease;
}

.custom-radio:hover {
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.5);
}

.custom-radio input[type="radio"] {
  display: none;
}

.radio-mark {
  width: 24px;
  height: 24px;
  border: 3px solid #475569;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1e293b, #334155);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.radio-mark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.custom-radio input[type="radio"]:checked + .radio-mark {
  border-color: #fbbf24;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
  transform: scale(1.1);
}

.custom-radio input[type="radio"]:checked + .radio-mark::before {
  width: 12px;
  height: 12px;
}

.custom-radio:hover .radio-mark {
  border-color: #60a5fa;
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border-radius: 10px;
	border: 2px solid #475569;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	border-radius: 10px;
	border: 2px solid #1e293b;
	box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
	transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
	background: linear-gradient(135deg, #d97706, #b45309);
	box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

::-webkit-scrollbar-corner {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	border-radius: 10px;
}

/* Firefox Scrollbar */
* {
	scrollbar-width: thin;
	scrollbar-color: #fbbf24 #1e293b;
}

/* Custom scrollbar for specific elements */
.lotto-container::-webkit-scrollbar,
.lotto-syndicate-section::-webkit-scrollbar,
.lotto-party-section::-webkit-scrollbar {
	width: 14px;
}

.lotto-container::-webkit-scrollbar-thumb,
.lotto-syndicate-section::-webkit-scrollbar-thumb,
.lotto-party-section::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #60a5fa, #3b82f6);
	border: 2px solid #1e293b;
}

.lotto-container::-webkit-scrollbar-thumb:hover,
.lotto-syndicate-section::-webkit-scrollbar-thumb:hover,
.lotto-party-section::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

/* Smooth scrolling for the entire page */
html {
	scroll-behavior: smooth;
}

/* Custom scrollbar for modals and overlays */
.lotto-age-gate::-webkit-scrollbar,
.age-gate-popup::-webkit-scrollbar {
	width: 8px;
}

.lotto-age-gate::-webkit-scrollbar-thumb,
.age-gate-popup::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	border-radius: 4px;
}

.lotto-age-gate::-webkit-scrollbar-thumb:hover,
.age-gate-popup::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Custom scrollbar for form elements */
.lotto-numbers::-webkit-scrollbar {
	width: 8px;
}

.lotto-numbers::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #10b981, #059669);
	border-radius: 4px;
}

.lotto-numbers::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #059669, #047857);
}

/* Custom scrollbar for dropdown menus */
select::-webkit-scrollbar {
	width: 8px;
}

select::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	border-radius: 4px;
}

select::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}
