/* Section Styles */
.section-title {
	text-align: center;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 3rem;
	font-weight: 600;
}

/* Hero */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(110, 229, 102, 0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(110, 229, 102, 0.1); }
}

.lottery-section {
  font-family: 'Nunito Sans', sans-serif;
  text-align: center;
  padding: 48px 24px 56px;
  /* background: linear-gradient(135deg, #6a11cb 0%, #7b2ff7 30%, #9b4dff 55%, #6ec6ff 100%); */
  background:linear-gradient(to right, #A1CB48 0%, #21A5AC 100%) !important;
  position: relative;
  overflow: hidden;
}

.lottery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(120, 60, 255, 0.35) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(100, 180, 255, 0.25) 0%, transparent 55%);
  pointer-events: none;
}

.lottery-section .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}
.lottery-section .blob-1 {
  width: 320px; height: 320px;
  background: #ff80e0;
  top: -80px; left: -80px;
}
.lottery-section .blob-2 {
  width: 260px; height: 260px;
  background: #80e0ff;
  bottom: -60px; right: -60px;
}

.lottery-section .inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  animation: fadeUp 0.7s ease both;
}

.lottery-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 18px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  backdrop-filter: blur(6px);
  animation: fadeUp 0.7s ease 0.1s both;
}

.lottery-section .badge-dot {
  width: 9px;
  height: 9px;
  background: #6ee566;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(110, 229, 102, 0.3);
  animation: pulse 2s ease infinite;
}

.lottery-section .headline {
  font-family: 'Nunito', sans-serif;
  color: #fff;
  font-size: clamp(3rem, 9vw, 5.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  animation: fadeUp 0.7s ease 0.18s both;
}

.lottery-section .lottery-word {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(3.8rem, 11vw, 7.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.26s both;
}

.lottery-section .lottery-word span { display: inline-block; }
/* .lottery-section .l1 { color: #8fe02a; }
.lottery-section .l2 { color: #b5e01a; }
.lottery-section .l3 { color: #d4c010; }
.lottery-section .l4 { color: #e8a010; }
.lottery-section .l5 { color: #f08818; }
.lottery-section .l6 { color: #f06e18; }
.lottery-section .l7 { color: #e85510; }  */

.lottery-section .l1 { color: #578919; }
.lottery-section .l2 { color: #566a0e; }
.lottery-section .l3 { color: #b4a412; }
.lottery-section .l4 { color: #b87f0d; }
.lottery-section .l5 { color: #cb7314; }
.lottery-section .l6 { color: #bf5814; }
.lottery-section .l7 { color: #ac3f0c; } 


.lottery-section .subtext {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 400;
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto 25px;
  animation: fadeUp 0.7s ease 0.34s both;
}

.lottery-section .subtext strong {
  color: #fff;
  font-weight: 700;
}

.lottery-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #5a22cc;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 46px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  margin-bottom: 60px;
  animation: fadeUp 0.7s ease 0.42s both;
}

.lottery-section .btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  background: #f0ebff;
}

.lottery-section .btn:active { transform: scale(0.98); }

.lottery-section .btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.18s ease;
}

.lottery-section .btn:hover .btn-arrow { transform: translateX(4px); }

.lottery-section .stats {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 72px);
  animation: fadeUp 0.7s ease 0.52s both;
}

.lottery-section .stat { text-align: center; }

.lottery-section .stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.lottery-section .stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lottery-section .lottery-dates {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  margin-top: 30px;
}

.lottery-section .date-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 10px 20px;
  backdrop-filter: blur(6px);
}

.lottery-section .date-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.lottery-section .date-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.lottery-section .date-divider {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}

.lottery-section .prize-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,193,7,0.2), rgba(255,152,0,0.2));
  border: 1.5px solid rgba(255, 200, 50, 0.45);
  border-radius: 12px;
  padding: 12px 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
}

.lottery-section .prize-icon {
  font-size: 1.4rem;
}

.lottery-section .prize-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
}

.lottery-section .prize-text strong {
  color: #ffd54f;
  font-weight: 900;
  font-size: 1.1em;
}

.lottery-section .prize-dates-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

/* Remove individual margins since gap handles spacing */
.lottery-section .prize-banner {
  margin-bottom: 0;
}

.lottery-section .lottery-dates {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Grand Prizes - new */
.g-bg-podiumsection{
	background: #0d2e20; 
	/* background: linear-gradient(to right, #A1CB48 0%, #21A5AC 100%) !important;
	 */
	min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}	

.podium-section {
	width: 100%;    
	padding: 60px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}

/* --- Header --- */
.podium-header {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* gap: 20px; */
	animation: fadeUp 0.8s ease both;
}

.podium-badge {
	display: inline-block;
	border: 1px solid #c9a84c;
	color: #c9a84c;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 6px 18px;
	border-radius: 999px;
}

.podium-title {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.1;
	color: #f5f0e8;
	/* max-width: 640px; */
}

.podium-title em {
	color: #c9a84c;
	/* color: #fff; */
	font-style: italic;
	font-weight: 700;
}

.podium-subtitle {
	/* color: rgba(245,240,232,0.6); */
	color:#fff;
	/* font-size: 16px; */
	/* font-size: 24px; */
	/* max-width: 480px; */
	line-height: 1.6;
	margin-bottom:30px;
}

.podium-subtitle2 {
	/* color: rgba(245,240,232,0.6); */
	color:#fff;
	/* font-size: 16px; */
	/* font-size: 24px; */
	/* max-width: 480px; */
	line-height: 1.6;	
}

/* --- Grid --- */
.podium-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 16px;
	width: 100%;
	animation: fadeUp 0.8s 0.2s ease both;
}

/* Card base */
.prize-card2 {
	border-radius: 20px;
	overflow: hidden;
	position: relative;	
	border: 1px solid rgba(201,168,76,0.8);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px 32px;
	min-height: 260px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-card2:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* 1st prize — spans both rows */
.prize-card--first {
    grid-row: 1 / 3;
    min-height: 520px;
    background: 
      linear-gradient(to top, rgba(10,30,18,0.95) 35%, rgba(10,30,18,0.3) 70%, transparent 100%),
      url('https://imgcdn.myt.mu/mytmoney/lottery/winner01-bg.jpg?w=800&q=80') center/cover no-repeat;
}

/* 2nd prize */
.prize-card--second {
background:
  /* linear-gradient(to top, rgba(10,30,18,0.92) 40%, rgba(10,30,18,0.3) 70%, transparent 100%), */
  linear-gradient(to top, rgba(10,30,18,0.92) 10%, rgba(10,30,18,0.4) 70%, transparent 100%),
  url('https://imgcdn.myt.mu/mytmoney/lottery/winner02-bg.jpg?w=800&q=80') center/cover no-repeat;
}

/* 3rd prize */
.prize-card--third {
background:
  /* linear-gradient(to top, rgba(10,30,18,0.95) 50%, rgba(10,30,18,0.5) 80%, transparent 100%),
  */
  linear-gradient(to top, rgba(10,30,18,0.92) 10%, rgba(10,30,18,0.4) 70%, transparent 100%),
  url('https://imgcdn.myt.mu/mytmoney/lottery/winner03-bg.jpg?w=800&q=80') center/cover no-repeat;
}

.prize-rank2 {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #c9a84c; 
	/* color:#62b76a; */
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.prize-rank2 svg {
	width: 16px;
	height: 16px;
	/* fill: #c9a84c;  */
	stroke: #c9a84c; 
	fill: none;
	/* fill: #62b76a; */
}

.prize-amount {
	font-family: 'Playfair Display', serif;
	font-size: clamp(38px, 4.5vw, 62px);
	font-weight: 700;
	color: #e8c96b; 
	/* color:#62b76a; */
	line-height: 1;
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.prize-card--second .prize-amount,
.prize-card--third .prize-amount {
	font-size: clamp(28px, 3.5vw, 42px);
}

.prize-desc {
	color: rgba(245,240,232,0.6);
	font-size: 14px;
	line-height: 1.5;
	max-width: 340px;
}

/* Shine overlay on hover */
.prize-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	border-radius: inherit;
}

.prize-card:hover::after { opacity: 1; }

/* Animations */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 680px) {
	.podium-grid {
	  grid-template-columns: 1fr;
	  grid-template-rows: auto;
	}
	.prize-card--first {
	  grid-row: auto;
	  min-height: 360px;
	}
}

/* Grand Prizes - new*/

/* Grand Prizes */
.grand-prizes {
	background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 5rem 1rem;
}

.prizes-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	padding: 0 1rem;
}

.prize-card {
	background: white;
	border-radius: 30px;
	padding-top: 2rem;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	transition: all 0.4s;
	position: relative;
	overflow: hidden;
	border: 4px solid transparent;
}

.prize-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.prize-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
	border-color: #ffd700;
}

.prize-rank {
	display: inline-block;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	color: #333;
	padding: 0.8rem 3.5rem;
	border-radius: 25px;
	font-weight: 800;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.prize-icon {
	font-size: 4rem;
	margin: 1rem 0;
	display: block;
}

.prize-card h3 {
	font-size: 1.5rem;
	font-weight: 800;
	color: #333;
	margin-bottom: 0.5rem;
}

.prize-card .prize-desc {
	color: #666;
	font-weight: 600;
	margin-bottom: 1rem;
}

.prize-money {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	padding: 0.8rem;
	border-radius: 15px;
	font-weight: 800;
	color: #333;
	font-size: 1.1rem;
	display: inline-block;
	margin-top: 0.5rem;
}

.prize-detail {
	color: #888;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	font-weight: 600;
}

/* More Prizes Section */
.more-prizes {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 5rem 1rem;
	color: white;
}

.more-prizes .section-title {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.more-prizes .section-subtitle {
	color: rgba(255,255,255,0.9);
}

.prizes-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

/* .prize-item {
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 1.5rem;
	text-align: center;
	border: 2px solid rgba(255,255,255,0.2);
	transition: all 0.3s;
} */

.prize-item {
	/* background: rgba(255,255,255,0.15);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 1.5rem; */
	text-align: center;
	/* border: 2px solid rgba(255,255,255,0.2);
	transition: all 0.3s; */
}

.prize-item:hover {
	background: rgba(255,255,255,0.25);
	transform: translateY(-5px);
	border-color: #ffd700;
}

.prize-number {
	background: #ffd700;
	color: #333;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	margin: 0 auto 1rem;
	font-size: 1.1rem;
	margin-top: 15px;
}

.prize-item-icon {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	display: block;
}

.prize-item h4 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
}

.prize-item p {
	font-size: 1.2rem;
	opacity: 0.9;
}

/* Remaining Prizes */
.remaining-prizes {
	background: #f8f9fa;
	padding: 5rem 1rem;
}

.prizes-list {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
}

.prize-row {
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 15px;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s;
}

.prize-row:hover {
	transform: translateX(10px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.12);
	border-left: 4px solid #ffd700;
}

.prize-row-num {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
	min-width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}

.prize-row-icon {
	font-size: 1.5rem;
}

.prize-row-text {
	flex: 1;
	font-weight: 600;
	color: #333;
	font-size: 1.3rem;
	margin-left:-15px;
}

/* Bonus Tickets */
.bonus-section {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #ffd700 100%);
	padding: 5rem 1rem;
	position: relative;
	overflow: hidden;
}

.bonus-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bonus-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.bonus-card {
	background: rgba(255,255,255,0.95);
	border-radius: 20px;
	padding: 1.8rem;
	display: flex;
	/* align-items: center; */
	align-items: top;
	gap: 1.2rem;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	transition: all 0.3s;
	border: 3px solid transparent;
}

.bonus-card:hover {
	transform: scale(1.05) rotate(1deg);
	border-color: #ffd700;
	box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.bonus-icon {
	font-size: 2.5rem;
	/* min-width: 60px;
	height: 60px; */
	min-width: 65px;
	height: 40px;
	background: linear-gradient(45deg, #667eea, #764ba2);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.bonus-content h4 {
	/* font-size: 1.5rem; */
	font-size: 1.2rem;
	/* font-weight: 800; */
	font-weight:700;
	color: #333;
	margin-bottom: 0.3rem;
}

.bonus-content p {
	color: #666;
	font-weight: 400;
	font-size: 0.95rem;
	/* font-size: 1.2rem; */
	font-size: 1.1rem;
}

.bonus-badge {
	background: #ff4757;
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 800;
	margin-left: 0.5rem;
	display: inline-block;
}

/* How to Participate */
.how-to {
	background: linear-gradient(180deg, #fff 0%, #f0f4ff 100%);
	padding: 5rem 1rem;
}

.steps-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	padding: 0 1rem;
}

.step-card {
	background: white;
	border-radius: 25px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	position: relative;
	transition: all 0.4s;
	border-top: 5px solid;
}

.step-card:nth-child(1) { border-top-color: #667eea; }
.step-card:nth-child(2) { border-top-color: #764ba2; }
.step-card:nth-child(3) { border-top-color: #f093fb; }
.step-card:nth-child(4) { border-top-color: #ffd700; }

.step-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.step-number {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1.3rem;
	color: #333;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.step-icon {
	font-size: 3.5rem;
	margin: 1rem 0 1.5rem;
	display: block;
}

.step-card h3 {
	font-size: 1.5rem;
	/* font-weight: 800; */
	font-weight: 700;
	color: #333;
	margin-bottom: 0.5rem;
}

.step-card p {
	color: #666;
	font-weight: 600;
	line-height: 1.5;
	font-size: 1.2rem;
}

.step-arrow {
	display: none;
}

@media (min-width: 768px) {
	.steps-container {
		position: relative;
	}
}

.points-info {
	max-width: 800px;
	margin: 3rem auto 0;
	background: linear-gradient(45deg, #667eea, #764ba2);
	padding: 1.5rem;
	border-radius: 20px;
	text-align: center;
	color: white;
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 0 10px 30px rgba(102,126,234,0.3);
} 

/*final cta*/

/* Hero Section with Gradient */
.finalcta {
    /* height: 100vh; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    /* Gradient: Orange-ish to Pink/Magenta */
    /* background: linear-gradient(135deg, #ff7e5f, #eb3349, #a43ab2); */
	background:linear-gradient(to right, #A1CB48 0%, #21A5AC 100%) !important;
    padding: 20px;
}

.finalcta-content {
    max-width: 800px;
}

/* Badge Section */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    /*font-size: 0.9rem;*/
	font-size: 1.2rem;
    font-weight: 500;
}

/* Button Styling */
.btn-play {
    display: inline-block;
    background: white;
    color: #6a1b9a; /* Deep Purple */
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.2s;
}

.btn-play:hover {
    transform: scale(1.05);
    background: #f8f8f8;
}

.btn-play span {
    margin-left: 10px;
    font-size: 1.4rem;
    vertical-align: middle;
}

/* Footer Date text */
.footer-text {
    margin-top: 3rem;
    /* font-size: 0.85rem; */
	font-size: 1.0rem; 
    opacity: 0.8;
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .badge-container { flex-direction: column; align-items: center; }
}

/* Scroll animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.accountsteps a{
	color: #000;    
}

.accountsteps a:active{
	color:#000;
	font-weight: 600;
	border-bottom: 3px solid #000;
}

.accountsteps a.btn:active{
	color:#000!important;
	font-weight: 600;
}

a.btn.active {
    color: #000 !important;
    font-weight: 600;    
    border-bottom: 3px solid #000;
}

/*carousel*/

.swiper {
  /* overflow: hidden; */ /* Remove or comment this out */
  position: relative; /* Ensure positioning works for arrows */
}

/* Arrow common styling */
.swiper-button-prev,
.swiper-button-next {
  top: 50%;   /* vertical center */
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  z-index: 10;
}

/* Keep arrows just inside container edges */
.swiper-button-prev {
  left: 10px;
}
.swiper-button-next {
  right: 10px;
}

/* Optional: smaller arrow icon */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
}

@media screen and (min-width: 1024px) {
  .swiper-pagination {
    display: none !important;
  }
}

/*carousel*/

/*new main prizes*/

.bg-mainprizes{	
    background: url("https://imgcdn.myt.mu/mytmoney/lottery/bg-prize.jpg") no-repeat fixed center / cover;	
}
	
/* ── Grid ── */
.prizes {
  display: flex;
  align-items: center;
  justify-content: center;  
  flex-wrap: nowrap;
  gap: clamp(8px, 1.5vw, 20px);
  padding: 0 16px;
}

/* ── Card base ── */
.gpcard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gpcard:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.20);
}

/* Sizes */
.gpcard--first  { width: clamp(280px, 38vw, 440px); aspect-ratio: 4/3; z-index: 2; }
.gpcard--second { width: clamp(220px, 28vw, 340px); aspect-ratio: 4/3; z-index: 1; }
.gpcard--third  { width: clamp(220px, 28vw, 340px); aspect-ratio: 4/3; z-index: 1; }

/* Card image fills the whole card */
.gpcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay for text legibility */
.gpcard__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(0,0,0,0.62) 38%, transparent 70%); */
}

/* ── Colour schemes per card ── */
.gpcard--first  { 
/* outline: 3px solid #4caf50; */
outline-offset: -3px;
outline: 3px solid #FFD700;
box-shadow: 0 0 24px rgba(255, 215, 0, 0.4), 0 8px 32px rgba(0,0,0,0.2);
}
/*.card--second .card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.55) 36%, transparent 68%); }
.card--third  .card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.52) 36%, transparent 68%); }
*/

/* ── Dark navy bg for first card (matches screenshot) ── */
.gpcard--first { background: #0d1b3e; }

/* Placeholder colour layers shown before images load */
.gpcard--second { background: #b8c9a0; }
.gpcard--third  { background: #c8d5b0; }

/* ── Badge ── */
.gpcard__badge {
  position: absolute;
  bottom: clamp(12px, 6%, 24px);
  left: clamp(12px, 5%, 20px);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.badge__label {
  display: inline-block;
  /* background: linear-gradient(135deg, #d4a03c, #f0cc70, #b8872a);   */
  background: linear-gradient(135deg, #f0a500, #dbba08, #c8780a);
  box-shadow: 0 2px 10px rgba(255, 200, 0, 0.5);
  color: #fff;
  font-size: clamp(0.55rem, 1.2vw, 0.9rem);  
  /*font-weight: 800; */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 4px;
}

.badge__amount {
  color: #fff;
  /* font-weight: 900; */  
  font-weight:700;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.gpcard--first  .badge__amount { font-size: clamp(2rem, 5vw, 3.5rem);}
.gpcard--second .badge__amount { font-size: clamp(1.5rem, 3.8vw, 2.7rem); }
.gpcard--third  .badge__amount { font-size: clamp(1.5rem, 3.8vw, 2.7rem); }

/* Stars decoration on first card */
.gpcard--first::before {
  content: '★ ★ ★';
  position: absolute;
  top: 14px;
  right: 14px;
  color: rgba(255,215,80,0.7);
  font-size: 0.9rem;
  letter-spacing: 4px;
  pointer-events: none;
}

/* ── Responsive: stack on narrow screens ── */
@media (max-width: 600px) {
  .prizes { flex-direction: column; align-items: center; gap: 18px; }
  .gpcard--first, .gpcard--second, .gpcard--third {
	width: min(88vw, 320px);
  }
  /* restore natural order: 1st on top */
  .gpcard--second { order: 2; }
  .gpcard--first  { order: 1; }
  .gpcard--third  { order: 3; }
}

@media (min-width: 601px) and (max-width: 860px) {
  .gpcard--first  { width: clamp(200px, 36vw, 300px); }
  .gpcard--second { width: clamp(160px, 28vw, 240px); }
  .gpcard--third  { width: clamp(160px, 28vw, 240px); }
}
/*new main prizes*/

/*new prize cards*/
.prizes-grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  /* max-width: 960px; */
  width: 100%;
}

@media (max-width: 800px) {
  .prizes-grid2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .prizes-grid2 { grid-template-columns: 1fr; }
}

.prize-card3 {
  background: #ffffff;
  border-radius: 20px;
  padding: 14px 14px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.prize-card3:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.13);
}

.prize-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0d0d0d;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.prize-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder shimmer for missing images */
.prize-image-wrap.placeholder {
  background: linear-gradient(135deg, #111 60%, #222 100%);
}

.badge-prize {
  position: absolute;
  top: 10px;
  left: 10px;
  /* background: #1a1a2e;*/
  /* background: linear-gradient(135deg, #d4a03c, #f0cc70, #b8872a); */
  background: linear-gradient(135deg, #f0a500, #dbba08, #c8780a);
  box-shadow: 0 2px 10px rgba(255, 200, 0, 0.5);
  color: #ffffff;
  /* font-family: 'DM Sans', sans-serif; */
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  user-select: none;
}

.prize-title {  
  /*font-size: 15px; */
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 5px;
}

.prize-subtitle {
  /*font-size: 12.5px; */
  /* font-size: 13.5px; */
  font-size: 1.2rem;
  font-weight: 400;
  /*color: #e6a817; */
  color: #000;
  line-height: 1.4;
}
/*new prize cards*/

.custom-boxshadow {
    box-shadow: 0px 7px 20px rgba(51, 51, 51, 0.1);
}

.promo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.promo-text {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
}

/* The highlighted badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #F5C518, #D4A017);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.45); }
  50%       { box-shadow: 0 0 0 6px rgba(212,160,23,0); }
}


/*partners*/

.wrap {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8e8e4;
  padding: 1.5rem;
  max-width: 620px; 
  width: 100%;
}


/* Hero */
.hero {
  background: #f4f4f0;
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.qr-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #ffffff;
  border: 0.5px solid #e0dfd8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-box i {
  font-size: 32px;
  color: #2c2c2a;
}

.hero-body { flex: 1; }

.hero-label {
  font-size: 11px;
  font-weight: 500;
  color: #854f0b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a18;
  line-height: 1.35;
  margin-bottom: 4px;
}

.hero-sub {
  font-size: 12px;
  color: #888780;
}

.hero-sub strong {
  color: #1a1a18;
  font-weight: 500;
}

.ticket-pill {
  background: #eeedfe;
  color: #3c3489;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
}

/* Partners */
/* .section-label {
  font-size: 11px;
  font-weight: 500;
  color: #888780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.partners-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.p-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 0.5px solid #e0dfd8;
  border-radius: 40px;
  padding: 7px 14px 7px 8px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.p-pill:hover {
  border-color: #b4b2a9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.p-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-name {
  font-size: 12px;
  font-weight: 600;
  color: #2c2c2a;
}

.p-cat {
  font-size: 10px;
  color: #888780;
}

/* Responsive */
/*@media (max-width: 480px) {
  .hero { flex-wrap: wrap; }
  .ticket-pill { width: 100%; text-align: center; }
  .how { flex-wrap: wrap; gap: 8px; }
  .step-arrow { display: none; }
} */


.steps-container2 {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	padding: 0 1rem;
}

.step-card2 {
	background: white;
	border-radius: 25px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	position: relative;
	transition: all 0.4s;
	/* border-top: 5px solid; */
}

/* .step-card2:nth-child(1) { border-top-color: #667eea; }
.step-card2:nth-child(2) { border-top-color: #764ba2; }
.step-card2:nth-child(3) { border-top-color: #f093fb; }
.step-card2:nth-child(4) { border-top-color: #ffd700; }
.step-card2:nth-child(5) { border-top-color: #667eea; }
.step-card2:nth-child(6) { border-top-color: #764ba2; }
.step-card2:nth-child(7) { border-top-color: #f093fb; }
.step-card2:nth-child(8) { border-top-color: #ffd700; } */

.step-card2:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.step-card2 h3 {
	font-size: 1.5rem;
	/* font-weight: 800; */
	font-weight: 700;
	color: #333;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.step-card2 h4 {
	font-size: 1.2rem;
	/* font-weight: 800; */
	font-weight: 700;
	color: #333;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.step-card2 p {
	color: #666;
	font-weight: 600;
	line-height: 1.5;
	font-size: 1.2rem;
}

@media (min-width: 768px) {
	.steps-container2 {
		position: relative;
	}
}

/*partners*/

/*new howto
.steps-container {
  display: flex;
  gap: 24px;
  /* flex-wrap: wrap; */
 /* flex-direction: column;  
}

.step-card {
  flex: 1;
  min-width: 160px; 
  background: white;
  border-radius: 25px;
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
  position: relative;
  transition: all 0.4s;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-header img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.step-text {
  display: flex;
  flex-direction: column;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.step-text h3 {
  margin: 0 0 4px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000; 
}

.step-text p {
  margin: 0;
  color: #666;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.2rem;
}
/*new howto*/


/*scale-up*/
.video-thumb {
  position: relative;
  display: inline-block;
}

.video-thumb img:first-child {
  display: block;
  width: 85%;
}

/* Play icon centered on top */
.play-btn {
  position: absolute;
  top: 50%;
  left: 42%;
  width: 150px;
  height: 150px;
  cursor: pointer;
}

/* Hover effect */
.video-thumb:hover .play-btn {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

/* Your animation — translate baked into keyframes to stay centered */
.scale-up-center {
  -webkit-animation: scale-up-center 4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s 50;
          animation: scale-up-center 4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1s 50;
}
@keyframes scale-up-center {
  0%   { transform: translate(-50%, -50%) scale(0.5); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
@-webkit-keyframes scale-up-center {
  0%   { -webkit-transform: translate(-50%, -50%) scale(0.5); }
  100% { -webkit-transform: translate(-50%, -50%) scale(1); }
}
/*scale-up*/

/*video-modal*/

/* Modal overlay */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal.is-open {
  display: flex;
}

/* Modal box */
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 860px;
}

.video-modal__content video,
.video-modal__content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

/* Close button */
.video-modal__close {
  position: absolute;
  top: -36px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

/*video-modal*/

@media (max-width: 768px) {
    .textcentermob {
        text-align: center!important;
        margin: 0 auto;
    }
}