* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0f0f0f;
  color: white;
  overflow: hidden;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8em 1em;
  background-color: #202020;
  border-bottom: 1px solid #333;
}

.logo {
  font-size: 1.5em;
  color: #ff0000;
  font-weight: bold;
}

.buscar {
  flex: 1;
  margin: 0 1em;
  padding: 0.4em;
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: #121212;
  color: white;
}

.iconos span {
  margin-left: 1em;
  font-size: 1.2em;
  cursor: pointer;
}

.shorts-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: calc(100vh - 60px);
  padding: 1em;
  gap: 1em;
}

.short-card {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  scroll-snap-align: start;
  background-color: black;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px #000;
}

.short-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.short-info {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1em;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  width: 100%;
}

.short-title {
  font-weight: bold;
  font-size: 1rem;
}

.short-buttons {
  position: absolute;
  right: 1em;
  top: 30%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.short-buttons button {
  background-color: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 1.2em;
  color: white;
  cursor: pointer;
}
