* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
}

/* HOME */
.home {
  height: calc(100vh - 60px);
  display: flex;
  padding-bottom: 150px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-center {
  margin-bottom: 0%; /* 🔥 MUDE ESSE VALOR */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home img {
  width: 300px;
}

.home h1 {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 14px;
}

.home h2 {
  background: linear-gradient(to bottom left, rgb(0, 102, 255), rgb(0, 255, 98));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-search {
  display: flex;
  align-items: center;
  position: relative
}

.search-icon {
  position: absolute;
  right: 20px;
  align-items: center;
  background: #1e1e1e;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.home-search input {
  padding: 15px 20px 15px 20px;
  width: 350px;
  border-radius: 50px;
  border: none;
  outline: none;
  background: #1e1e1e;
  font-size: 15px;
  color: white;
}

/* TOP NAV */
.top-nav {
  position: sticky;
  height: 70px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 15px;

  z-index: 10;
}

.logo {

  display: flex;
  align-items: center;
  /* vertical */
  justify-content: center;
}

.logo img {
  width: 40px;
  height: auto;
}

/* PLAYER CONTENT */
.player-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 16px;
  height: calc(100vh - 70px - 60px);
  padding: 20px;
}

/* RESULTS */
.results {
  overflow-y: auto;
}

.result-item {
  display: flex;
  gap: 10px;
  padding: 20px;
  border-bottom: 1px solid #222222;
  cursor: pointer;
}

.result-item:hover {
  background-color: #222222;
  border-radius: 15px;
}

.result-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}

.result-channel {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}


/* PLAYER */
#player-wrapper {
  position: fixed;
  right: 0;
  top: 70px;
  /* abaixo da top-nav */
  width: 40%;
  height: calc(100vh - 70px - 60px);
  background: #121212;
  padding: 16px;
  z-index: 5;
} 

.video-container {
  width: 100%;

  height: 100%;
  /* altura fixa para o YouTube player */
  background: linear-gradient(to bottom left, rgb(0, 102, 255), rgb(0, 255, 98));
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .6);
}

.video-container iframe {
  width: 100%;
  height: 60%;
  border-radius: 14px;
  border: none;
}

/* HIDDEN PLAYER */
#player-wrapper.hidden {
  display: none;
}

/* BOTTOM NAV */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: black;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav button {
  background: none;
  border: none;
  color: white;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* ícone padrão */
.bottom-nav button i {
  font-size: 25px;
  color: #aaa;
  transition: color 0.2s ease;
}

/* hover */
.bottom-nav button:hover i {
  color: white;
}

/* 🔥 ATIVO */
.bottom-nav button.active i {
  background: linear-gradient( 90deg, rgb(0, 102, 255), rgb(0, 255, 98));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bottom-nav button.active span {
  background: linear-gradient( 90deg, rgb(0, 102, 255), rgb(0, 255, 98));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 480px) {
  .home {
  height: calc(100vh - 60px);
  display: flex;
  padding-bottom: 150px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-center {
  margin-bottom: 0%; /* 🔥 MUDE ESSE VALOR */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home img {
  width: 200px;
}

.home h1 {
  color: red;
  margin-bottom: 20px;
  font-size: 9px;
}

.home h2 {
  font-size: 19px;
  background: linear-gradient(to bottom left, rgb(0, 102, 255), rgb(0, 255, 98));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-search {
  display: flex;
  align-items: center;
  position: relative
}

.search-icon {
  position: absolute;
  right: 20px;
  align-items: center;
  background: #1e1e1e;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.home-search input {
  padding: 15px 20px 15px 15px;
  width: 280px;
  border-radius: 50px;
  border: none;
  outline: none;
  background: #1e1e1e;
  font-size: 13px;
  color: white;
}
}



