/* 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: 3rem;
}

.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 45px;
    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);
}