* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

header {
  padding: 20px 40px;
  position: sticky;
  top: 0;
  background-color: #f8f8f8;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 200px;
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  opacity: 0.7;
}

.cart i {
  font-size: 18px;
}

main {
  padding: 20px 40px;
  position: relative;
}

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

.release-item {
  position: relative;
  margin-bottom: 20px;
}

.release-item img {
  width: 100%;
  height: auto;
  display: block;
}

.release-info {
  margin-top: 10px;
}

.release-info p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.release-item.empty {
  height: 0;
  margin: 0;
  padding: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 40px;
  gap: 10px;
}

.pagination a {
  padding: 5px 10px;
  font-size: 12px;
  transition: opacity 0.3s;
}

.pagination a:hover {
  opacity: 0.7;
}

.pagination .next {
  margin-left: 10px;
}

footer {
  background-color: #f0f0f0;
  padding: 60px 40px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
}

.footer-column h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  background-color: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

.newsletter-form button {
  background-color: #333;
  color: white;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #555;
}

.vertical-text-right {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .releases-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .vertical-text-right {
    display: none;
  }
}