* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: sans-serif;
}

header .container {
  max-width: 1500px;
  padding: 25px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
header .container.sear {
  padding-top: 0;
}
header .container .logo {
  padding-inline: 50px;
}
header .container .header-menu {
  display: flex;
}
header .container .header-menu#hamburger-menu {
  display: none;
}
header .container .header-menu .menu-link {
  font-size: 24px;
  color: #8c8c8c;
  padding: 10px 15px;
  display: inline-flex;
  gap: 5px;
}
header .container .header-menu .menu-link img {
  object-fit: contain;
}
header .container .header-menu .close {
  background: transparent;
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  font-size: 30px;
  color: #fff;
  display: none;
}
header .container .search-wrap {
  width: 100%;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}
header .container .search-wrap #search-input {
  background: #fff;
  height: 65px;
  font-size: 22px;
  padding: 0 20px;
  flex-grow: 1;
}
header .container .search-wrap .search-button {
  background: #6d757d;
  width: 84px;
  height: 65px;
  font-size: 32px;
  color: #fff;
}

#video-player .most-head {
  font-size: 36px;
  color: #fff;
  padding: 20px;
  border-bottom: 1px solid #FFC009;
  display: flex;
  align-items: center;
  gap: 15px;
}
#video-player .most-head img {
  object-fit: contain;
}
#video-player .player {
  width: 100%;
  height: auto;
}
#video-player .player video {
  width: 100%;
}
#video-player .player .controls {
  background: #1F323C;
  width: calc(100% - 40px);
  height: 120px;
  display: flex;
  margin: 20px;
}
#video-player .player .controls button {
  background: transparent;
  width: auto;
  height: 100%;
  color: #fff;
  font-size: 20px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#video-player .player .controls button:not(:last-child) {
  border-right: 1px solid #ddd;
}
#video-player .player .controls button i {
  font-size: 40px;
  margin-bottom: 10px;
}
#video-player .player .controls button img {
  width: 40px;
  margin-bottom: 10px;
}
#video-player .player .controls .info-wrap {
  margin-left: auto;
  padding: 30px;
  display: flex;
  gap: 30px;
}
#video-player .player .controls .info-wrap .info {
  background: rgba(0, 0, 0, 0.25);
  font-size: 25px;
  padding: 10px;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

#video-exp {
  background: rgba(255, 255, 255, 0.2);
  width: calc(100% - 40px);
  padding: 15px;
  font-size: 28px;
  color: #fff;
  border-radius: 12px;
  margin: 20px;
}
#video-exp .yellow {
  color: rgb(255, 192, 9);
}

#most-watch .most-head {
  font-size: 36px;
  color: #fff;
  padding: 20px;
  border-bottom: 1px solid #FFC009;
  display: flex;
  align-items: center;
  gap: 15px;
}
#most-watch .most-head img {
  object-fit: contain;
}
#most-watch .videos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
}
#most-watch .videos .video-item {
  max-width: 450px;
  min-width: 250px;
  height: auto;
  flex: calc(25% - 25px) 1 1;
}
#most-watch .videos .video-item .video-poster {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: center/cover;
}
#most-watch .videos .video-item .video-poster .poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#most-watch .videos .video-item .video-poster .info {
  position: absolute;
  bottom: 0;
  background: rgba(217, 217, 217, 0.2);
  padding: 10px;
  color: #fff;
}
#most-watch .videos .video-item .video-poster .info:first-child {
  left: 0;
}
#most-watch .videos .video-item .video-poster .info:last-child {
  right: 0;
}
#most-watch .videos .video-item .video-name {
  font-size: 21px;
  color: #fff;
  padding: 10px 0;
}
#most-watch .breadcrumb-wrap {
  display: flex;
  justify-content: center;
}
#most-watch .videos-breadcrumb {
  overflow: hidden;
  border-radius: 8px;
  margin: 50px auto;
  display: inline-flex;
}
#most-watch .videos-breadcrumb .breadcrumb-link {
  background: #1F323C;
  color: #fff;
  font-size: 14px;
  padding: 15px;
  display: inline-block;
}
#most-watch .videos-breadcrumb .breadcrumb-link:hover {
  background: #FFC009;
}

#most-search .most-head {
  font-size: 36px;
  color: #fff;
  padding: 20px;
  border-bottom: 1px solid #FFC009;
  display: flex;
  align-items: center;
  gap: 15px;
}
#most-search .most-head img {
  object-fit: contain;
}
#most-search .hashtags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px;
}
#most-search .hashtags .hashtag {
  background: #1F323C;
  color: #fff;
  padding: 15px;
  font-size: 13px;
  border-radius: 5px;
  flex: 80px 1 1;
}
#most-search .hashtags .hashtag:hover {
  background: #FFC009;
}
#most-search .hashtags .hashtag.big {
  flex: 160px 1 2;
}

footer {
  background: #1c1c1c;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footer-text {
  color: #fff;
  margin-top: 10px;
  font-size: 19px;
  text-align: center;
}

@media (max-width: 992px) {
  header .container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  header .container .logo {
    padding: 0;
  }
  header .container .hamburger {
    display: block;
  }
  header .container .header-menu {
    padding-top: 20px;
  }
  header .container .header-menu .menu-link {
    font-size: 12px;
    color: #fff;
    text-align: center;
  }
  header .container .header-menu .menu-link img {
    display: none;
  }
  header .container .search-wrap #search-input {
    height: 45px;
    font-size: 14px;
    padding: 0 20px;
    flex-grow: 1;
  }
  header .container .search-wrap .search-button {
    background: #6d757d;
    width: 54px;
    height: 45px;
    font-size: 20px;
    color: #fff;
  }
  header .container .search-wrap .search-button img {
    width: 20px;
  }

  #most-watch .most-head, #most-search .most-head, #video-player .most-head {
    font-size: 20px;
  }
  #most-watch .most-head img, #most-search .most-head img, #video-player .most-head img {
    width: 20px;
  }
  #most-watch .container, #most-search .container, #video-player .container {
    padding: 10px;
  }

  #most-watch .videos {
    padding: 10px;
    gap: 10px 0;
  }
  #most-watch .videos .video-item .video-name {
    font-size: 16px;
  }

  #video-player .player .controls {
    background: #1F323C;
    width: calc(100% - 20px);
    height: 120px;
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
  }
  #video-player .player .controls button {
    width: 25%;
    height: 60px;
    font-size: 12px;
    aspect-ratio: none;
  }
  #video-player .player .controls button:not(:last-child) {
    border-right: 0;
  }
  #video-player .player .controls button i {
    font-size: 18px;
    margin-bottom: 6px;
  }
  #video-player .player .controls button img {
    width: 18px;
    margin-bottom: 6px;
  }
  #video-player .player .controls .info-wrap {
    width: 100%;
    height: 60px;
    padding: 10px;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  #video-player .player .controls .info-wrap .info {
    flex-grow: 1;
    justify-content: center;
    font-size: 12px;
    text-align: center;
  }

  #video-exp {
    width: calc(100% - 20px);
    font-size: 14px;
    line-height: 20px;
    margin: 10px;
  }

  footer .footer-text {
    font-size: 12px;
    line-height: 20px;
  }
}

/*# sourceMappingURL=main.css.map */
