    body {
      background-color: #0b0b0b;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }

    /* Navbar */
    .navbar {
      /*background-color: #13265C;*/
      
    }
    .navbar-brand img {
      width: 60px;
    }
    .nav-link {
      color: #ddd !important;
      font-weight: 500;
    }
    .nav-link:hover, .active {
      color: #32cd32 !important;
    }

    .btn-login {
      border: 1px solid #32cd32;
      color: #32cd32;
    }
    .btn-login:hover {
      background: #32cd32;
      color: #000;
    }
    .btn-register {
      background-color: #32cd32;
      color: #000;
      font-weight: 600;
    }

    /* Hero Section */
    .hero {
      background: url('https://i.pinimg.com/736x/11/4a/87/114a87e284917ee095c31695ff8cbd4a.jpg') no-repeat center center/cover;
      height: 90vh;
      display: flex;
      align-items: center;
      position: relative;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      margin-left: 5%;
    }
    .hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      color: #32cd32;
    }
    .hero-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #ccc;
    }
    .btn-read {
      background-color: #32cd32;
      color: #000;
      font-weight: 600;
    }
    .btn-read:hover {
      background-color: #28a428;
      color: #fff;
    }

    /* Match Info Section */
    .match-info {
      background-color: #111;
      padding: 30px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
    }
    .match-box {
      flex: 1 1 300px;
      border: 1px solid #222;
      margin: 10px;
      padding: 20px;
      border-radius: 10px;
      background-color: #1a1a1a;
    }
    .match-box h5 {
      color: #32cd32;
    }

 
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2rem;
      }
    }
    /*sports*/
     h4 {
      text-align: center;
      color: #32cd32;
      margin-top: 40px;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .match-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      padding: 20px;
    }

    .match-box {
      /*background-color: #1a1a1a;*/
      background-color: #0d1b2a;
      border: 1px solid #222;
      border-radius: 10px;
      overflow: hidden;
      width: 320px;
      box-shadow: 0px 0px 10px rgba(50, 205, 50, 0.2);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .match-box:hover {
      transform: translateY(-5px);
      box-shadow: 0px 0px 15px rgba(50, 205, 50, 0.5);
    }

    .match-box img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #333;
    }

    .match-box .card-body {
      padding: 15px;
    }

    .match-box h5 {
      color: #32cd32;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .match-box p {
      color: #ccc;
      font-size: 0.95rem;
    }

    .badge-custom {
      background-color: #32cd32;
      color: #000;
      margin-right: 5px;
      font-size: 0.8rem;
    }
    .btn-container {
  display: flex;
  justify-content: center;
  margin-top: 10px; /* optional */
  margin-bottom: 30px;
}

/* footer*/
.footer {
  background-color: #0d1b2a; /* deep blue-gray */
  color: #f1f1f1;
  padding: 50px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section p,
.footer-section a {
  color: #d1d1d1;
  font-size: 14px;
  line-height: 1.8;
}

.footer-section a:hover {
  color: #00bfff;
  text-decoration: none;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.social-links a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00bfff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #2c3e50;
  padding-top: 15px;
  font-size: 13px;
  color: #b0b0b0;
}
