body {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  color: white;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.navbar {
  background-color: rgba(26, 10, 10, 0.95);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.navbar a.active {
  background-color: rgba(227, 11, 93, 0.2);
  box-shadow: 0 0 10px rgba(227, 11, 93, 0.3);
}

.navbar a:hover {
  background-color: rgba(227, 11, 93, 0.1);
}

.search-container {
  width: 100%;
  max-width: 100%;
  margin: 30px auto;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
}

.search-container input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  background-color: #222;
  color: white;
  border: 1px solid #444;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 16px;
}

.search-icon {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  pointer-events: none;
  z-index: 1;
}

.discover-container {
  margin-top: 20px;
  padding: 20px;
}

.discover-section {
  margin-bottom: 40px;
  position: relative;
}

.discover-section h2 {
  color: #E30B5D;
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-shadow: 0 0 10px rgba(227, 11, 93, 0.3);
}

.content-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scroll-behavior: smooth;
  position: relative;
}

.content-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.scroll-progress {
  position: relative;
  height: 6px;
  background-color: rgba(68, 68, 68, 0.5);
  width: 100%;
  border-radius: 3px;
  margin-top: 10px;
}

.scroll-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #E30B5D;
  border-radius: 3px;
  transition: width 0.1s ease;
  box-shadow: 0 0 5px rgba(227, 11, 93, 0.5);
}

.content-card {
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  flex: 0 0 auto;
  width: 200px;
}

.content-card:hover {
  transform: scale(1.05);
}

.content-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.content-card .info {
  padding: 10px;
}

.content-card h5 {
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-card .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0;
  color: #ffd700;
}

.content-card .rating i {
  font-size: 0.9rem;
}

.content-card .rating span {
  font-size: 0.8rem;
  color: #aaa;
}

.content-card p {
  margin: 5px 0 0;
  font-size: 0.8rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .content-card img {
    height: 225px;
  }
}

@media (max-width: 480px) {
  .content-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .content-card img {
    height: 180px;
  }
} 