body {
	margin: 0;
	padding: 0;
	font-family: 'Source Code Pro', monospace;
}

.site-header {
	background: #211a42;
	color: #fff;
	padding: 0.8rem 1.5rem;
	position: relative;
	z-index: 1000;
}

.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.6rem;
	text-decoration: none;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
}

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

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

.desktop-nav a {
	color: #f0f0f0;
	text-decoration: none;
	font-weight: 500;
}

.desktop-nav a:hover {
	text-decoration: underline;
}

.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: #ffe600;
	color: #333;
	font-weight: 600;
	text-align: center;
	padding: 1rem 1.5rem;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	animation: slideUp 0.6s ease forwards;
}

.fun-cookie-banner p {
	margin: 0 0 0.7rem;
	font-size: 1rem;
}

.fun-cookie-button {
	background-color: #ff6f00;
	color: #fff;
	padding: 0.6rem 1.4rem;
	font-weight: bold;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.fun-cookie-button:hover {
	background-color: #e65100;
}

/* 🔞 Age Gate Modal */
.lotto-age-gate {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: fadeIn 0.5s ease forwards;
}

.age-gate-popup {
	background: #fff5f8;
	border: 5px solid #ff4081;
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	max-width: 400px;
	width: 90%;
	box-shadow: 0 0 20px rgba(255, 64, 129, 0.4);
	animation: popIn 0.4s ease;
}

.age-gate-popup h3 {
	color: #ff4081;
	margin-bottom: 0.5rem;
}

.age-gate-popup p {
	color: #444;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.age-btn-yes {
	background-color: #00c853;
	color: #fff;
	padding: 0.7rem 1.6rem;
	border: none;
	border-radius: 50px;
	margin: 0.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.age-btn-yes:hover {
	transform: scale(1.05);
	background-color: #00b248;
}

.age-btn-no {
	background-color: #ff5252;
	color: #fff;
	padding: 0.7rem 1.6rem;
	border: none;
	border-radius: 50px;
	margin: 0.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.age-btn-no:hover {
	transform: scale(1.05);
	background-color: #d50000;
}

/* 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, #60a2be, #7fcce6, #3f525b);
	color: #f8f8f8;
	text-align: center;
	padding: 5rem 2rem;
	font-family: 'Montserrat', sans-serif;
	animation: glowPulse 10s infinite alternate ease-in-out;
}

.blast-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1rem;
}

.blast-title {
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 1.2rem;
	color: #00f7ff;
	text-shadow: 0 0 15px rgba(4, 246, 254, 0.5);
}

.blast-subtext {
	font-size: 1.2rem;
	color: #e0f7fa;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.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-color: #c2daf3;
	border: 1px solid #e0e0e0;
	padding: 2rem 1.5rem;
	max-width: 400px;
	margin: 2rem auto;
	text-align: center;
	font-family: 'Segoe UI', sans-serif;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timer-label {
	font-size: 1rem;
	font-weight: 500;
	color: #0059ff;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

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

.time-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem 1rem;
	background-color: #e8deff;
	border-radius: 8px;
	min-width: 70px;
}

.time-unit span {
	font-size: 2rem;
	font-weight: 700;
	color: #222;
	line-height: 1.2;
}

.time-unit em {
	font-size: 0.75rem;
	color: #777;
	margin-top: 0.3rem;
	letter-spacing: 0.5px;
	text-transform: lowercase;
}

.divider {
	font-size: 1.8rem;
	font-weight: bold;
	color: #999;
}


.blast-call {
	background: linear-gradient(45deg, #00ff85, #00c6ff);
	color: #000;
	padding: 1rem 2.5rem;
	border-radius: 60px;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
	transition: all 0.3s ease;
}

.blast-call:hover {
	background: linear-gradient(45deg, #00c6ff, #00ff85);
	transform: scale(1.07);
	box-shadow: 0 0 20px rgba(0, 255, 200, 0.8);
}

@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: radial-gradient(circle at top left, #fff9e6, #ffe7fa);
	padding: 4rem 1.5rem;
}

.benefits-container {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.benefits-heading {
	font-size: 2.4rem;
	font-weight: 900;
	color: #181818;
	margin-bottom: 3rem;
}

.benefits-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

.benefit-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem 1.5rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon-new {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #7c4dff;
}

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


/* 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-color: #0b0c10;
	color: #d1d1d1;
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
}

.lotto-footer-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1280px;
	margin: 0 auto;
	padding-top: 40px;
}

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

.lotto-logo-link {
	font-size: 28px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 15px;
}

.lotto-logo-link:hover {
	color: #00ffc8;
}

.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: 2rem;
	background: linear-gradient(135deg, #f03ef0, #2633e8, #0059ff);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	font-family: 'Segoe UI', sans-serif;
}

.lotto-heading {
	font-size: 1.8rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 2rem;
	text-align: center;
}

.lotto-card {
	background: #a9d4ff;
	border: 1px solid #e2e6ea;
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.lotto-card label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.75rem;
}

.lotto-input {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	border-radius: 8px;
	border: 1px solid #ccc;
	background-color: #f1deff;
	transition: border 0.2s ease;
}

.lotto-input:focus {
	border-color: #0077cc;
	outline: none;
}

.inline-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	cursor: pointer;
}

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

.lotto-options .option {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
}

.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: 2rem;
}

.lotto-total {
	font-size: 1.2rem;
	font-weight: bold;
	color: #222;
	margin-bottom: 1rem;
}

.lotto-button {
	display: inline-block;
	padding: 0.8rem 2rem;
	background-color: #0077cc;
	color: white;
	font-weight: bold;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.3s ease;
}

.lotto-button:hover {
	background-color: #005fa3;
	transform: scale(1.03);
}

@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: radial-gradient(circle at top left, #14002b, #000);
	padding: 60px 20px;
	color: #f2f2f2;
	font-family: 'Segoe UI', sans-serif;
}

.zone-wrapper {
	max-width: 1100px;
	margin: 0 auto;
}

.lotto-syndicate-form {
	background: #1d1d1d;
	padding: 40px;
	border-radius: 24px;
	box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.lotto-syndicate-title {
	font-size: 1.8rem;
	color: #e4cbff;
	border-left: 6px solid #a85dfd;
	padding-left: 14px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.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, #2a2a2a, #1c1c1c);
	border: 2px solid #3f0e80;
	border-radius: 18px;
	padding: 24px;
	width: calc(50% - 12px);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.lotto-syndicate-card:hover {
	transform: translateY(-6px);
	border-color: #9c4dff;
	background: linear-gradient(145deg, #3a0b60, #1d0030);
}

.card-head {
	font-size: 1.4rem;
	color: #f9f9f9;
	margin-bottom: 10px;
}

.card-head span {
	display: block;
	font-size: 0.95rem;
	color: #b7aaff;
}

.card-price {
	font-size: 1.2rem;
	color: #ffcd5f;
	margin-bottom: 14px;
}

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

#lotto-share-count {
	background: #2f2f2f;
	color: #fff;
	border: 1px solid #555;
	padding: 12px;
	border-radius: 8px;
	font-size: 1rem;
	width: fit-content;
}

.repeat-toggle label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
	color: #dddddd;
}

.lotto-total-text {
	font-size: 1.5rem;
	text-align: center;
	color: #ffd600;
	background: #2b2b2b;
	padding: 16px;
	border-radius: 12px;
}

.lotto-total-text span {
	font-weight: bold;
	color: #fff;
}

.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: #0b0c1e;
	padding: 60px 30px;
	margin: 0 auto;
	color: #e1e1e1;
	font-family: 'Segoe UI', sans-serif;
	box-shadow: 0 0 80px rgba(0, 255, 191, 0.08);
}

.lotto-party-header h3 {
	font-size: 2rem;
	font-weight: 600;
	color: #00ffd9;
	border-left: 6px solid #00ffd9;
	padding-left: 16px;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lotto-party-header span {
	color: #ff2c77;
	font-weight: bold;
	font-size: 1.8rem;
	margin-right: 10px;
}

.lotto-party-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}

.lotto-party-card {
	background: linear-gradient(135deg, #1a1b2c, #111222);
	border: 2px solid transparent;
	border-radius: 18px;
	padding: 20px;
	transition: 0.3s ease all;
	cursor: pointer;
	position: relative;
	box-shadow: 0 0 12px rgba(0, 255, 191, 0.05);
}

.lotto-party-card:hover {
	border-color: #00ffd9;
	box-shadow: 0 0 16px rgba(0, 255, 191, 0.2);
	transform: translateY(-6px);
}

.lotto-party-card.selected {
	border-color: #ff2c77;
	box-shadow: 0 0 16px rgba(255, 44, 119, 0.3);
	transform: scale(1.02);
}

.party-img {
	height: 120px;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	margin-bottom: 14px;
	filter: brightness(0.8);
}

.party-details h4 {
	font-size: 1.2rem;
	color: #ffffff;
	margin-bottom: 6px;
}

.party-details p {
	font-size: 0.9rem;
	color: #cccccc;
	margin-bottom: 6px;
}

.party-details strong {
	display: block;
	font-size: 1.1rem;
	color: #00ffd9;
	margin-bottom: 6px;
}

.party-details strong small {
	font-size: 0.8rem;
	color: #ccc;
	font-weight: 400;
	margin-left: 4px;
}

.party-details span {
	font-size: 0.85rem;
	color: #8affea;
	display: block;
	margin-bottom: 8px;
}

.party-details label {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	font-size: 0.95rem;
}

.lotto-party-total {
	font-size: 1.5rem;
	font-weight: bold;
	margin-top: 30px;
	text-align: center;
	color: #ffcb5f;
	background: #1d1f30;
	padding: 16px;
	border-radius: 12px;
	box-shadow: inset 0 0 12px rgba(255, 203, 95, 0.1);
}

.lotto-party-total span {
	color: #fff;
}

.lotto-btn {
	display: block;
	background: #ff2c77;
	color: #fff;
	padding: 14px 30px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border-radius: 40px;
	width: fit-content;
	margin: 20px auto 0;
	transition: 0.3s ease background;
}

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

@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;
	bottom: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 12px;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.mpz-scroll-top:hover {
	background-color: #00c896;
	transform: translateY(-4px);
}

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


.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: 14px 20px;
  border-radius: 14px;
  background: #1f1f1f;
  border: 2px solid #3949ab;
  color: #bbdefb;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  appearance: none;
  cursor: pointer;
  font-weight: 500;
  box-shadow: inset 0 0 6px #3949ab;
}

.lotto-select:focus {
  outline: none;
  border-color: #82b1ff;
  box-shadow: 0 0 10px #82b1ff;
}

.lotto-select:disabled {
  background: #333;
  color: #555;
  cursor: not-allowed;
  border-color: #555;
  box-shadow: none;
}

.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: 500;
  gap: 8px;
  user-select: none;
}

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

.radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #555;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s ease;
}

.radio-mark::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 15%;
  width: 14px;
  height: 14px;
  background-color: #cab0ff;
  border-radius: 50%;
  opacity: 0;	
  transition: all 0.3s ease;
}


.custom-radio input[type="radio"]:checked + .radio-mark {
  border-color: #cab0ff;
}

.custom-radio input[type="radio"]:checked + .radio-mark::after {
  opacity: 1;
  transform: scale(1);
}
