:root {
  --text-color: #0f0f0f;
}
#player-svg{
  position: absolute;
  width: 18px !important;
  height: 22px !important;
  filter: none !important;
}
.mw-home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.mw-header-content {
  min-width: none !important;
}
.mw-area {
  display: grid;
  grid-auto-rows: minmax(180px, auto);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.textDark {
  color: #0f0f0f !important;
}
.bodyDark {
  background-color: #0f0f0f !important;
}
.headerDark,
.footerDark {
  background-color: #1a1818 !important;
}
.divider-top {
  display: flex;
  flex-direction: row;
}
.atrplay-header {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin: 40px 0;
}
.atrplay-title-live {
  font-family: "Ubuntu-ExtraBold", sans-serif;
  font-size: 38px;
  color: var(--text-color);
  line-height: 42px;
  text-align: center;
  max-width: 740px;
}
.atrplay-nextvideo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  padding: 10px;
  background-color: #9a272b;
  max-width: 900px;
  width: 100%;
  height: 100%;
  max-height: 120px;
}
.atrplay-nextvideo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.atrplay-nextvideo h3 {
  font-family: "Ubuntu-Bold", sans-serif;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.24px;
  color: #ffffff;
}
.atrplay-nextvideo h2 {
  font-family: "Ubuntu-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #ffffff;
}
.atrplay-nextvideo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(74, 74, 74);
  border-radius: 5px;
  width: 180px;
  height: 100px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.atrplay-nextvideo-placeholder > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.atrplay-allvideos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.atrplay-allvideos h2 {
  font-family: "Ubuntu-Bold", sans-serif;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.28px;
  color: var(--text-color);
  margin-top: 50px;
}
.atrplay-allvideos-divider {
  width: 50px;
  height: 6px;
  background-color: #9a272b;
}
.atrplay-allvideos-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}
.atrplay-allvideos-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.atrplay-allvideos-item figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 162px;
  border-radius: 10px;
  background-color: gray;
  overflow: hidden;
  cursor: pointer;
}
.atrplay-allvideos-item figure img{
  width: 100%;
  height: 100%;
  filter: brightness(0.7);
}
.atrplay-allvideos-item figcaption {
  font-family: "Ubuntu-Medium", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}
.atrplay-allvideos-loadmore {
  border-radius: 10px;
  text-decoration: none;
  background-color: #9a272b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  font-family: "Ubuntu-Bold";
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 20px;
}
#atrplay-logo {
  margin: 0 auto;
}
.atrplay-video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 (9 dividido por 16 = 0.5625) */
  height: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin: 25px 0;
}

.atrplay-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#next-video-img{
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  max-width: 20px;
  max-height: 18px;
  filter: none !important;
}
@media (max-width: 768px) {
  .mw-home-container {
    max-width: unset;
    margin: 0 auto;
    min-width: unset;
    padding: 0 20px;
  }
  .mw-area {
    display: grid;
    grid-auto-rows: minmax(180px, auto);
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 20px;
  }
  #atrplay-logo {
    margin: unset;
    width: 125px;
    height: 68px;
  }
  .atrplay-header {
    max-width: 100%;
    justify-content: space-between;
  }
  .atrplay-allvideos-wrapper {
    display: flex;
    flex-direction: column;
  }
  .atrplay-title-live {
    font-family: "Ubuntu-Bold", sans-serif;
    font-size: 18px;
    color: var(--text-color);
    line-height: 24px;
    text-align: left;
    max-width: 100%;
  }
  .atrplay-nextvideo-content {
    gap: 9px;
    max-width: 180px;
  }
  .atrplay-nextvideo {
    margin-top: 25px;
  }
  .atrplay-nextvideo h3 {
    font-family: "Ubuntu-Bold", sans-serif;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.2px;
  }
  .atrplay-nextvideo h2 {
    font-family: "Ubuntu-Bold", sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.12px;
  }
  .atrplay-nextvideo-placeholder {
    width: 120px;
    height: 72px;
  }
  .atrplay-nextvideo-placeholder img {
    width: 100%;
    height: 100%;
    filter: brightness(0.7);
  }
  .atrplay-allvideos {
    align-items: flex-start;
    gap: 5px;
  }
  .atrplay-allvideos h2 {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.22px;
  }
  .atrplay-allvideos-wrapper {
    margin-top: 15px;
  }
  .atrplay-allvideos-item {
    flex-direction: row;
    align-items: center;
  }
  .atrplay-allvideos-item figure {
    width: 160px;
    height: 90px;
  }
  .atrplay-allvideos-item figcaption {
    font-family: "Ubuntu-SemiBold", sans-serif;
    font-size: 12px;
    letter-spacing: -0.12px;
    line-height: 16px;
    max-width: 160px;
  }
  .atrplay-allvideos-loadmore {
    width: 100%;
  }
}
