/* Home page specific styles */
.anime-detail {
  display: flex;
  flex-direction: column;
  position: relative;
}

.anime-detail-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.anime-detail-info {
  padding: 1.5rem;
}

.anime-detail-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.anime-detail-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.anime-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.anime-detail-meta-item {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

.anime-detail-meta-item i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.anime-detail-section {
  margin-bottom: 1.5rem;
}

.anime-detail-section-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.anime-detail-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.anime-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .anime-detail {
    flex-direction: row;
    gap: 2rem;
  }
  
  .anime-detail-image {
    width: 220px;
    height: auto;
    max-height: 330px;
    border-radius: var(--radius-lg);
  }
  
  .anime-detail-info {
    flex: 1;
    padding: 0;
  }
}
