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

body {
  background: #f5f3ef;
  font-family: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  color: #111111;
  line-height: 1.3;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0 1rem 0;
  border-bottom: 2px solid #111;
  margin-bottom: 2rem;
  gap: 1rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: -0.3px;
  color: #444;
  border-left: 1px solid #aaa;
  padding-left: 1rem;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lang-btn {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  border: 1.5px solid #111;
  padding: 0.3rem 0.6rem;
  background: transparent;
  cursor: pointer;
  transition: 0.1s;
}

.lang-btn.active {
  background: #111;
  color: #f5f3ef;
}

.lang-btn:hover:not(.active) {
  background: #e2dfd7;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 2px solid #111;
  background: #f5f3ef;
}

.nav-item {
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  border-right: 1px solid #111;
  transition: 0.1s linear;
  background: #f5f3ef;
  letter-spacing: 0.5px;
}

.nav-item:last-child {
  border-right: none;
}

.nav-item.active {
  background: #111;
  color: #f5f3ef;
}

.nav-item:hover:not(.active) {
  background: #e2dfd7;
}

.brutal-panel {
  border: 2px solid #111;
  background: transparent;
  margin-bottom: 2rem;
}

.panel-header {
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.8rem 1.2rem;
  border-bottom: 2px solid #111;
  background: #ece8e0;
  text-transform: uppercase;
}

.panel-body {
  padding: 1.8rem;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #111;
}

.music-card {
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 1.8rem 1rem;
  text-align: center;
  transition: 0.05s linear;
  background: #fefcf8;
}

.music-card:nth-child(4n) {
  border-right: none;
}

.music-card:hover {
  background: #e9e5dc;
}

.platform-name {
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.music-link {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid #111;
  padding: 0.5rem 1rem;
  color: #111;
  background: transparent;
  transition: 0.1s;
  cursor: pointer;
}

.music-link:hover {
  background: #111;
  color: #f5f3ef;
}

.artist-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border: 2px solid #111;
  width: fit-content;
  flex-wrap: wrap;
}

.toggle-btn {
  font-family: 'DM Mono', monospace;
  padding: 0.7rem 1.5rem;
  background: #f5f3ef;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.75rem;
  border-right: 1px solid #111;
  transition: none;
  text-align: left;
}

.toggle-btn:last-child {
  border-right: none;
}

.toggle-btn.active-toggle {
  background: #111;
  color: #f5f3ef;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.gallery-card {
  border: 2px solid #111;
  background: #fefcf8;
  cursor: pointer;
  transition: 0.08s linear;
}

.gallery-card:hover {
  transform: translate(-2px, -2px);
  background: #fffdf9;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #111;
}

.card-title {
  font-weight: 600;
  padding: 0.8rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: 0.1s;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  width: 85%;
  max-width: 1100px;
  background: #f5f3ef;
  border: 4px solid #111;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 1rem;
  border-bottom: 2px solid #111;
  font-family: monospace;
  display: flex;
  justify-content: space-between;
  background: #e2dfd7;
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.modal-artwork {
  flex: 1.2;
}

.modal-artwork img {
  width: 100%;
  border: 2px solid #111;
}

.modal-info {
  flex: 0.9;
  font-family: 'Space Grotesk', sans-serif;
}

.vertical-physical-list {
  width: 100%;
}

.physical-entry {
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid #aaa;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.physical-img {
  width: 180px;
  flex-shrink: 0;
}

.physical-img img {
  width: 100%;
  border: 2px solid #111;
}

.search-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.category-badge {
  border: 1px solid #111;
  padding: 0.1rem 0.5rem;
  font-size: 0.7rem;
  font-family: monospace;
}

footer {
  margin-top: 3rem;
  padding: 1.5rem;
  border-top: 2px solid #111;
  text-align: center;
  font-size: 0.7rem;
  font-family: monospace;
}

/* Mobile responsive */
@media (max-width: 700px) {
  .container {
    padding: 0 1rem;
  }
  
  .modal-body {
    flex-direction: column;
  }
  
  .toggle-btn {
    font-size: 0.6rem;
    padding: 0.5rem 0.8rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .music-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .music-card:nth-child(4n) {
    border-right: 1px solid #111;
  }
  
  .music-card:nth-child(2n) {
    border-right: none;
  }
}