* {
  margin: 0;
  padding: 0;
  box-sizing: boder-box;
}
html {
  font-size: 16px;

}
body {
  background-color: #121212;
  color: #E0E0E0;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1F1F1F;
  padding: 10px 20px;
}
.logo {
  font-family: Times New Roman;
  font-size: 30px;
  color: #EC4186;
}
.searchbtn {
  background: #EC4186;
  padding: 6px 8px;
  font-size: 20px;
  border-radius: 4px;
  transition: all .2s ease-in;
}
.searchbtn:hover {
  background: transparent;
  border: 1px solid #EC4186;
}
.searchbox {
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: #1f1f1f;

}
.searchbox form {
  min-width: 80%;

}
.searchbox form input {
  display: block;
  width: 100%;
}
.searchbox form input[type="text"] {
  height: 36px;
  background-color: #2F2F2F;
  border: none;
  color: #E0E0E0;
  font-size: 16px;
  border-radius: 4px;
  outline: none;

  font-weight: bold;

}
.searchbox form input[type="text"]::Placeholder {
  font-weight: bold;
  margin-left: 4px;
}

.searchbox form input[type="submit"] {
  height: 36px;
  background: #EC4186;
  border: none;
  outline: none;
  margin-top: 2px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 4px;
  transition: all .1s ease-in-out;
}
.searchbox form input[type="submit"]:hover {
  background: transparent;
  border: 1px solid #EC4186;
}
.topsection {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1f1f1f;
  margin-top: 4px;

}
.topsection div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px;
  padding: 4px;
}
.topsection div a {
  text-decoration: none;
  padding: 6px;
  color: rgba(255,255,255,0.781);
  transition: all .1s ease-in-out;
  cursor: none;
}
.topsection div a:hover {
  background: #EC4186;
}
.title {
  display: block;
  margin: 14px 0;
  border-left: 8px solid #EC4186;
}
.title span,.title h1 {
  display: block;
  margin-left: 4px;
  padding: 4px;
  font-size: 18px;


}







.list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 2fr));
  gap: 20px;
}

.update {
  background-color: #1f1f1f;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;

}
.link {
  text-decoration: none;
}

.thumb {
  position: relative;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

.hd, .duration {
  position: absolute;
  top: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.hd {
  right: 10px;
}

.duration {
  left: 10px;
}

.details {
  padding: 10px;
  flex-grow: 1;
}

.details span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: white;
  margin-bottom: 10px;
}

.icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.view, .likes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  color: rgba(255,255,255,0.7 );

}

.view i, .likes i {
  margin-right: 5px;
  color: #EC4186;

}

.view span, .likes span {
  font-weight: bold;
  position: relative;
  top: 6px;
  color: rgba(255,255,255,0.7 );
  font-size: 12px;
}

.seotext {
  margin-top: 30px;
  padding: 10px;
  text-align: center;
  font-family: Segoe UI;
}
.seotext h1 {
  font-size: 24px;
  opacity: .9;
}
.seotext span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  opacity: .8;
}
.player {
  display: block;
  max-width: 100%;
  height: 240px;

}
.player video {
  width: 100%;
  height: 240px;
}
.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 20px;
  background: #1f1f1f;
  border-radius: 2px;
}
.info .likesection {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  padding: 12px 4px;
}
.info .likesection .linesection {
  text-align: center;
  display: block;
  border-bottom: 2px solid #b6b4b4;
  width: 80px;
  margin: 0 4px;
}

.info .likesection .like, .info .likesection .dislike {
  background: #EC4186;
  font-size: 22px;
  padding: 4px;
  margin: 0 2px;
  border-radius: 2px;
  cursor: pointer;
}
.info .sharesection {
  background: #EC4186;
  padding: 8px 8px;
  margin-right: 8px;
  border-radius: 2px;
  cursor: pointer;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.tag {
  background: #1f1f1f;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

.tag:hover {
  background: #553D67;
}

.tag a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.tag i {
  margin-right: 5px;
  color: #EC4186;
}

.description {

  padding: 12px;
  text-align: left;
  font-family: Times New Roman;
  opacity: .8;
}
.description span {
  font-size: .9rem;
}
.sharebox {
  display: none;
  margin-top: 4px;
  text-align: center;
}
.sharebox input {
  padding: 8px 10px;
  outline: none;
  font-weight: bold;
  background: #2F2F2F;
  border: none;
  width: 80%;
  color: white;
  border-radius: 4px;
}
.videoinfo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4px;
  font-family: Times New Roman;
}
.videoinfo div {
  margin: 2px;
}

.videoinfo div span,.videoinfo div i {
  font-size: 12px;
}
.videoinfo div i {
  color: #EC4186;
}