body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  background-image: url('https://www.transparenttextures.com/patterns/black-linen.png');
}
header {
  background: #000;
  padding: 60px 20px 40px;
  text-align: center;
}
header img {
  width: 360px;
  margin: 0 auto 20px;
  display: block;
}
header p {
  font-size: 1.2em;
  color: #fff;
  margin: 0 auto;
  /*white-space: nowrap;*/
  position: relative;
  overflow: hidden;
  display: inline-block;
}
header p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  animation: shimmer 6s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.releases-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 160px;
  margin: 40px auto;
  max-width: 1000px;
}
.release-section {
  text-align: center;
  width: 212px;
}
.release-section img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.release-section .timer {
  font-size: 0.9em;
  color: #FF7043;
  margin: 5px auto 10px;
  white-space: nowrap;
}
.release-section .btn {
  margin: 10px auto 0;
  display: block;
  padding: 10px 20px;
  font-size: 0.85em;
  background-color: #E4572E;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 180px;
  text-align: center;
}
.release-section .btn:hover {
  background-color: #ff7043;
  transform: scale(1.05);
}
.platform-links {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
}
.platform-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.platform-links li {
  margin: 4px 0;
}
.platform-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95em;
  transition: color 0.3s;
}
.platform-links a:hover {
  color: #FF7043;
}
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95em;
}
footer a {
  color: #E4572E;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 768px) {
  .releases-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .release-section {
    width: auto;
  }
  .release-section img {
    width: 80vw;
    height: auto;
  }
  .release-section .btn {
    width: auto;
    max-width: 80vw;
  }
}