*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}
nav{
    
    gap:20px;
   
    display:flex;
    justify-content:center;
}
.navbar{
    background:#000;
    display:flex;
    
    justify-content:space-between;
    align-items:center;
    padding:10px ;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:5px;
}

.logo img{
    width: 40px;
    height:40px;
}

.logo span{
    color:#fff;
    font-size:2rem;
    font-weight:800;
    letter-spacing:1px;
    font-family:'Poppins', sans-serif;
    
}

.nav-links{
    display:flex;
    list-style:none;
    gap:45px;
}

.nav-links a{
    text-decoration:none;
    color:#fff;
    font-size:1rem;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#22C55E;
}

.nav-links .active{
    color:#22C55E;
    position:relative;
}

.nav-links .active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:100%;
    height:3px;
    background:#22C55E;
    border-radius:5px;
}

.cta-btn{
    text-decoration:none;
    background:linear-gradient(90deg,#22C55E,#4ADE50);
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}
.search-bar{
    flex-direction:row;
    display:flex;
    gap:10px;
    background:#fff;
    padding:5px 10px;
    border-radius:10px;
    
     background:#000;
}

.cta-btn:hover{
    transform:translateY(-2px);
}
.menu-toggle{
    display:none;
    color:white;
    font-size:1.8rem;
    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
        font-size:1rem;
    }
    .cta-btn{
        font-size:0.4rem;
        padding:10px 20px;
    }
    .nav-links{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#000;
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:30px 0;
        z-index:999;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }
}
@media(max-width:992px){

    .navbar{
        display:flex;
        justify-content:space-between;
        gap:20px;
        padding:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }
    .logo span{
        font-size:1rem;
    }

    .nav-links a{
        font-size:0.75rem;
    }
}
.hero{
    min-height:100vh;
    background:
linear-gradient(
    to right,
    rgba(0,0,0,0.95) 0%,
    rgba(6,17,38,0.85) 45%,
    rgba(11,29,58,0.4) 100%
),
url("images/background.png");
background-size: cover;
background-position: center;
    padding:80px 70px;
    color:white;
    position:relative;
}

.badge{
    display:inline-block;
    background:#0f2d1f;
    color:#22C55E;
    padding:10px 20px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
    max-width:700px;
}

.hero h1 span{
    color:#22C55E;
}

.hero p{
    font-size:1.3rem;
    color:#d1d5db;
    max-width:650px;
    margin-bottom:35px;
    line-height:1.7;
}

.green{
    color:#22C55E;
    font-weight:700;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.btn-primary{
    background:#22C55E;
    color:white;
    text-decoration:none;
    padding:18px 28px;
    border-radius:10px;
    font-weight:700;
}

.btn-secondary{
    border:2px solid #eab308;
    color:white;
    text-decoration:none;
    padding:18px 28px;
    border-radius:10px;
    font-weight:700;
}

.features{
    display:flex;
    gap:50px;
}

.features div{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.features span{
    color:#facc15;
    font-weight:700;
}

.features small{
    color:#d1d5db;
}

.prediction-card{
    position:absolute;
    bottom:20px;
    right:30px;
    background:rgba(10,15,30,.95);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px;
    width:500px;
    backdrop-filter:blur(10px);
}

.prediction-card h3{
    color:#22C55E;
    text-align:center;
    margin-bottom:20px;
}

.stats{
    display:flex;
    justify-content:space-between;
}

.stats div{
    text-align:center;
}

.stats p{
    color:#d1d5db;
    margin-bottom:10px;
    font-size:1rem;
}

.stats span{
    font-size:1rem;
    font-weight:500;
}

.stats div:nth-child(1) span{
    color:#22C55E;
}

.stats div:nth-child(2) span{
    color:#facc15;
}

.stats div:nth-child(3) span{
    color:#ffffff;
}

@media (max-width: 768px) {

    .hero{
        min-height:auto;
        padding:40px 20px;
        text-align:center;
        background-position:70% center;

    }

    .badge{
        font-size:0.7rem;
        padding:8px 15px;
        margin-bottom:15px;
    }

    .hero {
        font-size:2.2rem;
        line-height:1.2;
        
    }

    .hero p{
        font-size:1rem;
        line-height:1.6;
        margin-bottom:25px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:15px;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        padding:15px;
        font-size:0.95rem;
        text-align:center;
    }

    .features{
        flex-direction:column;
        gap:20px;
        margin-top:30px;
        align-items:center;
    }

    .prediction-card{
        position:static;
        width:100%;
        margin-top:30px;
        padding:20px;
    }

    .prediction-card h3{
        font-size:1rem;
    }

    .stats{
        display:flex;
        flex-direction:row;
        justify-content:space-between;
    }

    .stats p{
        font-size:0.8rem;
    }

    .stats span{
        font-size:1.8rem;
    }
}
.why-choose{
    padding:60px 40px;
    text-align:center;
    background:#0A1D2E;
}

.why-choose h6{
    color:#22C55E;
    font-size:.8rem;
    margin-bottom:10px;
    letter-spacing:1px;
}

.why-choose h2{
    color:#fff;
    font-size:2rem;
    margin-bottom:35px;
}

.feature-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.feature-card{
    background:#101827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
    text-align:left;
}

.icon{
    font-size:42px;
    color:#22C55E;
}

.feature-card h4{
    color:#fff;
    font-size:1rem;
    margin-bottom:6px;
}

.feature-card p{
    color:#9CA3AF;
    font-size:.85rem;
    line-height:1.5;
}
@media(max-width:768px){

    .feature-cards{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:18px;
    }

    .why-choose h2{
        font-size:1.5rem;
    }

}
.wm-analysis-showcase{
    padding:120px 7%;
    background:#07131f;
}

.wm-analysis-header{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.wm-analysis-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(0,255,140,.12);
    border:1px solid rgba(0,255,140,.25);
    color:#00ff8c;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:2px;
}

.wm-analysis-header h2{
    color:#fff;
    font-size:clamp(2.5rem,5vw,4.5rem);
    margin:20px 0;
    line-height:1.1;
}

.wm-analysis-header p{
    color:#9caec1;
    font-size:1.1rem;
}

.wm-analysis-cards{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.wm-match-box{
    background:#0d1b2a;
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:30px;
    transition:.4s;
}

.wm-match-box:hover{
    transform:translateY(-10px);
    border-color:#00ff8c;
    box-shadow:0 0 40px rgba(0,255,140,.15);
}

.wm-match-league{
    color:#00ff8c;
    font-weight:700;
    margin-bottom:25px;
}

.wm-match-teams{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.wm-team{
    text-align:center;
}

.wm-team-logo{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#13273d;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:10px;
}

.wm-team-logo img{
    width:79px;
    height:79px;
    border-radius:50%;
}

.wm-team span{
    color:white;
    font-weight:600;
}

.wm-vs-circle{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#13273d;
    color:#00ff8c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.wm-match-box h4{
    color:white;
    text-align:center;
    margin:30px 0;
}

.wm-match-box a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
    background:#00ff8c;
    color:#07131f;
    padding:14px;
    border-radius:12px;
    font-weight:700;
}

.wm-feature-strip{
    margin-top:60px;
    background:#0d1b2a;
    border-radius:24px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    border:1px solid rgba(255,255,255,.06);
}

.wm-feature-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.wm-feature-item .material-icons-round{
    color:#00ff8c;
    font-size:32px;
}

.wm-feature-item h5{
    color:white;
    margin-bottom:5px;
}

.wm-feature-item p{
    color:#93a5b8;
    font-size:.9rem;
}

@media(max-width:900px){

    .wm-feature-strip{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .wm-feature-strip{
        grid-template-columns:1fr;
    }

}
.footer {
    background: #02152d;
    color: #cbd5e1;
    padding-top: 60px;
    font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.footer-column {
  flex: 1;
}

.footer-column h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-column p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column a {
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #22c55e;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.logo img {
  width: 45px;
}

.logo h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.3rem;
    color: #fff;
    transition: 0.3s ease;
}

.whatsapp {
    background: #25D366;
}

.telegram {
    background: #229ED9;
}

.instagram {
    background: linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}

.youtube {
    background: #FF0000;
}

.social-icons a:hover {
    transform: translateY(-4px);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s ease;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.footer-bottom {
  margin-top: 50px;
  padding: 25px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #011224;
}

.footer-bottom p {
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-column {
    flex: 1 1 45%;
    min-width: 250px;
  }
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.news-section {
    background: #0f172a; /* Brand navy */
    padding: 80px 5%;
    margin-top: 50px;
}

.section-title {
    text-align: center;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #eab308; /* Brand red */
    margin: 15px auto 0;
    border-radius: 50px;
}

.news-card {
    background: #1e293b; /* Slightly lighter navy */
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: #2563eb; /* Brand blue */
    box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.meta {
    display: flex;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.read-more:hover {
    color: #eab308;
}
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .news-card img {
    height: 200px;
  }
}