* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

.remixes-section {
  margin-top: 2rem;
  padding: 4rem 2rem 4rem;
  background: #000000;
}

.remixes-section h2 {
  text-align: center;
  font-family: Arial, sans-serif;
  color: #ffffff;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
  animation: fadeIn 1s ease-out;
}

.remixes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.remix-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: #111111;
  border: 2px solid rgba(155, 135, 245, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.remix-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}




.remix-card:hover .remix-info {
  transform: translateY(0);
}

.remix-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}



.remix-card::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 4rem;
  color: #ffffff;
  opacity: 0;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}

.remix-card:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .remixes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .remixes-section {
    padding: 6rem 1rem 2rem;
  }

  .remix-info {
    transform: translateY(0);
    padding: 1.5rem;
  }

  .remix-info h3 {
    font-size: 1.3rem;
  }

  .remix-info p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .remixes-grid {
    grid-template-columns: 1fr;
  }



  .remixes-section h2 {
    font-size: 2rem;
  }
}