* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f172a;
    color: white;
}

/* NAVBAR */
.navbar {
    position: relative;
    width: 100%;
    top: 0;
    padding: 20px 50px;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    font-weight: 600;
    font-size: 18px;
    color: white;
}

/* LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* HOME */
.nav-link {
    text-decoration: none;
    color: white;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    background: #22c55e;
    color: white;
}

/* BUTTON */
.nav-btn {
    background: #22c55e;
    padding: 10px 18px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.nav-btn:hover {
    background: #16a34a;
}

/* ACTIVE BUTTON */
.nav-btn.active-btn {
    box-shadow: 0 0 0 2px white inset;
}
/* HERO */
.hero {
    height: 100vh;
    position: relative;
    background: radial-gradient(circle at top left, #226fec81, #7726f07e);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Glow effect */
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    filter: blur(120px);
    top: -100px;
    left: -100px;
}

/* Cricket silhouette (fake shape for now) */
.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: url('../images/player.webp') no-repeat center;
    background-size: cover;
    opacity: 0.2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

/* Heading */
.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span {
    color: #facc15;
}

/* Text */
.hero p {
    margin: 20px 0;
    font-size: 18px;
    opacity: 0.9;
}

/* Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 16px 32px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

/* Features */
.features {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #cbd5f5;
    padding: 50px 20px;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: auto;
}

/* DISCLAIMER */
.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
}

.disclaimer strong {
    color: #e2e8f0;
}

/* LINKS */
.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #22c55e;
}

/* COPYRIGHT */
.footer .copyright {
    font-size: 13px;
    color: #64748b;
    margin-top: 10px;
}

/* WHY SECTION */
.why-section {
    background: #f8fafc;
    padding: 80px 20px;
    text-align: center;
    color: #0f172a;
}

.why-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

.why-section h2 span {
    color: #2563eb;
}

/* CARDS GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* ICON BOX */
.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* COLORS */
.blue {
    background: #dbeafe;
    color: #2563eb;
}

.orange {
    background: #ffedd5;
    color: #ea580c;
}

.yellow {
    background: #fef9c3;
    color: #eab308;
}

.green {
    background: #dcfce7;
    color: #16a34a;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card p {
    font-size: 14px;
    color: #64748b;
}

/* GROUP SECTION */
.groups-section {
    background: #f1f5f9;
    padding: 80px 20px;
    text-align: center;
    color: #0f172a;
}

.groups-section h2 {
    font-size: 32px;
    font-weight: 800;
}

.subtitle {
    margin-top: 10px;
    margin-bottom: 40px;
    color: #64748b;
}

/* LIST */
.group-list {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.group-item {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.group-item:hover {
    transform: translateY(-3px);
}

/* LEFT */
.left h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.left span {
    font-size: 14px;
    color: #64748b;
}

/* RIGHT */
.right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* TAGS */
.tag {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
}

/* COLORS */
.live {
    background: #fee2e2;
    color: #dc2626;
}

.hot {
    background: #ffedd5;
    color: #ea580c;
}

.new {
    background: #dbeafe;
    color: #2563eb;
}

.active {
    background: #dcfce7;
    color: #16a34a;
}

/* BUTTON */
.join-btn {
    background: #22c55e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

/* TEAM SECTION */
.teams-section {
    background: #f8fafc;
    padding: 80px 20px;
    text-align: center;
    color: #0f172a;
}

.teams-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* GRID */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* CARD */
.team-card {
    padding: 30px 20px;
    border-radius: 16px;
    color: white;
    text-align: center;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* TEXT */
.team-card h3 {
    font-size: 28px;
    font-weight: 800;
}

.team-card p {
    font-size: 14px;
    margin: 10px 0 15px;
    opacity: 0.9;
}

/* BUTTON */
.team-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/* TEAM COLORS */
.csk { background: linear-gradient(135deg, #facc15, #eab308); }
.mi { background: linear-gradient(135deg, #3b82f6, #1e40af); }
.rcb { background: linear-gradient(135deg, #ef4444, #991b1b); }
.kkr { background: linear-gradient(135deg, #a855f7, #6b21a8); }
.dc { background: linear-gradient(135deg, #3b82f6, #9333ea); }
.rr { background: linear-gradient(135deg, #ec4899, #be185d); }
.pbks { background: linear-gradient(135deg, #ef4444, #dc2626); }
.srh { background: linear-gradient(135deg, #f97316, #ea580c); }
.gt { background: linear-gradient(135deg, #0ea5e9, #1e3a8a); }
.lsg { background: linear-gradient(135deg, #14b8a6, #0f766e); }


/* STEPS SECTION */
.steps-section {
    background: #f1f5f9;
    padding: 80px 20px;
    text-align: center;
    color: #0f172a;
}

.steps-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.step-card {
    text-align: center;
    padding: 10px;
}

/* ICON */
.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

/* STEP TEXT */
.step {
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
}

.step-card h3 {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
}

.step-card p {
    margin-top: 5px;
    font-size: 14px;
    color: #64748b;
}

/* BENEFITS SECTION */
.benefits-section {
    background: #f1f5f9;
    padding: 80px 20px;
    text-align: center;
    color: #0f172a;
}

.benefits-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

/* ITEM */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.3s;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

/* ICON */
.benefit-icon {
    width: 50px;
    height: 50px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* TEXT */
.benefit-item p {
    font-size: 15px;
    font-weight: 500;
}


/* RULES SECTION */
.rules-section {
    background: #f8fafc;
    padding: 80px 20px;
    text-align: center;
    color: #0f172a;
}

.rules-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* GRID */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

/* BOX */
.rules-box {
    padding: 30px;
    border-radius: 16px;
    text-align: left;
}

/* DOs */
.dos {
    background: #ecfdf5;
    border: 1px solid #86efac;
}

.dos h3 {
    color: #16a34a;
    margin-bottom: 15px;
}

/* DON'Ts */
.donts {
    background: #fef2f2;
    border: 1px solid #fca5a5;
}

.donts h3 {
    color: #dc2626;
    margin-bottom: 15px;
}

/* LIST */
.rules-box ul {
    list-style: none;
    padding: 0;
}

.rules-box li {
    margin-bottom: 12px;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

/* CUSTOM ICONS */
.dos li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.donts li::before {
    content: "✖";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* FAQ SECTION */
.faq-section {
    background: #f8fafc;
    padding: 80px 20px;
    text-align: center;
    color: #0f172a;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* FAQ BOX */
.faq {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

/* ARROW */
.faq-question::after {
    content: "⌄";
    position: absolute;
    right: 20px;
    font-size: 18px;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 10px 0 15px;
    font-size: 14px;
    color: #64748b;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a, #4c1d95);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: auto;
}

/* HEADING */
.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
}

/* TEXT */
.cta-section p {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.9;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    border-radius: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(34,197,94,0.4);
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

/* HERO */
.groups-hero {
    background: linear-gradient(135deg, #1e3a8a, #4c1d95);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.groups-hero h1 {
    font-size: 42px;
    font-weight: 800;
}

.groups-hero p {
    margin-top: 10px;
    opacity: 0.9;
}

/* FILTERS */
.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    background: #e5e7eb;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active {
    background: #22c55e;
    color: white;
}

/* GRID */
.groups-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 40px;
}

/* CARD */
.group-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

.group-card h3 {
    font-size: 18px;
    font-weight: 700;
}

.group-card p {
    margin: 10px 0;
    color: #475569;
}

/* BUTTON */
.join-btn {
    display: block;
    background: #22c55e;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
}

/* BADGES */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.live { background: #fecaca; color: #b91c1c; }
.hot { background: #fde68a; color: #92400e; }
.new { background: #bfdbfe; color: #1d4ed8; }
.active { background: #bbf7d0; color: #166534; }

/* FOOT TEXT */
.groups-footer {
    text-align: center;
    margin: 30px 0;
    color: #64748b;
}

/* RESPONSIVE */
@media(max-width:900px){
    .groups-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

/* RESPONSIVE */
@media(max-width:700px){
    .rules-grid {
        grid-template-columns: 1fr;
    }
}
/* RESPONSIVE */
@media(max-width:600px){
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media(max-width:900px){
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media(max-width:500px){
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
/* RESPONSIVE */
@media(max-width:1000px){
    .teams-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:600px){
    .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* RESPONSIVE */
@media(max-width:600px){
    .group-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .right {
        width: 100%;
        justify-content: space-between;
    }
}

/* RESPONSIVE */
@media(max-width:900px){
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* RESPONSIVE */
@media(max-width:768px){
    .hero h1 {
        font-size: 36px;
    }

    .hero::after {
        display: none;
    }
}