body {
  background-color: #000;
  color: #ffff00;
  font-family: arial, helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #111;
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid #ff00ff;
}

.logo {
  max-width: 350px;
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto 25px auto;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #ffff00;
  text-decoration: none;
  font-size: 1.4em;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff00ff;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
  padding: 30px;
  border: 4px dashed #ff00ff;
  position: relative;
}

section h2 {
  font-size: 2.4em;
  margin-top: 0;
  color: #ff00ff;
}

footer {
  background-color: #111;
  text-align: center;
  padding: 30px;
  font-size: 1em;
  border-top: 4px solid #ff00ff;
}

.neon-animation {
  animation: neonGlow 1.5s infinite alternate;
}

@keyframes neonGlow {
  from { text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
  to   { text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff; }
}

.interactive-ornament {
  padding: 15px;
  border: 4px solid #ff00ff;
  transition: background-color 0.5s ease;
}

.interactive-ornament:hover {
  background-color: #ff00ff;
  color: #000;
}

.secret-message {
  display: none;
  margin-top: 15px;
  font-size: 1.4em;
}

.interactive-ornament:hover .secret-message {
  display: block;
}

.meme-display {
  margin-top: 15px;
  padding: 15px;
  border: 2px solid #ff00ff;
  min-height: 60px;
  color: #ffff00;
}

.interactive-animation { margin-top: 25px; }

#highFiveDisplay { margin-top: 15px; font-size: 1.4em; color: #ff00ff; }

.animated-ornament {
  margin-top: 25px;
  padding: 15px;
  border: 4px solid #ff00ff;
  transition: transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

.animated-ornament:hover {
  transform: rotate(5deg) scale(1.05);
  background-color: #ff00ff;
  color: #000;
}

.brand { color: #39ff14; }

.link-list a {
  color: #ffff00;
  text-decoration: underline;
  text-decoration-color: #ffff00;
  font-style: italic;
  transition: color 0.3s ease;
}

.link-list a:hover {
  color: #ff00ff;
  text-decoration-color: #ffff00;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: #ffff00;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 3px;
  z-index: 1000;
}

.mobile-menu-button:hover {
  color: #ff00ff;
}

@media screen and (max-width: 600px) {

  header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .logo { 
    max-width: 220px; 
    width: 70%; 
    margin: 0 auto 20px auto; 
    position: relative;
    z-index: 999;
  }

  .mobile-menu-button {
    display: block;
  }

  :root {

    --header-height:      60px;  
    --separator-height:    4px;  
  }

  html, body {
    overflow-x: hidden;
  }

  nav {
    position: relative;
    z-index: 3000;  
  }
  .header-separator {
    position: relative;
    z-index: 2500;  
  }

  nav .burger {
    position: fixed;
    top: 1rem;      
    right: 1rem;
    z-index: 3500;
  }

  nav ul {
    box-sizing: border-box;    

    position: fixed;
    top:    calc(var(--header-height) + var(--separator-height));
    left:   0;
    width:  100vw;
    height: calc(100vh - var(--header-height) - var(--separator-height));
    transform: translateX(100%);

    z-index: 2000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;

    background: #111;
    padding: 100px 0 50px;
    border-left: 4px solid #ff00ff;

    visibility: hidden;
    opacity:      0;
    pointer-events: none;

    transition:
      transform    .35s cubic-bezier(.77,0,.175,1),
      opacity      .35s cubic-bezier(.77,0,.175,1),
      visibility   .35s cubic-bezier(.77,0,.175,1),
      border-color .001s .35s;
  }

  .menu-open nav ul {
    transform:      translateX(0);
    visibility:     visible;
    opacity:        1;
    pointer-events: auto;
    border-color:   transparent;  
  }

.menu-open nav ul {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

  nav.mobile-menu-active ul {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  nav.menu-closing ul {
    right: -100%;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transition: right 0.3s cubic-bezier(0.77,0,0.175,1), opacity 0.3s cubic-bezier(0.77,0,0.175,1);
  }

  nav ul li {
    margin: 0;
    width: 100%;
    text-align: center;
    transform: scale(1.2); 
  }

  nav ul li a {
    font-size: 2em; 
    display: block;
    padding: 20px 0;
    text-align: center;
  }

  .cart-button {
    top: 20px;
    left: 20px;
    right: auto;
    font-size: 1.8rem;
  }

  .cart-button .cart-count {
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }

  main { margin: 20px auto; padding: 0 12px; max-width: 100%; }
  section { padding: 15px; margin-bottom: 30px; }

  .music-grid,
  .clothing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 6px 0;
  }

  .product-card {
    margin: 0;
    padding: 6px;
    border-width: 1px;
    min-width: 0; 
  }

  .product-card img {
    margin-bottom: 6px;
    width: 100%;
    height: auto;
  }

  .product-card h4 {
    font-size: 0.6rem;
    margin-bottom: 3px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .product-card p {
    font-size: 0.55rem;
    margin-bottom: 4px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .product-card .product-price {
    font-size: 0.6rem;
    margin-bottom: 3px;
  }

  .view-gallery, .add-to-cart {
    width: 70px;
    flex: 0 0 70px;
    font-size: 0.6rem;
    padding: 1px 2px;
    margin-bottom: 2px;
  }
}

.product-section {
  margin: 40px 0;
  padding: 20px;
  border: 4px dashed #ff00ff;
  background-color: rgba(0, 0, 0, 0.7);
}

.product-section h3 {
  color: #ff00ff;
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.clothing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #000;
  border: 2px solid #ff00ff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.product-card h4 {
  color: #ff00ff;
  margin: 0 0 10px 0;
  font-size: 1.3rem;
}

.product-card p {
  color: #ff00ff;
  margin: 0 0 15px 0;
  font-size: 1.2rem;
}

.product-card .view-gallery {
  margin-bottom: 14px;
}

.view-gallery, .add-to-cart {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  width: 120px;
  flex: 0 0 120px;
}

.view-gallery {
  background: #000;
  color: #ff00ff;
  border: 2px solid #ff00ff;
}

.view-gallery:hover {
  background: rgba(255, 0, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

.add-to-cart {
  background: #ff00ff;
  color: #000;
}

.add-to-cart:hover {
  background: #ff33ff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

.cart-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ff00ff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.cart-button:hover {
  transform: scale(1.1);
}

.cart-button .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #00ff00;
  color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1003;
  transition: opacity 0.3s ease;
}

body.cart-open .cart-button {
  display: none !important;
}

html, body {
  overflow-x: hidden;
}

.cart-sidebar {
  box-sizing: border-box;      

  position: fixed;
  top:    0;
  right:  0;                   
  width:  100%;
  max-width: 400px;
  height: 100vh;

  background: #000;
  border-left: 2px solid #ff00ff;

  transform: translateX(100%);
  visibility: hidden;
  opacity:    0;
  pointer-events: none;

  z-index: 2000;               

  transition:
    transform    .3s ease,
    opacity      .3s ease,
    visibility   .3s ease,
    border-color .001s .3s;    
}

.cart-open .cart-sidebar {
  transform:    translateX(0);
  visibility:   visible;
  opacity:      1;
  pointer-events: auto;
  border-color: #ff00ff;       
}

.cart-sidebar.active {
  right: 0;
  box-shadow: -5px 0 15px rgba(255, 0, 255, 0.2); 
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #ff00ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 0, 255, 0.1);
}

.cart-header h3 {
  color: #ff00ff;
  margin: 0;
  font-size: 1.5rem;
}

.close-cart {
  background: none;
  border: none;
  color: #ff00ff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s ease;
  z-index: 1004;
}

.close-cart:hover {
  transform: scale(1.1);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 0, 255, 0.05);
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.cart-item:hover {
  transform: translateX(-5px);
  background: rgba(255, 0, 255, 0.1);
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 15px;
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  color: #ff00ff;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.cart-item-price {
  color: #00ff00;
  margin: 0;
  font-size: 1rem;
}

.remove-item {
  background: none;
  border: none;
  color: #ff00ff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.3s ease;
}

.remove-item:hover {
  transform: scale(1.1);
  color: #ff0000;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid #ff00ff;
  background: rgba(255, 0, 255, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: #ff00ff;
  font-size: 1.2rem;
}

.checkout-button {
  width: 100%;
  padding: 15px;
  background: #ff00ff;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-button:hover {
  background: #ff33ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.cart-empty {
  color: #ff00ff;
  text-align: center;
  padding: 20px;
  font-size: 1.1rem;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
  animation: neonGlow 1.5s infinite alternate;
}

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow: hidden;
}

.gallery-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
  transform: scale(1.1);
  border-color: #ff00ff;
}

.gallery-thumbnail.active {
  border-color: #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 0, 255, 0.2);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.gallery-nav:hover {
  background: rgba(255, 0, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

#prevImage {
  left: -50px;
}

#nextImage {
  right: -50px;
}

.close-gallery {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ff00ff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.close-gallery:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
    max-width: none;
  }

  .gallery-content {
    width: 95%;
  }

  .gallery-nav {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  #prevImage {
    left: -35px;
  }

  #nextImage {
    right: -35px;
  }

  .gallery-thumbnail {
    width: 60px;
    height: 60px;
  }

  nav ul li {
    margin: 15px 0; 
  }

  nav ul li a {
    font-size: 1.6em; 
    padding: 10px 0; 
  }

  .product-detail-modal.active {
    align-items: flex-start;
  }

  .product-detail-content {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 0;
    background: #000;
    position: relative;
  }

  .product-detail-container {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .product-detail-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
  }

  .product-detail-image-container {
    width: 100%;
    padding-bottom: 100%; 
    position: relative;
    background: #111;
    border: none;
  }

  #productDetailImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-detail-thumbnails {
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #000;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail-thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border: 2px solid #ff00ff;
    background: #111;
  }

  .product-detail-thumbnail.active {
    border: 2px solid #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  }

  .product-detail-info {
    padding: 20px;
    background: #000;
  }

  .product-detail-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ff00ff;
  }

  .product-description {
    color: #ffff00;
    margin-bottom: 15px;
  }

  .product-price {
    color: #ffff00;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .size-selector {
    margin: 15px 0;
  }

  .size-selector label {
    color: #ff00ff;
    display: block;
    margin-bottom: 8px;
  }

  .size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .size-button {
    background: #000;
    color: #ffff00;
    border: 2px solid #ff00ff;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    min-width: 50px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .size-button:hover {
    background: rgba(255, 0, 255, 0.1);
  }

  .size-button.selected {
    background: #ff00ff;
    color: #000 !important; 
  }

  .size-dropdown {
    display: none;
  }

  .add-to-cart-detail {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #ff00ff;
    color: #000;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    text-transform: lowercase;
    z-index: 1001;
  }

  .close-product-detail {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    background: none;
    border: none;
    color: #ff00ff;
    font-size: 24px;
    cursor: pointer;
  }

  .product-detail-container {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .product-detail-thumbnail {
    width: 50px;
    height: 50px;
  }

  .product-detail-info h3 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 900px) {
  .music-grid,
  .clothing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .music-grid,
  .clothing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px 0;
  }

  .product-card {
    margin: 0;
    padding: 10px;
  }

  .product-card h4 {
    font-size: 0.6rem;
    margin-bottom: 3px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .product-card p {
    font-size: 0.55rem;
    margin-bottom: 4px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .product-card .product-price {
    font-size: 0.6rem;
    margin-bottom: 3px;
  }

  .view-gallery, .add-to-cart {
    width: 70px;
    flex: 0 0 70px;
    font-size: 0.6rem;
    padding: 1px 2px;
    margin-bottom: 2px;
  }

  nav ul li {
    margin: 12px 0; 
  }

  nav ul li a {
    font-size: 1.4em; 
    padding: 8px 0; 
  }
}

.song-progress-container {
  margin: 40px 0;
  padding: 20px;
  border: 4px dashed #ff00ff;
  background-color: rgba(0, 0, 0, 0.7);
}

.song-progress-container h3 {
  color: #ff00ff;
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.song-progress-bar {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #333;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  margin-top: 24px;    
  margin-bottom: 24px; 
}

.progress-fill {
  width: 0%;
  height: 100%;
  background-color: #39ff14;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.section-marker {
  position: absolute;
  width: 0;
  height: 0;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.3s ease;
  z-index: 2;
  transform: translateX(-50%);
  filter: none;
}

.section-marker.position-top {
  top: -12px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #ff00ff; 
}

.section-marker.position-bottom {
  bottom: -12px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #ff00ff; 
}

.section-marker:hover,
.section-marker.active {
  z-index: 3;
  filter: drop-shadow(0 0 6px #ff00ff); 
}

.section-marker.position-top:hover,
.section-marker.position-top.active {
  transform: translateX(-50%) scale(1.2);
  border-top-color: #39ff14; 
}

.section-marker.position-bottom:hover,
.section-marker.position-bottom.active {
  transform: translateX(-50%) scale(1.2);
  border-bottom-color: #39ff14; 
}

.section-marker-label {
  display: none;
}

.progress-fill.active {
  box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
}

.section-marker::after {
  content: attr(data-time) " - " attr(data-section);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 0.85em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #39ff14;
  border: 1px solid #39ff14;
  pointer-events: none;
  z-index: 5;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
  left: 50%;
}

.section-marker.position-top::after {
  bottom: 16px;
  transform: translateX(-50%);
}

.section-marker.position-bottom::after {
  top: 16px;
  transform: translateX(-50%);
}

.section-marker:hover::after,
.section-marker.active::after {
  opacity: 1;
}

.section-marker.position-top:hover::after,
.section-marker.position-top.active::after {
  transform: translateX(-50%) translateY(-3px);
}

.section-marker.position-bottom:hover::after,
.section-marker.position-bottom.active::after {
  transform: translateX(-50%) translateY(3px);
}

@media screen and (max-width: 600px) {
  .progress-bar {
    height: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .section-marker.position-top {
    top: -10px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #ff00ff;
  }

  .section-marker.position-bottom {
    bottom: -10px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #ff00ff;
  }

  .section-marker-label {
    font-size: 0.7em;
    padding: 1px 3px;
  }

  .section-marker.position-top .section-marker-label {
    bottom: 12px;
  }

  .section-marker.position-bottom .section-marker-label {
    top: 12px;
  }

  .section-marker::after {
    font-size: 0.75em;
    padding: 4px 6px;
  }

  .section-dropdown {
    max-width: 100%;
  }
}

.merch-button {
  margin-bottom: 10px;
}

.merch-button:last-child {
  margin-bottom: 0;
}

#success {
  text-align: center;
}

#success h2 {
  color: #ff00ff;
  font-size: 2.6em;
  margin-bottom: 30px;
}

.return-link {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background: #ff00ff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.return-link:hover {
  background: #ff33ff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

.section-dropdown {
  margin: 20px auto;
  max-width: 300px;
  position: relative;
}

.section-dropdown select {
  width: 100%;
  padding: 10px;
  background-color: #111;
  color: #ffff00;
  border: 2px solid #ff00ff;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
  transition: all 0.3s ease;
}

.section-dropdown select:hover,
.section-dropdown select:focus {
  border-color: #39ff14;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.section-dropdown::after {
  content: "▼";
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ff00ff;
  pointer-events: none;
  font-size: 0.8em;
}

.section-dropdown select option {
  background-color: #000;
  color: #ffff00;
  padding: 10px;
}

.sections-list {
  display: none;
}

.time-display {
  display: flex;
  justify-content: space-between;
  color: #39ff14;
  font-size: 1.1em;
  margin-top: 5px;
}

.section-info {
  text-align: center;
  margin-top: 20px;
  min-height: 40px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.current-section {
  color: #39ff14;
  font-size: 1.2em;
  margin: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.music-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.spotify-embed {
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.platform-links {
  text-align: center;
  margin: 2rem 0;
}

.platform-links h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #333;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.platform-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: bold;
}

.platform-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.platform-button i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.platform-button.spotify {
  background-color: #1DB954;
}

.platform-button.apple {
  background-color: #FC3C44;
}

.platform-button.youtube {
  background-color: #FF0000;
}

.platform-button.soundcloud {
  background-color: #FF3300;
}

.subtitle {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #39ff14;
  text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14;
  animation: greenGlow 1.5s infinite alternate;
}

@keyframes greenGlow {
  from { text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14, 0 0 30px #39ff14; }
  to { text-shadow: 0 0 20px #39ff14, 0 0 30px #39ff14, 0 0 40px #39ff14; }
}

@media (max-width: 600px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-button {
    padding: 0.8rem;
  }
}

.platform-section {
  margin: 2rem 0;
}

.platform-section h4 {
  color: #ff00ff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.platform-button.spotify { background-color: #1DB954; }
.platform-button.apple { background-color: #FC3C44; }
.platform-button.itunes { background-color: #FC3C44; }
.platform-button.youtube { background-color: #FF0000; }
.platform-button.amazon { background-color: #FF9900; }
.platform-button.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.platform-button.facebook { background-color: #1877F2; }
.platform-button.tiktok { background-color: #000000; }
.platform-button.snapchat { background-color: #FFFC00; color: #000; }
.platform-button.roblox { background-color: #00A2FF; }
.platform-button.deezer { background-color: #00C7F2; }
.platform-button.tidal { background-color: #000000; }
.platform-button.iheart { background-color: #C6002B; }
.platform-button.pandora { background-color: #224099; }
.platform-button.claro { background-color: #E60000; }
.platform-button.saavn { background-color: #3B82F6; }
.platform-button.boomplay { background-color: #000000; }
.platform-button.anghami { background-color: #FF0000; }
.platform-button.netease { background-color: #C20C0C; }
.platform-button.tencent { background-color: #31C27C; }
.platform-button.qobuz { background-color: #000000; }
.platform-button.joox { background-color: #000000; }
.platform-button.kuack { background-color: #1DB954; }
.platform-button.adaptr { background-color: #1DB954; }
.platform-button.flo { background-color: #000000; }
.platform-button.medianet { background-color: #1DB954; }

.platform-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .platform-section {
    margin: 1.5rem 0;
  }

  .platform-section h4 {
    font-size: 1.2rem;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-button {
    padding: 0.8rem;
  }
}

.platform-icon {
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  object-fit: contain;
}

.roblox-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  background: #00A2FF;
  border-radius: 4px;
  position: relative;
  transform: rotate(-5deg);
}

.roblox-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%);
  border-radius: 4px;
}

.roblox-css-logo {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  position: relative;
  margin-right: 0.5rem;
  border-radius: 2px;
  transform: rotate(45deg);
}

.roblox-css-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #00A2FF;
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(0deg);
  box-shadow: none;
}

.payment-status {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.status-message {
    margin: 2rem 0;
    line-height: 1.6;
}

.status-message ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.status-message li {
    margin: 0.5rem 0;
    color: #ff6b6b;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.action-buttons .button {
    padding: 0.8rem 1.5rem;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.action-buttons .button:hover {
    background: #357abd;
}

@media screen and (max-width: 600px) {
  .cart-button {
    top: 20px;
    left: 20px;
    right: auto;
    font-size: 1.8rem;
  }

  .cart-button .cart-count {
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }

  .cart-sidebar {
    width: 100%;
    max-width: none;
  }

  .gallery-content {
    width: 95%;
  }

  .gallery-nav {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  #prevImage {
    left: -35px;
  }

  #nextImage {
    right: -35px;
  }

  .gallery-thumbnail {
    width: 60px;
    height: 60px;
  }
}

body.menu-open {
  overflow: hidden;
}

.product-detail-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow: auto;
}

.product-detail-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-detail-content {
  position: relative;
  width: 800px;
  height: auto;
  max-height: 85vh;
  background-color: #000;
  border: 4px dashed #ff00ff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  overflow: auto;
}

.product-detail-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-detail-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #000;
}

.product-detail-image-container {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
  position: relative;
  background: #111;
  border: 2px solid #ff00ff;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .product-detail-image-container {
    width: 100%;
    padding-bottom: 100%;
    height: auto;
    max-width: none;
  }
}

#productDetailImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-thumbnails {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  padding: 5px;
  background: #000;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-detail-info {
  padding: 5px 0;
  background: #000;
}

.product-detail-info h3 {
  margin-bottom: 10px;
}

.close-product-detail {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #ff00ff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease;
}

.close-product-detail:hover {
  transform: scale(1.1);
  text-shadow: 0 0 10px #ff00ff;
}

.product-detail-info .product-description {
  margin-bottom: 20px;
  color: #ffff00;
  font-size: 16px;
}

.product-detail-info .product-price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffff00;
}

.add-to-cart-detail {
  display: inline-block;
  background-color: #ff00ff;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.add-to-cart-detail:hover {
  background-color: #ff33ff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 0, 255, 0.2);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 5;
}

.gallery-nav:hover {
  background: rgba(255, 0, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

#prevDetailImage {
  left: 10px;
}

#nextDetailImage {
  right: 10px;
}

@media (max-width: 768px) {
  .product-detail-modal.active {
    align-items: flex-start;
  }

  .product-detail-content {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 0;
    background: #000;
    position: relative;
  }

  .product-detail-container {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .product-detail-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
  }

  .product-detail-image-container {
    width: 100%;
    padding-bottom: 100%; 
    position: relative;
    background: #111;
    border: none;
  }

  #productDetailImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-detail-thumbnails {
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #000;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-detail-thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border: 2px solid #ff00ff;
    background: #111;
  }

  .product-detail-thumbnail.active {
    border: 2px solid #ff00ff;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
  }

  .product-detail-info {
    padding: 20px;
    background: #000;
  }

  .product-detail-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ff00ff;
  }

  .product-description {
    color: #ffff00;
    margin-bottom: 15px;
  }

  .product-price {
    color: #ffff00;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .size-selector {
    margin: 15px 0;
  }

  .size-selector label {
    color: #ff00ff;
    display: block;
    margin-bottom: 8px;
  }

  .size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .size-button {
    background: #000;
    color: #ffff00;
    border: 2px solid #ff00ff;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    min-width: 50px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .size-button:hover {
    background: rgba(255, 0, 255, 0.1);
  }

  .size-button.selected {
    background: #ff00ff;
    color: #000 !important; 
  }

  .size-dropdown {
    display: none;
  }

  .add-to-cart-detail {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #ff00ff;
    color: #000;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    text-transform: lowercase;
    z-index: 1001;
  }

  .close-product-detail {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    background: none;
    border: none;
    color: #ff00ff;
    font-size: 24px;
    cursor: pointer;
  }

  .product-detail-container {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .product-detail-thumbnail {
    width: 50px;
    height: 50px;
  }

  .product-detail-info h3 {
    font-size: 1.2rem;
  }
}

.product-card {
  cursor: pointer;
}

.cart-open {
  overflow: hidden;
}

.modal-open {
  overflow: hidden;
}

.size-selector {
  margin: 15px 0;
}

.size-selector label {
  color: #ff00ff;
  display: block;
  margin-bottom: 8px;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-button {
  background: #000;
  color: #ffff00;
  border: 2px solid #ff00ff;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 16px;
  min-width: 50px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 25px; 
}

.size-button[data-size="2XL"],
.size-button[data-size="3XL"],
.size-button[data-size="4XL"],
.size-button[data-size="5XL"] {
  color: #39ff14;
}

.size-button:hover {
  background: rgba(255, 0, 255, 0.1);
}

.size-button.selected {
  background: #ff00ff;
  color: #000 !important; 
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff; 
}

.size-dropdown {
  display: none;
}

@media (max-width: 768px) {
  .size-options {
    gap: 8px;
  }

  .size-button {
    padding: 6px 12px;
    font-size: 14px;
    min-width: 40px;
  }
}

.product-detail-content {
  background-color: #000;
  border: 4px dashed #ff00ff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.product-detail-image-container {
  background-color: #111; 
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff00ff;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .product-detail-content {
    width: 90vw;
    height: auto;
    min-height: 75vh;
    max-height: 80vh;
    margin-top: 80px;
    padding: 20px;
    overflow-y: auto;
  }

  .size-selector {
    margin: 15px 0;
  }

  .size-dropdown {
    padding: 8px;
    font-size: 14px;
  }

  select.size-dropdown {
    max-height: none; 
    overflow: visible; 
  }

  .size-dropdown option {
    padding: 12px 8px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .product-detail-content {
    width: 95vw;
    margin-top: 70px;
    padding: 15px;
  }
}

.cart-item-size {
  color: #ff00ff;
  margin: 5px 0;
  font-size: 0.9em;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}