@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  background: #121212;
  color: #fff;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
}

.releases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.release-card {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  text-align: center;
  padding-bottom: 10px;
}

.release-card:hover {
  transform: scale(1.03);
}

.release-card img {
  width: 200px;  
  height: 200px;   
  object-fit: cover;  
  border-radius: 8px;
  margin-top: 15px;
}

.info {
  padding: 15px;
}

.info h2 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.info a {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background: #1db954;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.info a:hover {
  background: #1ed760;
}

.new {
  color: #ff4d6d;
  font-size: 0.9rem;
  font-weight: bold;
  margin-left: 8px;
}

footer {
    text-align: center;
    margin-top: 300px;
}