* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Quantico', sans-serif;
  background: #000;
  color: #fff;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body.releases-page {
  position: relative;
  z-index: 0;
}


h2.albums {
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  margin: 80px 0 30px;
  font-weight: 700;
}

.relise-title {
  color: #fff;
}


.rl-list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.rl-list-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.rl-list-li {
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.4;
}



.b-list-a {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.b-list-a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.b-list-a:hover img {
  transform: scale(1.08);
}



.rl-list.albums .rl-list-ul {
  grid-template-columns: repeat(3, 1fr);
}


.rl-list.ep-block .rl-list-ul {
  grid-template-columns: repeat(3, 1fr);
}

.rl-list.singles .rl-list-ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 60px;
  justify-items: center;
  padding: 0;
  margin: 0 auto;
}

.rl-list.singles .rl-list-li {
  width: 100%;
  max-width: 220px; 
  text-align: center;
  float: none !important;
}





.rl-list-li {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}



.b-albums-more {
  text-align: center;
  margin: 40px 0 60px;
}

.b-albums-more a {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.b-albums-more a:hover {
  background: #fff;
  color: #000;
}



.hashtag {
  text-align: center;
  margin: 60px 0 10px;
  font-size: 18px;
  opacity: 0.8;
}

.copyright {
  text-align: center;
  margin-bottom: 40px;
  font-size: 12px;
  opacity: 0.6;
}



.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  font-size: 48px;
  background: transparent;
  border: none;
  color: #fffb00;
  cursor: pointer;
  display: none;
  z-index: 1000;
  text-shadow: 0 0 10px #fffb00;
  transition: transform 0.2s ease;
}

.scroll-top-btn:hover {
  transform: scale(1.2);
}

.scroll-top-btn.show {
  display: block;
}



.scroll-code {
    position: fixed;
    top: 0;
    right: 0;
    width: 42px;
    height: 100dvh;
    background: rgba(0, 0, 0, 0);
    color: #eaff00; 
    font-family: monospace;
    font-size: 18px;
    line-height: 20px;
    white-space: pre;
    padding: 10px 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
    z-index: -1;
}


.scroll-code.show {
  opacity: 1;
}

.rl-list.ep-block .rl-list-ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 60px;
}

.rl-list-li .year {
  font-size: 0.7em;   
  opacity: 0.7;       
  display: inline-block;
  margin-top: 2px;
}


.rl-list.compilations .rl-list-ul {
  display: grid;
  grid-template-columns: 300px; 
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.rl-list.compilations .rl-list-li {
  text-align: center;
}

.rl-list.compilations .b-list-a {
  width: 300px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.rl-list.compilations .rl-list-li {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rl-list {
  max-width: 1800px; 
   margin: 0 auto;
  padding: 0 40px;
}

.rl-list-ul {
  gap: 60px; 
}

.hashtag {
  margin-top: 120px;
}

.site-header {
  padding-top: 0px;
}

.site-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo img {
  width: 220px;
  height: auto;
  display: block;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-logo {
  position: relative;
  margin-top: -40px;
}

.top-nav {
  position: static;
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
}

.top-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .rl-list-ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rl-list-ul {
    grid-template-columns: 1fr;
  }

  h2.albums {
    font-size: 28px;
  }

  .scroll-top-btn {
    font-size: 36px;
    left: 15px;
    bottom: 20px;
  }
}




html, body {
  overflow-x: hidden;
}



body.releases-page {
  padding-top: 0px;
}



.back-home {
  text-align: center;
  margin: 80px 0 40px;
}

.back-home a {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.back-home a:hover {
  background: #fff;
  color: #000;
}


.listen-on {
  text-align: center;
  margin: 80px 0 40px;
}

.listen-title {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.listen-links {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.listen-links img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.listen-links img:hover {
  transform: scale(1.15);
}

.listen-buttons {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}


.hidden {
  display: none !important;
}


.more-platforms {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #fff;
  border-radius: 8px;

  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;

  transition: all 0.3s ease;
}

.more-platforms:hover {
  background: #fff;
  color: #000;
}

.bandcamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;

  border: none;
  padding: 0;
}

.bandcamp:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
  cursor: pointer;
}






.merch-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
  align-items: stretch;
}


.merch-grid .b-list-li,
.merch-grid .shopify-buy__product,
.merch-grid .shopify-buy__collection-product {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
}


.merch-grid .b-list-a,
.merch-grid .shopify-buy__product-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
}


.merch-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}


.merch-grid .b-list-a:hover img,
.merch-grid .shopify-buy__product-img-wrapper:hover img {
  transform: scale(1.08);
}


.merch-grid .title,
.merch-grid .shopify-buy__product-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}


.merch-grid button,
.merch-grid .shopify-buy__btn {
  margin-top: 10px;
  padding: 12px 20px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.merch-grid button:hover,
.merch-grid .shopify-buy__btn:hover {
  background: #fff;
  color: #000;
}


@media (max-width: 600px) {
  .merch-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .merch-grid .b-list-li,
  .merch-grid .shopify-buy__product {
    max-width: 100%;
  }
}


.merch-footer {
  margin: 100px auto 40px;
  text-align: center;
  padding: 0 20px;
}

.merch-footer-title {
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.merch-footer-text {
  max-width: 700px;
  margin: 0 auto 15px;
  opacity: 0.8;
  line-height: 1.6;
}

.merch-footer-link a {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  letter-spacing: 1px;
}


.back-home {
  text-align: center;
  margin: 80px 0 40px;
}

.back-home a {
  display: inline-block;
  padding: 16px 44px;
  border: 2px solid #fff;
  border-radius: 10px;

  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;

  transition: all 0.25s ease;
}

.back-home a:hover {
  background: #fff;
  color: #000;
}


.merch-more {
  text-align: center;
  margin-top: 80px; 
}

.merch-more a {
  display: inline-block;

  padding: 16px 44px;
  font-size: 18px;

  font-family: 'Quantico', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;

  color: #eaff00;
  background: transparent;

  border: 2px solid #eaff00;
  border-radius: 10px;

  text-decoration: none;

  transition: all 0.25s ease;
}

.merch-more a:hover {
  background: #eaff00;
  color: #000;
}

.shopify-buy__btn {
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.about-block {
  max-width: 700px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about-text:last-child {
  margin-bottom: 0;
}


.about-btn-container {
  text-align: center;
  margin: 80px 0 0px;
}

.about-btn-container a {
  display: inline-block;
  width: 295px;
  padding: 16px 0;
  border: 2px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  transition: all 0.25s ease;
}

.about-btn-container a:hover {
  background: #fff;
  color: #000;
}

.back-home {
  text-align: center;
  margin: 20px 0 40px;
}

.back-home a {
  display: inline-block;
  width: 295px;
  padding: 16px 0;
  border: 2px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  transition: all 0.25s ease;
}

.back-home a:hover {
  background: #fff;
  color: #000;
}


.releases-btn-container {
  text-align: center;
  margin: 80px 0 0px;
}

.releases-btn-container a {
  display: inline-block;
  width: 295px;
  padding: 16px 0;
  border: 2px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  transition: all 0.25s ease;
}

.releases-btn-container a:hover {
  background: #fff;
  color: #000;
}

.top-nav a:hover {
    color: #eaff00 !important;
}
