@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  margin: 15px;
  padding: 12px 20px;
  border-radius: 15px;
  background: linear-gradient(90deg, rgb(0, 255, 170) 25%, rgb(0, 129, 180) 100%);
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  color: black;
  font-family: "Pacifico", cursive;
}

.navbar-search {
  color: white;
  background-color: black;
  border: none;
  border-radius: 25px;
  margin-right: auto;
}

.navbar-button-icon {
  color: white;
  background: black;
  margin-right: 10px;
  margin-left: -45px;
  font-size: 15px;
  padding: 5px;
  border: none;
}

/* SEARCH CENTRAL */
.home .search-box {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 10px;
}

.search-box input {
  width: 300px;
  padding: 12px 0 12px 20px;
}

/* ESCONDE LAYOUT */
.home {
  display: none;
}

.layout {
  display: grid;
  grid-template-columns: 50% 50%;
  height: 100vh;
  gap: 10px;
}

.results {
  height: 100%;
  overflow-y: auto;
  background: black;
  padding: 10px;
}

#results {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.result-item {
   background: linear-gradient(90deg, rgb(0, 0, 0) 25%, rgb(39, 39, 39) 100%);
  padding: 30px 20px;
  margin: 20px;
  border-radius: 15px;
  border-bottom: 2px solid #222;
  cursor: pointer;
}

.result-item:hover {
  background: #222222;
}

.active {
  border-radius: 15px;
  border: 1.5px solid rgb(0, 255, 170);
}

/* Título */
.result-item .title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 6px;
}

/* Autor */
.result-item .author {
  font-size: 12px;
  color: #aaa;
}


.video {
  flex: 1;
  position: relative;
  display: flex;
  border-radius: 15px;
  margin-right: 30px;

  background: linear-gradient(to bottom left, rgb(22, 22, 22) 25%, rgb(255, 255, 255) 100%);
  justify-content: center;
  overflow-y: hidden;
}

#player {
  width: 80%;
  height: auto;
  margin: 40px 0px 300px 0px;
  border-radius: 20px;
}

.next-ui {
  position: absolute;
  color: #aaa;
}

