/* Index page specific styles */

.container {
  max-width: 600px;
}

h1 {
  margin: 0;
}

.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #0D170A;
  background-color: #FFE51F;
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 4px 15px 0 rgba(255, 229, 31, 0.4);
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: #7DCFB6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(125, 207, 182, 0.5);
}

.random-items {
  margin-top: 50px;
  text-align: left;
}

.random-items h2 {
  color: #ffe51f;
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}

.entry-list {
  list-style: none;
  padding: 0;
}

.entry-item {
  background: rgba(3, 76, 60, 0.3);
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.entry-item-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  width: 100%;
}

.entry-item-link:hover .entry-item {
  background: rgba(15, 49, 21, 0.5);
}

.entry-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}

.entry-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.entry-cover {
  width: 60px;
  height: 60px;
  border-radius: 0;
  object-fit: cover;
}

.entry-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.entry-name {
  font-weight: 500;
  color: #7dcfb6;
  font-size: 1rem;
}

.entry-artist {
  font-size: 0.9rem;
  color: #ffe51f;
}

.entry-type {
  font-size: 0.8rem;
  color: #7dcfb6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.tag {
  font-size: 0.7rem;
  color: #0d170a;
  background-color: #ffe51f;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: lowercase;
  font-weight: 500;
}
