body {
  background: #000;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
}

/* Main Content */
.main-content {
  width: 100%;
  min-height: 100vh;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeIn 0.6s ease-out;
}

/* Brand Section */
.brand-header {
  padding: 24px 0;
}

.brand-header .container-logo {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Robot Image */
.robot-image {
  width: 128px;
  height: 128px; */
  object-fit: cover;
  box-shadow: 0 0 40px hsla(348, 83%, 47%, 0.4);
  animation: float 3s ease-in-out infinite;
}

/* Brand Title & Subtitle */
.brand-title {
  margin-bottom: 16px;
  color: #f20612;
  font-size: 48px;
  font-weight: 700;
}

.brand-subtitle {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
}

/* Search Card */
.search-card {
  width: 100%;
  max-width: 600px;
  padding: 32px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.search-content {
  gap: 24px;
  display: flex;
  flex-direction: column;
}

/* Input Container */
.input-container {
  position: relative;
}

.mood-input {
  width: 100%;
  padding: 16px 64px 16px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mood-input:focus {
  border-color: #e50914;
  outline: none;
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.mood-input::placeholder {
  color: #ebebeb;
}

/* Examples */
.examples {
  color: #d0d0d0;
  font-size: 14px;
  text-align: left;
}

.examples-title {
  margin-bottom: 8px;
  font-weight: 500;
}

.examples-list {
  gap: 4px;
  font-size: 12px;
  list-style: none;
  display: flex;
  flex-direction: column;
  opacity: 0.8;
}

/* Search Button */
.search-button {
  width: 100%;
  padding: 16px 32px;
  background-color: #e50914;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.search-button:hover:not(:disabled) {
  background-color: #f40612;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.3);
}

.search-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.play-icon {
  transition: transform 0.2s ease;
}

.search-button:hover:not(:disabled) .play-icon {
  transform: scale(1.1);
}

/* Estilos para grid de filmes responsivo */
#results {
  width: 100%;
  margin-top: 32px;
  display: none;
}

#results h2 {
  padding: 50px 0;
}

.movies-grid {
  gap: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.movie-card {
  width: 320px;
  background: rgba(30, 30, 40, 0.95);
  border: 1.5px solid #222;
  border-radius: 19px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.movie-card:hover {
  border-color: #e50914;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.28);
}

.movie-poster {
  width: 100%;
}

.movie-poster img {
  width: 100%;
  /* height: 420px; */
  object-fit: cover;
}

.no-poster {
  width: 100%;
  height: 420px;
  background: #222;
  color: #888;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-info {
  padding: 24px;
}

.movie-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

.movie-overview {
  height: 150px;
  padding: 10px;
  margin-bottom: 16px;
  min-height: 60px;
  color: #ccc;
  font-size: 16px;
  overflow: auto;
}

.movie-rating {
  color: #e50914;
  font-size: 18px;
  font-weight: 600;
}