html{
scroll-behavior:smooth;
overflow-x:hidden;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#000;
color:#fff;
overflow-x:hidden;
}

img{
max-width:100%;
height:auto;
display:block;
}

/* HERO */

.hero{
position:relative;
min-height:85vh;
background:url("../../assets/img/stadium.jpg") center/cover no-repeat;
display:flex;
align-items:flex-start;
justify-content:center;
text-align:center;
padding:30px 20px;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
rgba(0,60,120,0.60),
rgba(0,0,0,0.90)
);
}

.hero-content{
position:relative;
z-index:2;
max-width:1200px;
width:100%;
display:flex;
flex-direction:column;
align-items:center;
}

.hero-logo img{
width:250px;
margin:0 auto 10px;
}

.hero h1{
font-size:58px;
font-weight:800;
margin-bottom:6px;
}

.hero p{
font-size:22px;
margin-bottom:30px;
color:#ddd;
}

/* INFO BOXES */

.hero-info-bar{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
margin-bottom:35px;
width:100%;
}

.info-item{
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.15);
padding:14px 18px;
border-radius:10px;
min-width:160px;
backdrop-filter:blur(6px);
}

/* Homepage Info Icons Fix Start */
.info-label{
font-size:16px;
font-weight:700;
margin-bottom:4px;
}

.info-item:nth-child(1) .info-label::before{
content:"📅 ";
}

.info-item:nth-child(2) .info-label::before{
content:"📍 ";
}

.info-item:nth-child(3) .info-label::before{
content:"⏱ ";
}

.info-item:nth-child(4) .info-label::before{
content:"👥 ";
}

.info-item:nth-child(5) .info-label::before{
content:"💰 ";
}
/* Homepage Info Icons Fix End */

.info-value{
font-size:14px;
color:#ddd;
}

/* TEAM COUNTER */

.team-counter{
margin:0 auto 22px;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
font-weight:700;
color:#ffffff;
line-height:1.4;
}

.team-counter div{
font-size:16px;
margin-bottom:4px;
color:#ffffff;
}

.team-counter span{
font-size:28px;
font-weight:800;
line-height:1;
}

.team-count-number{
display:inline-block;
min-width:1ch;
}

/* BUTTON */

/* BUTTON */

.hero-action-row{
display:flex;
align-items:center;
justify-content:center;
gap:14px;
flex-wrap:wrap;
}

.register-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
text-decoration:none;
background:linear-gradient(135deg,#00ff88 0%,#00c853 100%);
color:#ffffff;
padding:15px 34px;
font-size:18px;
font-weight:700;
letter-spacing:.8px;
border-radius:50px;
border:1px solid rgba(255,255,255,0.12);
position:relative;
overflow:hidden;
box-shadow:
0 0 12px rgba(0,255,136,0.45),
0 0 24px rgba(0,255,136,0.18);
transition:all .3s ease;
animation:pulseGlow 2s infinite;
}

.register-btn:hover{
color:#ffffff;
transform:translateY(-2px) scale(1.03);
box-shadow:
0 0 16px rgba(0,255,136,0.65),
0 0 32px rgba(0,255,136,0.28);
}

.register-btn:active{
transform:scale(.98);
}

.register-btn::before{
content:"";
position:absolute;
top:0;
left:-75%;
width:45%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.55),
transparent
);
transform:skewX(-25deg);
}

.register-btn:hover::before{
animation:btnShine .9s ease;
}

.register-btn .btn-icon{
font-size:20px;
line-height:1;
position:relative;
z-index:1;
}

.register-btn .btn-text{
position:relative;
z-index:1;
}

/* Match Schedule Button CSS Start */
.match-schedule-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
text-decoration:none;
background:linear-gradient(135deg,#00aaff 0%,#0066ff 100%);
color:#ffffff;
padding:15px 34px;
font-size:18px;
font-weight:700;
letter-spacing:.8px;
border-radius:50px;
border:1px solid rgba(255,255,255,0.12);
position:relative;
overflow:hidden;
box-shadow:
0 0 12px rgba(0,170,255,0.45),
0 0 24px rgba(0,170,255,0.18);
transition:all .3s ease;
}

.match-schedule-btn:hover{
color:#ffffff;
transform:translateY(-2px) scale(1.03);
box-shadow:
0 0 16px rgba(0,170,255,0.65),
0 0 32px rgba(0,170,255,0.28);
}

.match-schedule-btn:active{
transform:scale(.98);
}

.match-schedule-btn::before{
content:"";
position:absolute;
top:0;
left:-75%;
width:45%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.55),
transparent
);
transform:skewX(-25deg);
}

.match-schedule-btn:hover::before{
animation:btnShine .9s ease;
}

.match-schedule-btn .btn-icon{
font-size:20px;
line-height:1;
position:relative;
z-index:1;
}

.match-schedule-btn .btn-text{
position:relative;
z-index:1;
}
/* Match Schedule Button CSS End */

@keyframes btnShine{
100%{
left:130%;
}
}

@keyframes pulseGlow{
0%{
box-shadow:
0 0 0 0 rgba(0,255,136,0.35),
0 0 12px rgba(0,255,136,0.45),
0 0 24px rgba(0,255,136,0.18);
}
70%{
box-shadow:
0 0 0 14px rgba(0,255,136,0),
0 0 16px rgba(0,255,136,0.5),
0 0 28px rgba(0,255,136,0.2);
}
100%{
box-shadow:
0 0 0 0 rgba(0,255,136,0),
0 0 12px rgba(0,255,136,0.45),
0 0 24px rgba(0,255,136,0.18);
}
}

.section-title{
font-size:36px;
margin-bottom:40px;
text-align:center;
}

/* PRIZES */

.prizes{
padding:1px 20px 80px;
background:#050505;
text-align:center;
}

.prize-row{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
width:100%;
}

.prize-card{
position:relative;
background:#0f1c2f;
padding:28px 30px;
border-radius:10px;
min-width:220px;
border:1px solid rgba(0,150,255,0.25);
box-shadow:
0 0 12px rgba(0,150,255,0.35),
0 0 22px rgba(0,150,255,0.25),
0 0 35px rgba(0,150,255,0.15);
overflow:hidden;
transition:transform .35s ease, box-shadow .35s ease;
}

.prize-card:hover{
transform:translateY(-6px);
box-shadow:
0 0 14px rgba(0,150,255,0.40),
0 0 26px rgba(0,150,255,0.30),
0 0 40px rgba(0,150,255,0.18);
}

.prize-card::after{
content:"";
position:absolute;
top:-50%;
left:-60%;
width:50%;
height:200%;
background:linear-gradient(
120deg,
rgba(255,255,255,0) 0%,
rgba(255,255,255,0.6) 50%,
rgba(255,255,255,0) 100%
);
transform:rotate(25deg);
animation:shine 4s infinite;
}

@keyframes shine{
0%{left:-60%;}
100%{left:130%;}
}

.prize-card.winner{
background:linear-gradient(145deg,#2b1d00 0%,#171000 45%,#0f1c2f 100%);
border:1px solid #ffd700;
box-shadow:
0 0 0 1px rgba(255,215,0,0.45),
0 0 12px rgba(255,215,0,0.35),
0 0 24px rgba(255,215,0,0.22),
0 0 38px rgba(255,215,0,0.14);
animation:winnerGlow 2s ease-in-out infinite alternate;
}

/* Homepage Prize Icons Fix Start */
.prize-card:nth-child(1) h3::before{
content:"🥇 ";
}

.prize-card:nth-child(2) h3::before{
content:"🥈 ";
}

.prize-card:nth-child(3) h3::before{
content:"🏅 ";
}

.prize-card:nth-child(4) h3::before{
content:"🏏 ";
}
/* Homepage Prize Icons Fix End */

.prize-card.winner h3{
color:#ffd700;
text-shadow:0 0 10px rgba(255,215,0,0.35);
position:relative;
z-index:2;
}

.prize-card.winner p{
color:#fff3b0;
text-shadow:
0 0 8px rgba(255,215,0,0.28),
0 0 18px rgba(255,215,0,0.18);
position:relative;
z-index:2;
}

.prize-card.winner:hover{
transform:translateY(-8px);
box-shadow:
0 0 0 1px rgba(255,215,0,0.60),
0 0 16px rgba(255,215,0,0.50),
0 0 30px rgba(255,215,0,0.30),
0 0 46px rgba(255,215,0,0.18);
}

@keyframes winnerGlow{
0%{
box-shadow:
0 0 0 1px rgba(255,215,0,0.35),
0 0 10px rgba(255,215,0,0.26),
0 0 20px rgba(255,215,0,0.16),
0 0 32px rgba(255,215,0,0.10);
}
100%{
box-shadow:
0 0 0 1px rgba(255,215,0,0.55),
0 0 14px rgba(255,215,0,0.42),
0 0 28px rgba(255,215,0,0.24),
0 0 42px rgba(255,215,0,0.14);
}
}

/* RULES / FAQ TABS */

.rules{
background:transparent;
padding:80px 20px;
text-align:center;
}

.tab-buttons{
display:flex;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-bottom:30px;
}

.tab-btn{
border:none;
outline:none;
cursor:pointer;
padding:12px 24px;
border-radius:30px;
font-size:15px;
font-weight:700;
font-family:'Poppins',sans-serif;
background:rgba(255,255,255,0.08);
color:#fff;
border:1px solid rgba(255,255,255,0.12);
transition:.3s;
}

.tab-btn:hover{
transform:translateY(-2px);
background:rgba(255,255,255,0.14);
}

.tab-btn.active{
background:linear-gradient(135deg,#00aaff,#0066ff);
border-color:rgba(0,170,255,0.5);
box-shadow:0 0 16px rgba(0,170,255,0.35);
}

.rules-box{
max-width:900px;
margin:auto;
background:#0f1c2f;
border-radius:10px;
padding:35px;
border:1px solid rgba(0,150,255,0.25);
text-align:left;
width:100%;
box-shadow:
0 0 14px rgba(0,150,255,0.35),
0 0 28px rgba(0,150,255,0.20),
0 0 40px rgba(0,150,255,0.12);
}

.tab-content{
display:none;
opacity:0;
transform:translateY(12px);
transition:opacity .35s ease, transform .35s ease;
}

.tab-content.active{
display:block;
opacity:1;
transform:translateY(0);
}

.rule-section h3{
margin-bottom:12px;
font-size:18px;
text-transform:uppercase;
}

.rule-list{
list-style:none;
}

/* Match Rules Cricket Icon Fix Start */
.rule-list li{
margin-bottom:10px;
font-size:14px;
color:#ddd;
position:relative;
padding-left:28px;
}

.rule-list li::before{
content:"🏏";
position:absolute;
left:0;
top:0;
}
/* Match Rules Cricket Icon Fix End */

.faq-list{
display:flex;
flex-direction:column;
gap:16px;
}

.faq-item{
background:rgba(255,255,255,0.04);
border:1px solid rgba(255,255,255,0.08);
border-radius:10px;
padding:18px 20px;
transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.faq-item:hover{
transform:translateY(-4px);
border-color:rgba(0,170,255,0.35);
box-shadow:0 8px 20px rgba(0,80,180,0.18);
}

.faq-item h3{
font-size:16px;
margin-bottom:8px;
color:#fff;
}

.faq-item p{
font-size:14px;
line-height:1.7;
color:#ddd;
}

/* FOOTER */

.footer{
background:#161616;
padding:28px 20px 14px;
border-top:1px solid #2a2a2a;
margin-top:40px;
}

.footer-top{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:flex-start;
flex-wrap:wrap;
gap:24px;
text-align:center;
width:100%;
}

.footer-col{
flex:1 1 300px;
}

.footer-col h3{
font-size:18px;
margin-bottom:12px;
font-weight:700;
}

.footer-contact{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
}

.footer-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;
padding:9px 16px;
border-radius:999px;
text-decoration:none;
font-weight:600;
font-size:13px;
line-height:1;
color:#fff;
transition:.25s ease;
border:1px solid rgba(255,255,255,0.10);
box-shadow:0 4px 14px rgba(0,0,0,0.18);
}

.footer-btn img{
width:18px;
height:18px;
object-fit:contain;
}

.footer-btn:hover{
transform:translateY(-2px);
}

.footer-btn.direction{
background:#2a2f38;
color:#fff;
}

.footer-btn.instagram{
background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.footer-btn.whatsapp{
background:#25D366;
color:#08140d;
}

.footer-bottom{
margin-top:18px;
padding-top:12px;
border-top:1px solid #262626;
text-align:center;
}

.footer-bottom p{
font-size:13px;
color:#9e9e9e;
}

/* REVEAL SYSTEM */

.reveal{
opacity:0;
transform:translateY(50px);
transition:opacity .9s ease, transform .9s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.reveal-zoom{
opacity:0;
transform:translateY(50px) scale(.96);
transition:opacity .9s ease, transform .9s ease;
}

.reveal-zoom.active{
opacity:1;
transform:translateY(0) scale(1);
}

.reveal-left{
opacity:0;
transform:translateX(-30px);
transition:opacity .9s ease, transform .9s ease;
}

.reveal-left.active{
opacity:1;
transform:translateX(0);
}

.reveal-right{
opacity:0;
transform:translateX(30px);
transition:opacity .9s ease, transform .9s ease;
}

.reveal-right.active{
opacity:1;
transform:translateX(0);
}

.reveal-card{
opacity:0;
transform:translateY(40px);
transition:opacity .8s ease, transform .8s ease;
}

.reveal-card.active{
opacity:1;
transform:translateY(0);
}

.prize-card.reveal-card:nth-child(1){transition-delay:.10s;}
.prize-card.reveal-card:nth-child(2){transition-delay:.25s;}
.prize-card.reveal-card:nth-child(3){transition-delay:.40s;}
.prize-card.reveal-card:nth-child(4){transition-delay:.55s;}

/* RULE + FAQ ITEM REVEAL */

.reveal-item{
opacity:0;
transform:translateY(30px);
transition:opacity .6s ease, transform .6s ease;
}

.reveal-item.active{
opacity:1;
transform:translateY(0);
}

.rule-list li:nth-child(1){transition-delay:.05s;}
.rule-list li:nth-child(2){transition-delay:.10s;}
.rule-list li:nth-child(3){transition-delay:.15s;}
.rule-list li:nth-child(4){transition-delay:.20s;}
.rule-list li:nth-child(5){transition-delay:.25s;}
.rule-list li:nth-child(6){transition-delay:.30s;}
.rule-list li:nth-child(7){transition-delay:.35s;}
.rule-list li:nth-child(8){transition-delay:.40s;}
.rule-list li:nth-child(9){transition-delay:.45s;}

.faq-item:nth-child(1){transition-delay:.05s;}
.faq-item:nth-child(2){transition-delay:.10s;}
.faq-item:nth-child(3){transition-delay:.15s;}
.faq-item:nth-child(4){transition-delay:.20s;}
.faq-item:nth-child(5){transition-delay:.25s;}
.faq-item:nth-child(6){transition-delay:.30s;}
.faq-item:nth-child(7){transition-delay:.35s;}
.faq-item:nth-child(8){transition-delay:.40s;}

/* MOBILE */

@media(max-width:768px){

.hero h1{font-size:26px;}
.hero p{font-size:18px;}
.hero-logo img{width:180px;}

.section-title{font-size:28px;}

.prize-card{
min-width:100%;
}

.hero-info-bar{
gap:10px;
}

.info-item{
min-width:120px;
padding:10px 12px;
}

.info-label{
font-size:13px;
}

.info-value{
font-size:12px;
}

.prize-row{
gap:20px;
}

.register-btn,
.match-schedule-btn{
padding:13px 24px;
font-size:15px;
gap:8px;
}

.register-btn .btn-icon,
.match-schedule-btn .btn-icon{
font-size:17px;
}

.rules-box{
padding:22px 18px;
}

.tab-btn{
padding:10px 18px;
font-size:14px;
}

.faq-item{
padding:16px;
}

.footer{
padding:24px 16px 12px;
margin-top:30px;
}

.footer-col h3{
font-size:17px;
margin-bottom:10px;
}

.footer-contact{
gap:8px;
}

.footer-btn{
padding:8px 13px;
font-size:12px;
gap:6px;
}

.footer-btn img{
width:16px;
height:16px;
}

.team-counter{
margin:0 auto 18px;
}

.team-counter div{
font-size:14px;
}

.team-counter span{
font-size:22px;
}

.prize-card.winner::before{
top:10px;
right:10px;
font-size:10px;
padding:5px 8px;
}

}

/* Hero button layout */
.hero-action-wrapper{
display:flex;
flex-direction:column;
align-items:center;
gap:15px;
}

/* Register button row */
.register-row{
display:flex;
justify-content:center;
width:100%;
}

/* Schedule buttons row */
.schedule-row{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
flex-wrap:wrap;
width:100%;
}

/* Mobile responsive buttons */
@media (max-width:768px){

.schedule-row{
flex-direction:column;
width:100%;
}

.schedule-row a{
width:100%;
max-width:320px;
}

.register-row a{
width:100%;
max-width:320px;
}

}
/* Homepage Button Icons Fix Start */
.register-icon::before{
content:"🏏";
}

.schedule-icon::before{
content:"📅";
}

.format-icon::before{
content:"🏆";
}
/* Homepage Button Icons Fix End */