  :root{
      --bg:#222;
      --panel:#111;
      --card:#121212;
      --muted:#bdbdbd;
      --accent:#9fe29f;
    }

    html,body{height:100%}
    body{
      margin:0;
      min-height:100%;
      background:var(--bg);
      color:#fff;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Top header */
    .topbar{
      background:#000;
    }
    .topbar .brand img{ height:38px; display:block; }
    .topbar .navbar-nav .nav-link{
      color: #cfcfcf;
      font-size:14px;
      padding:10px 8px;
      font-weight: 500;
    }
    .topbar .navbar-nav .nav-link:hover{
      color:var(--accent);
      text-decoration:underline;
    }

    /* Center hero */
    .hero {
      max-width:920px;
      margin:38px auto 8px;
      text-align:center;
    }
    .hero h1{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-weight:600;
      font-size:48px;
      margin:0 0 8px;
      color:#f6f6f6;
      letter-spacing:0.6px;
    }
    .hero .beta{
      display:block;
      font-size:10px;
      color:#9a9a9a;
      margin-top:6px;
      letter-spacing:1px;
    }
    .hero h3{
      margin:18px 0 6px;
      color:var(--accent);
      font-weight:600;
      font-size:18px;
    }
    .hero p.lead{
      margin:0 0 28px;
      color:var(--muted);
      font-size:14px;
    }

    /* Grid of sport tiles */
    .tiles {
      max-width:1080px;
      margin: 0 auto 60px;
      padding: 0 14px;
    }
    .tile {
      background:var(--panel);
      padding:18px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      min-height:150px;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .tile:hover{
      transform: translateY(-6px) scale(1.02);
      cursor:pointer;
    }

    /* icon holder (dark square with inner white image) */
  
    .tile img.icon{
      max-width:86%;
      max-height:86%;
      object-fit:contain;
      display:block;
      filter: none;
    }

    .tile .label{
      font-size:15px;
      color:#f1f1f1;
      margin-top:6px;
      letter-spacing:0.2px;
      font-weight: 600;
    }

    /* layout tweaks */
    @media (max-width:767px){
      .hero h1{ font-size:34px; }
      .tile{ min-height:130px; padding:14px; }
      .tile .icon-wrap{ width:96px; height:96px; }
    }

    /* spacing between rows like screenshot */
    .row.gy-4 > .col { padding-bottom: 18px; }



/* BIGGER BOX SIZE + SAME DESIGN */
.col-6.col-md-3 .tile {
  overflow: hidden;
  background-clip: padding-box;
  transition: transform .18s ease, box-shadow .18s ease;

  padding: 18px;
  height: 200px;        /* pehle chhota tha — ab bada */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ICON WRAP — BIGGER IMAGE AREA */
.col-6.col-md-3 .tile .icon-wrap {
  width: 110px;         /* icon size bigger */
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
}

/* ICON IMAGE PERFECT FIT */
.col-6.col-md-3 .tile .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-brand.brand img {
  height: 32px;        /* thora bada size */
  width: auto;         /* image stretch nahi hogi */
  display: block;
}

.navbar-brand.brand {
  padding-top: 4px;     /* perfect vertical alignment */
  padding-bottom: 4px;
  display: flex;
  align-items: center;
}








.faq-box {
    max-width: 1020px;
    margin: 60px auto 80px auto;
    border-radius: 4px;
    font-family: "Segoe UI", sans-serif;
    color: #fff;
  margin-top: -30px;     
}


  .faq-title {
    text-align: start;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .faq-item {
    padding: 10px 0;
    margin-bottom: -10px;
  }

  .faq-q {
    width: 100%;
    text-align: left;
    background: #111;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    padding: 18px 20px;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
    transition: background 0.3s ease;

  }

  .faq-q:hover {
    background: #1a1a1a;
  }

  .arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.35s ease;
  }

  .faq-q.active .arrow {
    transform: translateY(-50%) rotate(-135deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-a-inner {
    padding: 22px 5px 15px 5px;
    font-size: 17px;
    color: #ccc;
    line-height: 1.7;
  }

























/* MOBILE-OPTIMIZED FAQ */
@media (max-width: 768px) {
  
  .faq-box {
    max-width: 95%; /* Almost full width on mobile */
    margin: 40px auto 60px auto;
    padding: 0 10px; /* Side padding */
    border-radius: 6px;
  }

  .faq-title {
    font-size: 20px; /* Slightly smaller on mobile */
    text-align: center; /* Center title for mobile */
    margin-bottom: 15px;
  }

  .faq-item {
    padding: 8px 0;
    margin-bottom: -5px;
  }

  .faq-q {
    font-size: 17px; /* Slightly smaller button text */
    padding: 15px 18px; /* Less padding for mobile */
    border-radius: 5px;
  }

  .arrow {
    right: 15px; /* Adjust arrow position */
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }

  .faq-a-inner {
    padding: 18px 5px 12px 5px; /* Adjust padding for mobile */
    font-size: 16px; /* Slightly smaller font */
    line-height: 1.6;
  }
  
  .faq-q.active .arrow {
    transform: translateY(-50%) rotate(-135deg); /* Keep rotation effect */
  }
  
  .faq-q:hover {
    background: #1a1a1a;
  }
  
  .faq-a {
    transition: max-height 0.35s ease;
  }

}





















.site-footer {
  background: #111;
  padding: 25px 0 15px; 
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;      /* slightly reduced side padding */
}

/* Top Section */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;            /* slightly smaller gap */
  padding-bottom: 10px; /* optional spacing above divider */
}

.footer-logo {
  flex: 1;
  min-width: 260px;
}

.footer-logo h2 {
  color: #fff;
  font-size: 22px;       
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-logo h2 span {
  color: #34c759;
}

.footer-logo p {
  color: #979797;
  font-size: 13px;      /* smaller font for compact look */
  margin-top: 6px;
  line-height: 1.5;
}

/* Quick Links */
.footer-links {
  flex: 1;
  min-width: 280px;     /* slightly smaller for compact layout */
  text-align: right;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;            /* smaller gap between links */
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a {
  color: #bbb;
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* Divider */
.footer-divider {
  margin: 20px 0;       /* slightly less space above and below */
  border-bottom: 1px solid #1d1d1d;
}

/* Disclaimer */
.footer-disclaimer {
  color: #777;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
  max-width: 900px;
  margin: auto;
}

/* Bottom */
.footer-bottom {
  margin-top: 15px;     /* smaller margin above bottom text */
  text-align: center;
  color: #555;
  font-size: 11px;      /* slightly smaller font */
}

/* Mobile Styles */
@media (max-width: 768px) {
  
  /* Stack logo and links vertically */
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
  }

  /* Logo full width */
  .footer-logo {
    min-width: 100%;
  }

  .footer-logo h2 {
    font-size: 20px;
  }

  .footer-logo p {
    font-size: 12px;
  }

  /* Quick links full width, left-aligned */
  .footer-links {
    min-width: 100%;
    text-align: left;
  }

  .footer-links ul {
    justify-content: flex-start;
    gap: 12px; /* smaller gap between links */
    flex-wrap: wrap;
  }

  .footer-links a {
    font-size: 12px;
  }

  /* Divider margin reduced */
  .footer-divider {
    margin: 15px 0;
  }

  /* Disclaimer text smaller */
  .footer-disclaimer {
    font-size: 11px;
    line-height: 1.4;
  }

  /* Bottom text smaller */
  .footer-bottom {
    font-size: 10px;
    margin-top: 10px;
  }
}







































.schedule-box {
    background: #111;
    border-radius: 8px;
    padding: 0;
    overflow-x: hidden;
    border: 1px solid #111;
}

.schedule-head {
    background: #111;
    color: #fff;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 600;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
}

.schedule-table th {
    background: #111;
    padding: 15px 12px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    box-sizing: border-box;
    text-align: start;
}

.schedule-table td {
    padding: 10px 12px;
    font-size: 15px;
    box-sizing: border-box;
}

.schedule-table tr {
    background: #111;
}
.schedule-table tr:hover {
    background: #222;
}

.time-badge {
    font-weight: 600;
    color: #fff;
    background: #333;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.live-badge {
    font-weight: 600;
    color: #fff;
    background: #dc2626;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.watch-btn1 {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.watch-btn1:hover {
    color: #fff;
    transform: translateY(-2px);
}

.watch-live {
    background: #dc2626 !important;
    font-weight: 600;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0d6efd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.container {
    width: 100%;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #444;
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: #333;
    border: 1px solid #0d6efd;
    padding: 5px 12px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.25s ease;
}

.btn:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-2px);
}

table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem;
    vertical-align: top;
    border-top: 1px solid #333;
}

th {
    font-weight: 600;
    background-color: #f4f4f4;
    border-bottom: 1px solid #333;
}

table tr {
    background-color: #000;
    color: white;
    font-weight: 600;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 75%;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.badge-primary {
    background-color: #333;
}

.badge-danger {
    background-color: #dc3545;
}

/* Loader */
.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0d6efd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 50px auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive spacing (similar to Bootstrap spacing) */
.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.p-3 {
    padding: 1rem !important;
}



@media (max-width: 767px) {

.schedule-box {
    background: #181818;
    border-radius: 8px;
    padding: 0;
    overflow-x: hidden;
    border: 1px solid #111;
}

.schedule-head {
    background: #000;
    color: #fff;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 600;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
}

.schedule-table th {
    background: #000;
    padding: 15px 12px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    box-sizing: border-box;
    text-align: start;
}

.schedule-table td {
    padding: 10px 12px;
    font-size: 15px;
    box-sizing: border-box;
}

.schedule-table tr:hover {
    background: #222;
}

.time-badge {
    font-weight: 600;
    color: #fff;
    background: #333;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.live-badge {
    font-weight: 600;
    color: #fff;
    background: #dc2626;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.watch-btn1 {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.watch-btn1:hover {
    color: #fff;
    transform: translateY(-2px);
}

.watch-live {
    background: #dc2626 !important;
    font-weight: 600;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0d6efd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.container {
    width: 100%;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #444;
    font-size: 16px;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: #333;
    border: 1px solid #0d6efd;
    padding: 5px 12px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.25s ease;
}

.btn:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
    transform: translateY(-2px);
}

table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem;
    vertical-align: top;
    border-top: 1px solid #333;
}

th {
    font-weight: 600;
    background-color: #f4f4f4;
    border-bottom: 1px solid #333;
}

table tr {
    background-color: #000;
    color: white;
    font-weight: 600;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 75%;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.badge-primary {
    background-color: #333;
}

.badge-danger {
    background-color: #dc3545;
}

/* Loader */
.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0d6efd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 50px auto;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.p-3 {
    padding: 1rem !important;
}

} /* end of mobile-only media query */
















.match-heading2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-top: 25px;
    color: #e7e7e7;
}

.section-title2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 18px;
    margin-top: 25px;
    border-bottom: 1px solid #333;
    letter-spacing: 0.5px;
}















.stream-box {
    width: 100%;
    max-width: 850px;
    background: #111;
    border-radius: 4px;
    padding: 18px 28px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none !important;
    color: #fff;
    transition: 0.25s ease;
    margin-top: 20px;
    margin-bottom: -20px;
}

.stream-box:hover {
    background: #1a1a1a;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #15d14a;
    box-shadow: 0 0 10px #15d14a;
    flex-shrink: 0;
}

.stream-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stream-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}











  .contact-box {
            background: #111;
            border-radius: 14px;
            padding: 40px;
            width: 100%;
            max-width: 700px; 
        }

        .email-box {
            background: #222;
            padding: 14px 20px;
            border-radius: 10px;
            font-size: 20px;
            font-weight: 600;
            display: inline-block;
            color: white;
        }

        .subhead {
            font-size: 20px;
            font-weight: 600;
            color: white;
        }

        @media (max-width: 576px) {

            .contact-box {
                padding: 25px;
                border-radius: 10px;
                width: 100%;
                margin: 0 10px;
            }

            .email-box {
                font-size: 18px;
                padding: 12px 16px;
            }

            .subhead {
                font-size: 18px;
            }
        }



        .sportsurgeteam{
          color: white;
          font-size: 30px;
          font-weight: 600;
          margin-bottom: 30px;
        }













          .dmca-box {
            background: #111;
            border-radius: 14px;
            padding: 40px;
            max-width: 900px;
            width: 100%;
        }

        .dmca-box
         h2, h4 {
            font-weight: 700;
        }

        .dmca-box p, li,ul {
            font-size: 17px;
            line-height: 1.6;
            color: white;
        }

        @media (max-width: 576px) {
           
            .dmca-box {
                padding: 25px;
                margin: 0 10px;
            }
        }










           .policy-box {
            background: #111;
            padding: 40px;
            border-radius: 14px;
            width: 100%;
            max-width: 900px;
        }

         .policy-box h2, h4 {
            font-weight: 700;
        }

         .policy-box p, li,ul {
            font-size: 17px;
            line-height: 1.6;
            color: white;
        }

        @media (max-width: 576px) {
           

            .policy-box {
                padding: 25px;
                margin: 0 10px;
            }
        }









        
        .about-box {
            background: #111;
            padding: 40px;
            border-radius: 14px;
            width: 100%;
            max-width: 900px;
        }

        .about-box h2, h4 {
            font-weight: 700;
            color: white;
        }

        .about-box p {
            font-size: 17px;
            line-height: 1.6;
            color: white;
        }

        @media (max-width: 576px) {
            
            .about-box {
                padding: 25px;
                margin: 0 10px;
            }
        }