body {
    font-family: 'Inter', sans-serif;
    background: #0b0f19;
    color: #e5e7eb;
}

.top-nav {
    background: #020617;
    padding: 10px 0;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #ef4444;
}

.league-links a {
    font-size: 13px;
    margin-left: 10px;
    color: #cbd5e1;
      text-decoration:none;

}

.league-links a:hover {
    text-decoration: underline;
}

.hero {
    padding-top: 120px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    max-width: 900px;
    margin: auto;
}

.main-btn {
    background: #ef4444;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
}

.hero-poster {
    margin-top: 30px;
    max-width: 850px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
}

.article-box,
.reason-box,
.info-box {
    background: #020617;
    border: 1px solid #1e293b;
    padding: 20px;
    border-radius: 12px;
    height: 100%;
}

.article-box h4 {
    font-size: 17px;
}

.reason-box strong {
    display: block;
    margin: 8px 0;
}

.cta {
    background: #0b0f19;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 800px;
    text-align: center;
}

.cta-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

.cta-btn:hover {
    background: #dc2626;
}

@media(max-width:768px) {
    .cta-box h2 {
        font-size: 24px;
    }
}


.footer-content {
    background: #020617;
    padding: 50px 0 40px;
    border-top: 1px solid #1e293b;
}

.footer-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.footer-desc {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #ef4444;
}

.footer {
    background: #020617;
    border-top: 1px solid #1e293b;
    padding: 18px 0;
    font-size: 13px;
    text-align: center;
    color: #94a3b8;
}

.faq-section {
    padding: 60px 0;
    background: #0b0f19;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
}

.faq-box {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 15px;
}

.faq-box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-box p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
}

@media (max-width:768px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-box {
        padding: 18px;
    }
}

.league-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 15px 0;
}

.league-btn {
    text-decoration: none;
    color: #e5e7eb;
    background: #020617;
    border: 1px solid #1e293b;
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 20px;
    transition: 0.25s;
    white-space: nowrap;
}

.league-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

@media (max-width:768px) {
    .league-btn {
        font-size: 12px;
        padding: 5px 10px;
    }
}





