* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0%;
  padding: 0%;
  background: #ffffff;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
}

.navbar {
  background: #ececec;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

.navbar-brand {
  color: black !important;
  font-weight: 600;
}

.nav-link {
  color: black !important;
  font-weight: 600;
  font-size: 14px
}

.nav-link:hover {
  text-decoration: underline;
}

.main-wrapper {
  flex: 1;
  padding-top: 30px;
}

.container-main {
  max-width: 1350px
}

.page-date {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: black;
  margin-bottom: 10px;
  padding-bottom: 12px;
  margin-top: 13px;
}

.page-date::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, black, transparent);
}


.league-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
}

.league-title img {
  width: 36px
}

.match-card {
  background: #ececec;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 7px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  color: black;
}

.match-card:hover {
  background-color: #e1e1e1;
}

.match-card {
  position: relative;
  overflow: hidden;
}

.match-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: black;

}

.league-badge {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #000;
  color: white;
  padding: 6px 14px 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-bottom-right-radius: 3px;
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;

}

.league-badge img {
  width: 15px
}

.match-date {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 12px;
  color: black;
  margin-top: 7px;
  font-weight: 400;
}

.match-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 150px;
  align-items: center;
}

.team {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: black;

}

.team img {
  width: 26px;
  height: 26px
}

.vs {
  text-align: center;
  color: black;
  font-weight: 600;
  font-size: 16px
}

.match-info {
  text-align: right;
  color: black;
}

.match-time {
  font-size: 13px;
  color: black;
  font-weight: 600;
  margin-top: 7px;
}

.countdown {
  font-size: 12px;
  margin-top: 3px;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.et-card {
  background: #ececec;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
}

.et-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: black;
  font-weight: 600;
}

.et-time {
  font-size: 36px;
  font-weight: 800;
  margin: 6px 0;
  color: black;

}

.et-date {
  font-size: 14px;
  color: black;
}

.et-footer {
  font-size: 12px;
  color: black;
}

.article-card {
  background: #000;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
}

.article-card h5 {
  font-size: 15px;
  font-weight: 700;
}

.article-card p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

.site-footer {
  background-color: #ececec;
  border-top: 1px solid #e1e1e1;
  color: black;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 30px;
}

.site-footer .footer-content p {
  margin: 5px 0;
  font-weight: 600;
  color: black;

}

.site-footer strong {
  font-size: 16px;
  color: black;
  font-weight: 600;
}

.search-box {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
  color: black;
}

.search-box input {
  width: 100%;
  background: #ececec;
  border: 1px solid #d0d0d0;
  color: black;
  padding: 12px 12px 12px 42px;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.25s;
}

.search-box input::placeholder {
  color: black;
}

.search-box input:focus {
  border-color: black;
}

.search-box .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: black;
}

.sidebar-discord {
  width: 100%;
  background: #ececec;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}

.discord-top-img a {
  display: block;
}

.discord-top-img img {
  width: 100%;
  display: block;
  transition: all 0.35s ease;
}

.discord-top-img:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.discord-content {
  padding: 14px;
  text-align: center;
}

.discord-content h3 {
  margin: 6px 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: black;
  text-align: start;
}

.discord-content p {
  font-size: 13px;
  color: black;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: start;
}

.discord-btn {
  display: block;
  width: 100%;
  background: #5865F2;
  color: #ffffff;
  padding: 9px 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
}

.discord-btn:hover {
  background: #6d7bff;
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.6);
}

.no-matches {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ececec;
  color: black;
  padding: 40px 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  font-weight: 600;

}

.no-matches svg {
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  fill: #000;
}

.no-matches h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.no-matches .query-text {
  color: black;
}

.no-matches p {
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.5;
  color: black;

}

.no-league {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ececec;
  color: black;
  padding: 40px 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
}

.no-league svg {
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  fill: #000;
}

.no-league h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.no-league .query-text {
  color: black;
}

.no-league p {
  font-size: 14px;
  color: black;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .match-card {
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 10px;
  }

  .match-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .league-badge {
    padding: 4px 10px;
    font-size: 10px;
    border-bottom-right-radius: 12px;
  }

  .league-badge img {
    width: 12px;
    height: 12px;
  }

  .match-date {
    top: 6px;
    right: 12px;
    font-size: 10px;
  }

  .match-row {
    grid-template-columns: 1fr 40px 1fr 100px;
    gap: 5px;
  }

  .team {
    font-size: 13px;
  }

  .team img {
    width: 22px;
    height: 22px;
  }

  .vs {
    font-size: 12px;
  }

  .match-info {
    text-align: right;
    font-size: 12px;
  }

  .match-time {
    font-size: 12px;
    margin-top: 4px;
  }

  .countdown {
    font-size: 11px;
    margin-top: 2px;
  }

  .live-badge {
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 12px;
    margin-top: 3px;
  }

  .live-dot {
    width: 6px;
    height: 6px;
  }
}

.ad-container {
  width: 100%;
  overflow: hidden;
  text-align: start;
}

.ad-container iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 90px !important;
  border: 0;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  .ad-container {
    display: flex;
    justify-content: start;
  }

  .ad-container iframe {
    width: 728px !important;
    height: 90px !important;
  }
}

.fixed-ad {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  justify-content: center;
  z-index: 9999;
}

.fixed-ad iframe {
  width: 100% !important;
  height: 90px !important;
  border: 0;
}

@media (min-width: 769px) {
  .fixed-ad iframe {
    width: 728px !important;
    height: 90px !important;
  }
}

.close-ad {
  position: absolute;
  top: -15px;
  right: 10px;
  border-radius: 30%;
  cursor: pointer;
  z-index: 10000;
}

.close-ad img {
  width: 22px;
  height: 22px;
}

.sidebar-ad {
  width: 500px;
  max-width: 100%;
  margin-bottom: 20px;

  background-color: #000;
  padding: 15px;
  border-radius: 8px;
  box-sizing: border-box;
}

.ad-160x300 {
  height: 300px;
  display: flex;
  justify-content: start;
}

.ad-160x300 iframe {
  width: 300px !important;
  height: 250px !important;
  border: 0;
}

@media (max-width: 768px) {
  .sidebar-ad {
    margin: 0 auto 20px;
  }
}

.related-sites {
  margin-top: 22px;
  font-size: 13px;
  color: black;
}

.related-sites a {
  color: black;
  text-decoration: none;
  margin: 0 3px;
}

.related-sites a:hover {
  text-decoration: underline;
}

.container7 {
  max-width: 900px;
  margin: 20px auto;
}


article {
  background-color: #ececec;
  padding: 25px 20px;
  border-radius: 10px;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

article h1 {
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.8rem;
}


article h2,
h1 {
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.5rem;
}

article p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #444;
}

article a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

article a:hover {
  text-decoration: underline;
  color: black;
}



.side-ad {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  padding: 5px;
}

.left-ad {
  left: 10px;
}

.right-ad {
  right: 10px;
}

.close-ad {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  font-size: 16px;
  line-height: 25px;
}

.stream-banner {
  background: #ececec;
  color: black;
  padding: 12px 15px;
  text-align: start;
  font-size: 14px;
  font-weight: 500;
  border-radius: 14px;
  line-height: 1.5;
}

.stream-banner a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.stream-banner a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.note-text {
  font-size: 13px;
  opacity: 0.95;
}

.bookmark-btn {
  margin-top: 10px;
  background: #ffffff;
  color: black;
  border: none;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
}

.bookmark-btn:hover {
  background: #f2f2f2;
}

.hero-article{
  max-width:1400px;
  margin:10px auto;
  padding:25px;
  text-align:start;
  color: #000;
  margin-bottom: -20px;
}
.hero-article h1{
  font-size:32px;
  font-weight:700;
  color: #000;
  margin-bottom:18px;
    text-align:start;

}
.hero-article p{
  font-size:16px;
  line-height:1.7;
  color: #000;
  margin-bottom:14px;
    text-align:start;

}
