* {
  margin: 0%;
  padding: 0%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #222;
  color: #fff;
}

.header {
  background: #000;
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 6px 20px;
}

.logo a {
  color: #ffffff;
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo a:hover {
  color: #ffffff;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 23px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.nav-menu a:hover {
  color: #ff7a00;
}

.hero {
  padding: 30px 0 40px;
  text-align: center;
}

.hero h1 {
  font-size: 24px;
  color: #ff7a00;
  font-weight: 700;
  text-align: center;
}

.hero p {
  max-width: 1150px;
  margin: 18px auto;
  line-height: 1.7;
  color: #ddd;
  text-align: start;
}

.hero button {
  margin: 25px 0;
  padding: 14px 44px;
  font-size: 18px;
}

.sports-line {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.sport-mini {
  background: #000;
  padding: 12px 0;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  color: white;
  font-weight: 600;
  margin-top: 30px;

}

.sport-mini:hover {
  background: #ff7a00;
  color: #000;
}

.poster {
  margin: 50px auto;
  max-width: 1100px;
}

.poster img {
  width: 100%;
  border-radius: 12px;
}

.section-title {
  font-size: 28px;
  color: #ff7a00;
  margin-bottom: 25px;
  text-align: start;
}

.league-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.league-box {
  background: #000;
  padding: 22px;
  border-radius: 10px;
}

.league-box:hover {
  background: transparent;
}

.league-box h5 {
  color: #ff7a00;
  margin-bottom: 10px;
  text-align: start;
}

.league-box p {
  font-size: 14px;
  color: #ccc;
  text-align: start;
}

.extra {
  display: none;
}

.show-btn {
  margin: 15px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 42px;
  font-size: 16px;
  background: transparent;
  border: 1px solid #ff7a00;
  color: #ff7a00;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;

}

.show-btn:hover {
  background: #ff7a00;
  color: #000;
}

.arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
  transition: 0.3s;
  margin-top: -4px;
}

.show-btn.active .arrow {
  transform: rotate(-135deg);
  animation: none;
  margin-top: 10px;
}

@keyframes bounceLR {

  0%,
  100% {
    transform: rotate(45deg) translateX(0);
  }

  50% {
    transform: rotate(45deg) translateX(4px);
  }
}

.reasons-section {
  padding: 10px 0;
}

.reasons-title {
  text-align: start;
  font-size: 30px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 45px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reason-box {
  background: #000;
  padding: 30px 26px;
  border-radius: 14px;
  text-align: center;
}

.reason-box:hover {
  background: transparent;
}

.reason-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.reason-box h4 {
  font-size: 18px;
  color: #ff7a00;
  margin-bottom: 10px;
  text-align: start;
}

.reason-box p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

.ms-btn {
  background: #ff7a00;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ms-btn:hover {
  background: #ffffff;
  color: #ff7a00;
  transform: scale(1.05);
}

.how-watch-section {
  padding: 20px 0;
}

.how-title {
  text-align: start;
  font-size: 30px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 40px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto 35px;
}

.how-box {
  background: #000;
  padding: 28px 26px;
  border-radius: 14px;
}

.how-box:hover {
  background: transparent;
}

.how-box h4 {
  font-size: 18px;
  color: #ff7a00;
  margin-bottom: 10px;
  text-align: start;
}

.how-box p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

.how-text {
  max-width: 880px;
  margin: 0 auto 35px;
  text-align: start;
}

.how-text p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
}

.how-action {
  text-align: center;
}

.how-btn {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 30px;
  border: 1px solid #ff7a00;
  color: #ff7a00;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.how-btn:hover {
  background: #ff7a00;
  color: #000;
}

@media(max-width:768px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  padding: 20px 0;
}

.faq-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 45px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  text-align: left;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #ff7a00;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
  text-align: start;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

@media(max-width:768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-grid {
  align-items: start;
}

.faq-item {
  height: fit-content;
  align-self: flex-start;
}

.site-footer {
  background: #000;
  border-top: 1px solid #111;
  padding: 32px 0 14px;
  color: #cfcfcf;
}

.footer-disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: #bdbdbd;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-divider {
  height: 1px;
  background: #111;
  margin: 14px 0;
}

.footer-keywords-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.footer-keywords-wrap span {
  font-size: 12.5px;
  padding: 6px 12px;
  border: 1px solid #222;
  border-radius: 20px;
  color: #cfcfcf;
  background: #0d0d0d;
  transition: 0.3s;
}

.footer-keywords-wrap span:hover {
  border-color: #ff7a00;
  color: #ff7a00;
}

.footer-inline-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-brand {
  color: #ff7a00;
  font-weight: 600;
}

.footer-inline-links a {
  color: #cfcfcf;
  text-decoration: none;
  transition: 0.3s;
}

.footer-inline-links a:hover {
  color: #ff7a00;
}

.footer-bottom {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #888;
}

@media(max-width:768px) {

  .header-inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }

  .nav-menu {
    justify-content: center;
    gap: 12px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  .logo a {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero p {
    font-size: 14px;
    max-width: 95%;
    margin: 12px auto;
    text-align: center;
  }

  .hero button {
    width: 90%;
    font-size: 16px;
    padding: 12px 0;
  }

  .sports-line {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .sport-mini {
    font-size: 12px;
    padding: 8px 0;
    margin-top: 20px;
  }

  .poster {
    max-width: 95%;
    margin: 30px auto;
  }

  .league-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .league-box {
    padding: 20px;
  }

  .league-box h5 {
    font-size: 16px;
  }

  .league-box p {
    font-size: 13px;
  }

  .show-btn {
    padding: 12px 32px;
    font-size: 14px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reason-box {
    padding: 20px;
  }

  .reason-box h4 {
    font-size: 16px;
  }

  .reason-box p {
    font-size: 13px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .how-box h4 {
    font-size: 16px;
  }

  .how-box p {
    font-size: 13px;
  }

  .how-title {
    font-size: 22px;
  }

  .how-text p {
    font-size: 14px;
  }

  .how-btn {
    width: 90%;
    padding: 12px 0;
    font-size: 15px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 18px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .footer-disclaimer {
    font-size: 12px;
    padding: 0 12px;
  }

  .footer-keywords-wrap {
    gap: 6px;
    justify-content: center;
  }

  .footer-keywords-wrap span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .footer-inline-links {
    font-size: 12px;
    gap: 6px;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 8px 0;
  }
}

 .header-home {
     padding: 10px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1100px;
     margin: auto;
     padding: 0 15px;
 }

 .back-home-btn {
     background: #ff7a00;
     color: #fff;
     padding: 8px 14px;
     border-radius: 6px;
     font-size: 14px;
     font-weight: 600;
     text-decoration: none;
     transition: 0.3s;
     margin-top: 50px;
 }

 .back-home-btn:hover {
     background: #fff;
     color: #ff7a00;
 }

 .hero1 {
     text-align: center;
     margin: 30px 0;
 }

 .hero1 h1 {
     font-size: 28px;
     color: #ff7a00;
     margin-bottom: 12px;
 }

 .hero1 p {
     font-size: 16px;
     color: #ccc;
     max-width: 800px;
     margin: auto;
 }

 .contact-section {
     padding: 30px 0;
 }

 .contact-section h2 {
     font-size: 28px;
     color: #ff7a00;
     margin-bottom: 25px;
     text-align: center;
 }

 .contact-form {
     background: #000;
     padding: 30px;
     border-radius: 12px;
     max-width: 600px;
     margin: auto;
     position: relative;
 }

 .contact-form label {
     display: block;
     font-size: 14px;
     margin-bottom: 6px;
     color: #ff7a00;
     font-weight: 600;
 }

 .contact-form input,
 .contact-form textarea {
     width: 100%;
     padding: 12px 15px;
     margin-bottom: 20px;
     border-radius: 6px;
     border: 1px solid #333;
     background: #111;
     color: #fff;
     font-size: 14px;
     font-weight: 600;
 }

 .contact-form input:focus,
 .contact-form textarea:focus {
     outline: none;
     border-color: #ff7a00;
 }

 .contact-form button {
     background: #ff7a00;
     color: #fff;
     font-size: 16px;
     font-weight:600;
     padding: 12px 25px;
     border: none;
     border-radius: 6px;
     cursor: pointer;
     transition: 0.3s;
 }

 .contact-form button:hover {
     background: #fff;
     color: #ff7a00;
     transform: scale(1.05);
 }

 .toast {
     visibility: hidden;
     min-width: 280px;
     max-width: 95%;
     background: #ff7a00;
     color: #000;
     text-align: center;
     border-radius: 6px;
     padding: 15px 20px;
     position: fixed;
     top: 20px;
     right: 20px;
     z-index: 9999;
     font-weight: 600;
     font-size: 14px;
 }

 .toast.show {
     visibility: visible;
     animation: fadein 0.5s, fadeout 0.5s 9.5s;
 }

 @keyframes fadein {
     from {
         opacity: 0;
         top: 0px;
     }

     to {
         opacity: 1;
         top: 20px;
     }
 }

 @keyframes fadeout {
     from {
         opacity: 1;
         top: 20px;
     }

     to {
         opacity: 0;
         top: 0px;
     }
 }
@media(max-width:768px){

  .container-contact {
    padding: 15px;
  }

  .header-home {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .back-home-btn {
    margin-top: 15px;
    font-size: 13px;
    padding: 8px 12px;
  }

  .hero1 h1 {
    font-size: 22px;
  }

  .hero1 p {
    font-size: 14px;
    max-width: 100%;
  }

  .contact-form {
    padding: 20px;
    width: 100%;
  }

  .contact-form label {
    font-size: 13px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 13px;
    padding: 10px 12px;
  }

  .contact-form button {
    font-size: 15px;
    padding: 10px 20px;
  }

  .toast {
    font-size: 13px;
    padding: 12px 18px;
    top: 10px;
    right: 10px;
    min-width: 220px;
  }

}
