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

.site-header {
	background: #0c3c5c;
	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;
}

/* MOBILE NAV */
.mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(12, 60, 92, 0.98);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.mobile-nav-inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	text-align: center;
}

.mobile-nav a {
	color: #fff;
	font-size: 1.2rem;
	text-decoration: none;
}

.nav-close {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	background: none;
	border: none;
	font-size: 2rem;
	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, #ffeb3b, #ff4081);
	color: #fff;
	text-align: center;
	padding: 4rem 2rem;
	animation: bgSlide 8s infinite alternate ease-in-out;
}

.blast-inner {
	max-width: 800px;
	margin: 0 auto;
}

.blast-title {
	font-size: 2.5rem;
	font-weight: 900;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
	margin-bottom: 1rem;
}

.blast-subtext {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	color: #fffde7;
}

.blast-timer {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
	font-family: 'Courier New', monospace;
}

.blast-timer div {
	background: rgba(255, 255, 255, 0.2);
	padding: 1rem 1.5rem;
	border-radius: 12px;
	box-shadow: 0 0 10px #fff176;
	animation: pulse 2s infinite;
}

.blast-timer span {
	display: block;
	font-size: 2.2rem;
	font-weight: bold;
}

.blast-timer em {
	font-size: 0.9rem;
	color: #fffde7;
}

.blast-call {
	background: #00c853;
	color: #fff;
	padding: 0.9rem 2.2rem;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	transition:
		transform 0.3s ease,
		background 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 200, 83, 0.5);
}

.blast-call:hover {
	background: #009624;
	transform: scale(1.05);
}

@keyframes bgSlide {
	0% {
		background-position: left top;
	}
	100% {
		background-position: right bottom;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.04);
	}
	100% {
		transform: scale(1);
	}
}

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

	.blast-timer {
		flex-direction: column;
		gap: 1rem;
	}
}

.lucky-benefits {
	background: #fff9e6;
	padding: 4rem 2rem;
	font-family: 'Segoe UI', sans-serif;
	animation: fadeSlide 0.7s ease-in-out both;
}

.benefits-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
}

.benefits-text {
	flex: 1 1 300px;
	min-width: 280px;
}

.benefits-title {
	font-size: 2rem;
	color: #ff6f00;
	font-weight: 800;
	margin-bottom: 1.5rem;
}

.benefits-list {
	list-style: none;
	padding: 0;
	font-size: 1.05rem;
	color: #333;
}

.benefits-list li {
	display: flex;
	align-items: center;
	margin-bottom: 1.2rem;
	background: #fff3e0;
	padding: 1rem;
	border-left: 6px solid #ffd54f;
	border-radius: 8px;
	box-shadow: 0 3px 8px rgba(255, 215, 64, 0.2);
	transition: transform 0.3s ease;
}

.benefits-list li:hover {
	transform: scale(1.02);
}

.benefit-icon {
	font-size: 1.4rem;
	color: #00c853;
	margin-right: 0.8rem;
	animation: bounceIcon 1.5s infinite;
}

.benefits-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	flex: 1 1 360px;
	max-width: 500px;
}

.benefits-gallery img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.benefits-gallery img:hover {
	transform: scale(1.05);
}

/* 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: linear-gradient(135deg, #fff9c4, #fce4ec);
	padding: 4rem 2rem;
	font-family: 'Segoe UI', sans-serif;
}

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

.block-fun {
	background: #ffffff;
	border-left: 8px solid #ffca28;
	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: #d81b60;
	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: #f8bbd0;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	color: #880e4f;
	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, #f857a6, #ffcc70, #59c173);
	color: #fff;
	padding: 40px 20px;
	font-family: 'Arial', sans-serif;
	animation: fadeInUp 1s ease-out;
}

.lotto-footer-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

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

.lotto-logo-link {
	display: flex;
	align-items: center;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	transition: transform 0.3s ease;
}

.lotto-logo-link:hover {
	transform: scale(1.05);
}

.lotto-logo {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.lotto-footer-info {
	margin-top: 20px;
	font-size: 14px;
}

.lotto-footer-info a {
	color: #ffe;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.lotto-footer-info a:hover {
	color: #fff;
}

.lotto-info-title {
	font-size: 18px;
	margin-bottom: 10px;
}

.lotto-badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.lotto-badges img {
	width: 100px;
	height: auto;
	transition: transform 0.3s ease;
}

.lotto-badges img:hover {
	transform: scale(1.1);
}

.lotto-age-badge {
	background: #fff;
	color: #000;
	font-weight: bold;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 16px;
	animation: bounce 1.5s infinite;
}

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

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

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

/* Адаптивність */
@media (min-width: 768px) {
	.lotto-footer-inner {
		flex-direction: row;
		justify-content: space-between;
	}
}

/* Анімації */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

.lotto-block {
	background: linear-gradient(135deg, #fceabb, #f8b500, #f76b1c);
	padding: 30px 20px;
	border-radius: 15px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
	animation: fadeInUp 0.8s ease-out;
	max-width: 600px;
	margin: 0 auto;
	font-family: 'Arial', sans-serif;
	color: #333;
}

.lotto-step {
	margin-bottom: 25px;
}

.lotto-label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	font-size: 16px;
}

.lotto-select {
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	border: none;
	background: #fff8e1;
	font-size: 15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.lotto-select:disabled {
	background: #eee;
	cursor: not-allowed;
}

.lotto-radio-group {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}

.lotto-radio-group label {
	font-size: 14px;
}

.lotto-number-grid {
	margin-top: 10px;
	background: #fff;
	border: 2px dashed #f8b500;
	padding: 10px;
	border-radius: 10px;
	min-height: 80px;
}

.lotto-total {
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
	color: #000;
	animation: pulse 1.5s infinite;
}

.lotto-basket-btn {
	display: inline-block;
	margin-top: 15px;
	background-color: #ff4081;
	color: #fff;
	text-decoration: none;
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 16px;
	transition:
		background-color 0.3s,
		transform 0.3s;
}

.lotto-basket-btn:hover {
	background-color: #e91e63;
	transform: scale(1.05);
}

/* Анімації */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.04);
	}
}

/* Адаптивність */
@media (max-width: 600px) {
	.lotto-radio-group {
		flex-direction: column;
		gap: 10px;
	}

	.lotto-block {
		padding: 20px 15px;
	}
}

.lotto-content-block {
	background: linear-gradient(to right, #ffecd2, #fcb69f);
	padding: 30px 20px;
	border-radius: 15px;
	max-width: 900px;
	margin: auto;
	animation: fadeInUp 0.8s ease-out;
	font-family: 'Arial', sans-serif;
	color: #333;
}

.lotto-step {
	margin-bottom: 20px;
}

.lotto-label {
	font-weight: bold;
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
}

.lotto-select {
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	background: #fff;
	font-size: 15px;
	border: 1px solid #ccc;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.05);
}

.lotto-radio-group {
	display: flex;
	gap: 20px;
}

.lotto-number-grid {
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
	gap: 6px;
}

.lotto-total {
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
	animation: pulse 2s infinite;
}

.lotto-basket-btn {
	display: inline-block;
	margin-top: 15px;
	background-color: #ff4081;
	color: white;
	text-decoration: none;
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: bold;
	transition: 0.3s ease;
}

.lotto-basket-btn:hover {
	background-color: #e91e63;
	transform: scale(1.05);
}

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

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.03);
	}
}

@media (max-width: 500px) {
	.lotto-radio-group {
		flex-direction: column;
		gap: 10px;
	}
}

.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(120deg, #ffe29f, #ffa07a);
	padding: 40px 20px;
	max-width: 900px;
	margin: 0 auto;
	border-radius: 16px;
	font-family: 'Arial', sans-serif;
	animation: fadeInUp 1s ease-out;
	color: #333;
}

.lotto-syndicate-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #6a1b9a;
}

.lotto-syndicate-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.lotto-syndicate-card {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.lotto-syndicate-card:hover {
	transform: scale(1.03);
}

.card-head {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #f06292;
}

.card-head span {
	font-size: 14px;
	color: #666;
}

.card-price {
	font-size: 16px;
	margin: 10px 0;
	color: #00796b;
}

.lotto-syndicate-step {
	margin-bottom: 30px;
}

.lotto-total-text {
	font-size: 22px;
	font-weight: bold;
	margin-top: 20px;
	color: #d84315;
	animation: pulse 1.5s infinite;
}

.lotto-btn {
	display: inline-block;
	background: #ff4081;
	color: white;
	padding: 12px 24px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: 0.3s;
}

.lotto-btn:hover {
	background: #d81b60;
}

.lotto-syndicate-info {
	margin-top: 50px;
	background: #fff5e6;
	padding: 30px 20px;
	border-radius: 16px;
}

.lotto-info-wrapper {
	max-width: 900px;
	margin: auto;
}

.lotto-info-block {
	margin-bottom: 25px;
}

.lotto-info-block h2 {
	font-size: 20px;
	color: #f57c00;
	margin-bottom: 8px;
}

.lotto-info-block p,
.lotto-info-block ul {
	font-size: 15px;
	line-height: 1.6;
}

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

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

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

.lotto-party-section {
	background: linear-gradient(to right, #fff6b7, #f6416c);
	padding: 40px 20px;
	border-radius: 16px;
	max-width: 900px;
	margin: 0 auto;
	font-family: 'Arial', sans-serif;
	animation: fadeInUp 0.8s ease;
	color: #333;
}

.lotto-party-header h3 {
	font-size: 22px;
	font-weight: bold;
	color: #6a1b9a;
	margin-bottom: 20px;
}

.lotto-party-header span {
	color: #ff4081;
	margin-right: 10px;
	font-weight: bold;
}

.lotto-party-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.lotto-party-card {
	background: #fff;
	border-radius: 12px;
	padding: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s ease,
		border 0.3s;
	cursor: pointer;
	position: relative;
}

.lotto-party-card.selected {
	border: 2px solid #ff4081;
	transform: scale(1.03);
	box-shadow: 0 0 12px rgba(255, 64, 129, 0.3);
}

.party-img {
	height: 100px;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	margin-bottom: 12px;
}

.party-details h4 {
	font-size: 18px;
	color: #f06292;
	margin-bottom: 5px;
}

.party-details p {
	font-size: 14px;
	color: #666;
	margin-bottom: 6px;
}

.party-details strong {
	font-size: 16px;
	color: #00796b;
}

.party-details span {
	display: block;
	font-size: 13px;
	margin: 6px 0;
	color: #444;
}

.lotto-party-total {
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
	animation: pulse 2s infinite;
	color: #d84315;
}

.lotto-btn {
	display: inline-block;
	background: #ff4081;
	color: white;
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: bold;
	text-decoration: none;
	margin-top: 15px;
	transition: background 0.3s ease;
}

.lotto-btn:hover {
	background: #c2185b;
}

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

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.03);
	}
}

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

.lotto-results-section {
	background: linear-gradient(135deg, #ffe29f, #ffa99f);
	padding: 40px 20px;
	border-radius: 16px;
	max-width: 900px;
	margin: 0 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, #fdfbfb, #ebedee);
	padding: 40px 20px;
	border-radius: 16px;
	max-width: 900px;
	margin: 0 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-label {
	font-size: 16px;
	font-weight: bold;
	color: #ff4081;
}

.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: linear-gradient(135deg, #fff6b7, #f6416c);
	padding: 40px 20px;
	border-radius: 16px;
	font-family: 'Arial', sans-serif;
	color: #333;
	max-width: 700px;
	margin: auto;
	animation: fadeInUp 0.8s ease;
}

.lotto-checkout-header h1 {
	text-align: center;
	font-size: 24px;
	color: #6a1b9a;
	margin-bottom: 25px;
}

.lotto-checkout-form {
	display: grid;
	gap: 15px;
}

.lotto-checkout-form input,
.lotto-checkout-form select {
	padding: 12px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 15px;
}

.lotto-payment-box {
	background: #fff3e0;
	padding: 20px;
	border-radius: 12px;
	text-align: center;
	margin-top: 20px;
}

.lotto-payment-box p {
	margin: 5px 0;
	font-size: 16px;
}

.lotto-amount {
	font-size: 22px;
	font-weight: bold;
	color: #d84315;
	animation: pulse 1.5s infinite;
}

.lotto-pay-btn {
	background: #ff4081;
	color: #fff;
	padding: 12px 25px;
	border: none;
	border-radius: 50px;
	font-weight: bold;
	font-size: 16px;
	margin-top: 10px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.lotto-pay-btn:hover {
	background: #e91e63;
}

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

.lotto-ticket-numbers span {
	display: inline-block;
	background: #ffca28;
	border-radius: 50%;
	padding: 10px;
	margin: 4px;
	font-weight: bold;
}

.powerball {
	background: #4caf50 !important;
	color: white;
}

/* Modal Styles */
.lotto-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	align-items: center;
	justify-content: center;
}

.lotto-modal-content {
	background: #ffffff;
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	max-width: 400px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	animation: bounceIn 0.6s ease;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(25px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes bounceIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	60% {
		transform: scale(1.05);
		opacity: 1;
	}
	100% {
		transform: scale(1);
	}
}

@media (max-width: 500px) {
	.lotto-checkout-form {
		grid-template-columns: 1fr;
	}
}

.lotto-cookies-policy {
	background: linear-gradient(135deg, #fdfbfb, #fceabb);
	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: linear-gradient(120deg, #fff3e0, #ffe0f7);
	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: linear-gradient(to right, #fffde7, #fce4ec);
	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: 30px;
	right: 25px;
	z-index: 999;
	background: linear-gradient(135deg, #ff4081, #fbc02d);
	color: white;
	border: none;
	padding: 12px 16px;
	font-size: 20px;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	display: none;
	transition:
		opacity 0.4s ease,
		transform 0.4s ease;
	animation: popIn 0.4s ease forwards;
}

@keyframes popIn {
	from {
		transform: scale(0.3);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.mpz-scroll-top:hover {
	background: linear-gradient(135deg, #f50057, #fdd835);
	transform: scale(1.1);
}
