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

body {
    background: #0b0c10;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #f5f5f5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #f1c40f;
    color: #000;
    padding: 8px;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Universal Link Style */
a {
    color: #f1c40f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #d4ac0d;
    outline: none;
}

/* Navigation */
header {
    background: linear-gradient(120deg, #181820 85%, #ffe17c 100%);
    box-shadow: 0 2px 16px 0 rgba(241,196,15,0.10), 0 1.5px 4px 0 rgba(11,12,16,0.25);
    padding: 10px 15px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid rgba(241,196,15,0.12);
}


/* Mobile Menu Toggle Button */
#mobile-menu-toggle {
    display: none;
    background: transparent;
    border-radius: 35px;
    font-size: 1rem;
    color: #f1c40f;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease, transform 0.3s ease;
}

#mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.menu-icon {
    font-size: 1.3rem;
    margin-right: 6px;
}

.menu-label {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

header nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

header nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
    font-size: 0.9rem;
    color: #f1c40f;
    text-shadow:
        0 0 4px rgba(255,255,255,0.15),
        0 0 8px rgba(241,196,15,0.35),
        0 0 14px rgba(241,196,15,0.30);
}

header nav ul li a:hover,
header nav ul li a:focus {
    background: #333;
    color: #d4ac0d;
    text-decoration: none;
}

/* HERO SECTION - Sticky Scrolling Background Video */
.hero-banner {
    position: relative;
    min-height: 60vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.picture {	
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;	
}

.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner::after {
    content: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0;
    max-width: 90%;
    background: none;
    box-shadow: none;

}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #f1c40f;
    text-shadow:
        0 0 5px rgba(241, 196, 15, 0.4),
        0 0 15px rgba(241, 196, 15, 0.6),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(14, 176, 255, 0.1); /* soft cosmic aura */
    margin: 0;
}

h1, h2, h3 {
    text-shadow:
        0 0 4px rgba(255, 255, 255, 0.1),
        0 0 8px rgba(241, 196, 15, 0.3),
        0 0 12px rgba(241, 196, 15, 0.6);
}



.hero-content p {
    font-size: 1.5rem;
    color: #f5f5f5;
    margin: 10px 0;
    text-shadow:
        0 0 5px rgba(241, 196, 15, 0.4),
        0 0 15px rgba(241, 196, 15, 0.6),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 0 60px rgba(14, 176, 255, 0.1); /* soft cosmic aura */
    font-weight: 700; 		
}

.hero-content a {
    background: #f1c40f;
    color: #0b0c10;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-content a:hover {
    background: #ffeb3b;
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #000;
    background-color: #f1c40f;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
    background: #d4ac0d;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    text-decoration: none;
    outline: none;
}

/* Featured Section - Optimized for Performance */
.featured {
    padding: 60px 20px;
    text-align: center;
    background: rgba(11, 12, 16, 0.9);
}

/* About Preview Section - Optimized for Performance */
.about-preview {
    background: rgba(26, 26, 26, 0.9);
    padding: 60px 20px;
    text-align: center;
}

/* Quick Links Grid - Optimized for Performance */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 40px 20px;
    background: rgba(17, 17, 17, 0.9);
    text-align: center;
}

/* Quick Link individual block */
.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border-radius: 8px;
    font-weight: bold;
    color: #f5f5f5;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.quick-link:hover,
.quick-link:focus {
    transform: translateY(-5px);
    background: #333;
    color: #f1c40f;
    text-decoration: none;
    outline: none;
}

/* Footer */
footer {
    background: linear-gradient(120deg, #181820 80%, #15c9fa 100%);
    box-shadow: 0 -2px 16px 0 rgba(21,201,250,0.08), 0 -2px 10px 0 rgba(241,196,15,0.08);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: #f5f5f5;
    border-top: 2px solid rgba(21,201,250,0.13);
}

footer p {
    margin: 8px 0;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

footer a {
    margin: 0 5px;
    display: inline-block;
    transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
    color: #f1c40f;
    text-decoration: none;
    outline: none;
}

footer nav ul li {
    display: inline;
}

footer nav ul li a {
    color: #f1c40f;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

footer nav ul li a:hover {
    color: #ffeb3b;
    transform: scale(1.05);
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f1c40f;
    text-shadow:
        0 0 4px rgba(255,255,255,0.13),
        0 0 8px rgba(241,196,15,0.30),
        0 0 14px rgba(241,196,15,0.18);
    transition: color 0.3s, text-shadow 0.3s;
    text-decoration: none;
    font-size: 0.9em;
}

footer .social-links a:hover {
    color: #ffeb3b;
    transform: scale(1.05);
}

footer .social-links img {
    width: 24px;
    height: 24px;
}

.divider {
    width: 60%;
    margin: 20px auto;
    border-top: 1px solid #555;
}

.divider2 {
    width: 100%;
    margin: 20px auto;
    border-top: 5px solid #555;
}

/* Inner Page Sections */
body.index-page section:not(.hero-banner),
body.visual-page section:not(.hero-banner),
body.music-page section:not(.hero-banner),
body.about-page section:not(.hero-banner),
body.games-page section:not(.hero-banner),
body.apps-page section:not(.hero-banner),
body.merch-page section:not(.hero-banner),
body.publishing-page section:not(.hero-banner),
body.contact-page section:not(.hero-banner),
body.visual-page section:not(.hero-banner),
body.privacy-page section:not(.hero-banner),
body.terms-page section:not(.hero-banner),
body.digital-store-page section:not(.hero-banner) {
    background: rgba(15, 15, 15, 0.6);
    padding: 50px;
    border-radius: 35px;
    margin: 20px auto;
    max-width: 1200px;
	border: 0 0 10px rgba(30, 144, 255, 0.5);
    box-shadow: 0 0 80px rgba(241, 196, 15, 0.1), inset 0 0 25px rgba(241, 196, 15, 0.05);
}

body.index-page section h1,
body.index-page section h2,
body.index-page section p,
body.visual-page section h1,
body.visual-page section h2,
body.visual-page section p,
body.music-page section h1,
body.music-page section h2,
body.music-page section p,
body.about-page section h1,
body.about-page section h2,
body.about-page section p,
body.games-page section h1,
body.games-page section h2,
body.games-page section p,
body.apps-page section h1,
body.apps-page section h2,
body.apps-page section p,
body.merch-page section h1,
body.merch-page section h2,
body.merch-page section p,
body.publishing-page section h1,
body.publishing-page section h2,
body.publishing-page section p,
body.contact-page section h1,
body.contact-page section h2,
body.contact-page section p,
body.visual-page section h1,
body.visual-page section h2,
body.visual-page section p,
body.privacy-page section h1,
body.privacy-page section h2,
body.privacy-page section p,
body.terms-page section h1,
body.terms-page section h2,
body.terms-page section p,
body.digital-store-page section h1,
body.digital-store-page section h2,
body.digital-store-page section p,
body.track-page section h1,
body.track-page section h2,
body.track-page section p,
body.album-page section h1,
body.album-page section h2,
body.album-page section p {
    color: #FFFFFF;
}

/* Ensure consistent styling for h1 elements in sections */
section h1 {
    font-size: 2rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
    color: #f5f5f5;
}

/* Performance: Remove outlines from videos/images when clicked */
img,
video {
    outline: none;
}

/* Video Carousel Styles */
.video-grid {


  padding: 40px 20px;
  overflow-x: hidden;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.video-carousel-container {
  position: relative;
  width: 100%;
}

.video-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.video-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #f1c40f, #ffeb3b);
  color: #0a0a0a;
  border: 1px solid rgba(241, 196, 15, 0.4);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(241, 196, 15, 0.2);
  touch-action: manipulation;
}

.video-nav-button:hover,
.video-nav-button:focus {
  background: linear-gradient(45deg, #ffeb3b, #f1c40f);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
  outline: none;
}

.video-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #f1c40f #111;
  width: 100%;
}

.video-carousel::-webkit-scrollbar {
  height: 6px;
}

.video-carousel::-webkit-scrollbar-track {
  background: #111;
}

.video-carousel::-webkit-scrollbar-thumb {
  background-color: #f1c40f;
  border-radius: 6px;
}

.video-item {
  flex: 0 0 calc(100% - 40px);
  scroll-snap-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.video-item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
}

.video-item iframe:focus-visible {
  outline: 3px solid #f1c40f;
  outline-offset: 2px;
}

.scroll-hint {
  display: none;
  animation: pulse 1.8s infinite ease-in-out;
  text-align: center;
  color: #f1c40f;
  font-size: 0.9rem;
  margin-top: 5px;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* MOBILE HEADER "WELCOME" ONLY FOR MOBILE */
.mobile-welcome {
  display: none; /* hidden by default */
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    padding: 10px 15px;
  }
  header nav {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  #mobile-menu-toggle {
    display: flex;
    align-items: center;
    position: static;
    margin-left: 5px;
    z-index: 1100;
  }

  .mobile-welcome {
    display: inline-block;
    font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    color: #f1c40f;
    text-shadow:
      0 0 4px rgba(255,255,255,0.12),
      0 0 9px rgba(241,196,15,0.26),
      0 0 22px rgba(14,176,255,0.14);
    font-weight: 700;
    padding: 0 8px;
    background: none;
    letter-spacing: 1px;
    pointer-events: none;
    user-select: none;
    animation: fadeInWelcome 0.9s ease;
  }

  /* --- AAA MOBILE NAV PANEL --- */
  header nav ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding: 32px 22px 24px 22px;
    background: linear-gradient(112deg, #181820 90%, #ffe17c 100%);
    box-shadow: 0 12px 32px rgba(0,0,0,0.32), 0 2px 0px #f1c40f inset;
    border-radius: 16px;
    position: absolute;
    top: 54px; /* below header */
    left: 25%;
    transform: translateX(-50%);
    width: 40vw;
    max-width: 340px;
    min-width: 180px;
    z-index: 1050;
    border: 1.5px solid rgba(241,196,15,0.18);
    transition: opacity 0.38s cubic-bezier(.4,2,.6,1), box-shadow 0.2s cubic-bezier(.4,2,.6,1);
    opacity: 0;
    pointer-events: none;
  }
  header nav ul.show {
    display: flex;
    opacity: 0.95;
    pointer-events: auto;
    animation: dropdownIn 0.45s cubic-bezier(.45,1.3,.6,1.02);
  }
  @keyframes dropdownIn {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(-24px) scale(0.98);
      box-shadow: 0 2px 16px rgba(0,0,0,0.13);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
      box-shadow: 0 12px 32px rgba(0,0,0,0.32), 0 2px 0px #f1c40f inset;
    }
  }
  header nav ul li {
    width: 100%;
    text-align: left;
    margin: 0;
  }
  header nav ul li a {
    display: block;
    width: 100%;
    font-size: 0.7rem;
    padding: 10px 8px;
    border-radius: 5px;
    background: none;
    color: #f1c40f;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: background 0.21s, color 0.18s, padding-left 0.25s cubic-bezier(.7,1.3,.6,1);
    position: relative;
    text-shadow:
      0 0 4px rgba(255,255,255,0.10),
      0 0 8px rgba(241,196,15,0.19),
      0 0 14px rgba(241,196,15,0.18);
  }
  header nav ul li a:hover,
  header nav ul li a:focus {
    background: rgba(255,255,255,0.07);
    color: #ffeb3b;
    padding-left: 18px;
  }

    .hero-banner {	
        position: relative;
        min-height: 60vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .featured,
    .about-preview,
    .quick-links {
        padding: 40px 15px;
    }

    .quick-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-link {
        min-height: 80px;
        font-size: 0.9rem;
    }

    footer {
        padding: 20px 15px;
        font-size: 0.6rem;
    }

    footer div[aria-label="Social media links"] {
        gap: 8px;
    }

    footer div[aria-label="Social media links"] a img {
        width: 20px;
        height: 20px;
    }

    /* Inner Page Sections */
    body.index-page section:not(.hero-banner),
    body.music-page section:not(.hero-banner),
    body.about-page section:not(.hero-banner),
    body.games-page section:not(.hero-banner),
    body.apps-page section:not(.hero-banner),
    body.merch-page section:not(.hero-banner),
    body.publishing-page section:not(.hero-banner),
    body.contact-page section:not(.hero-banner),
    body.privacy-page section:not(.hero-banner),
    body.terms-page section:not(.hero-banner),
    body.digital-store-page section:not(.hero-banner) {
        padding: 30px 15px;
        margin: 15px auto;
        max-width: 100%;
    }

    .video-grid {
      padding: 20px 10px;
    }

    .video-carousel {
      gap: 8px;
      padding: 3px 0;
    }

    .video-item {
      flex: 0 0 calc(90vw - 20px);
      scroll-snap-align: center;
      padding: 5px;
    }

    .video-item iframe {
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .scroll-hint {
      display: block;
    }

    .video-nav-button {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }

    .video-nav-buttons {
      gap: 15px;
      margin-top: 8px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 10px; /* Slightly smaller padding */
    }

    #mobile-menu-toggle {
        font-size: 0.9rem;
        padding: 6px 10px;
        margin-left: 3px;
    }

    header nav ul {
        top: 50px; /* Adjust for smaller header */
        gap: 10px;
    }

    header nav ul li a {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .hero-banner {
        position: relative;
        min-height: 60vh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .featured,
    .about-preview,
    .quick-links {
        padding: 30px 10px;
    }

    .quick-link {
        min-height: 70px;
        font-size: 0.8rem;
    }

    footer {
        padding: 15px 10px;
        font-size: 0.7rem;
    }

    footer div[aria-label="Social media links"] {
        gap: 8px;
    }

    footer div[aria-label="Social media links"] a img {
        width: 18px;
        height: 18px;
    }

    /* Inner Page Sections */
    body.index-page section:not(.hero-banner),
    body.music-page section:not(.hero-banner),
    body.about-page section:not(.hero-banner),
    body.games-page section:not(.hero-banner),
    body.apps-page section:not(.hero-banner),
    body.merch-page section:not(.hero-banner),
    body.publishing-page section:not(.hero-banner),
    body.contact-page section:not(.hero-banner),
    body.privacy-page section:not(.hero-banner),
    body.terms-page section:not(.hero-banner),
    body.digital-store-page section:not(.hero-banner) {
        padding: 20px 10px;
        margin: 10px auto;
    }

    /* Smaller Mobile Devices for Video Carousel */
    .video-grid {
      padding: 15px 5px;
    }

    .video-carousel {
      gap: 8px;
      padding: 3px 0;
    }

    .video-item {
      flex: 0 0 calc(85vw - 10px);
      padding: 3px;
    }

    .video-item iframe {
      border-radius: 6px;
    }

    .scroll-hint {
      font-size: 0.8rem;
      margin-top: 3px;
    }

    .video-nav-button {
      width: 30px;
      height: 30px;
      font-size: 0.9rem;
    }

    .video-nav-buttons {
      gap: 15px;
      margin-top: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quick-link,
    .cta-button,

    .quick-link:hover,
    .cta-button:hover,

    .hero-content a,
    footer nav ul li a,
    footer .social-links a,
    #mobile-menu-toggle {
        transition: none;
    }

    .hero-content a:hover,
    footer nav ul li a:hover,
    footer .social-links a:hover,
    #mobile-menu-toggle:hover {
        transform: none;
    }

    /* Accessibility: Reduced Motion for Video Carousel */
    .video-nav-button:hover,
    .video-nav-button:focus {
      transform: none;
    }
    .scroll-hint {
      animation: none;
    }
    .video-carousel {
      scroll-behavior: auto;
    }
}

@media (forced-colors: active) {
    .hero-content a,
    footer nav ul li a,
    footer .social-links a,
}

    /* Default styles (e.g., desktop styles) */
    #desktop-banner {
        display: block; /* Or whatever the default display is */
    }
    #mobile-banner {
        display: none; /* Initially hide the mobile banner */
    }

    /* Media query for mobile devices */
    @media (max-width: 768px) {
        #desktop-banner {
            display: none; /* Hide the desktop banner on smaller screens */
        }
        #mobile-banner {
            display: block; /* Show the mobile banner on smaller screens */
        }
    }
	
/* NEW STYLES */
	
.faq-section { background: #141519; border-radius: 16px; padding: 32px 24px; }
.faq-section h2 { font-family: 'Orbitron', sans-serif; letter-spacing: 1px; color: #ffe066; }
.faq-list { margin-top: 2em; }
.faq-item { margin-bottom: 2em; }
.faq-item h3 { font-size: 1.25em; font-weight: 700; margin-bottom: 0.5em; }
.faq-item p { font-size: 1.09em; color: #e4e4e4; }
.faq-item small { color: #b3b3b3; }

.container, .digital-store-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.category-filter {
  margin: 30px 0 0 0;
  text-align: center;
  padding: 30px 0 10px 0;
  background: none;
}
.category-filter-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #ffe882;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.category-button {
  background: rgba(16, 18, 30, 0.94);
  color: #ffe882;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.6em 1.5em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-bottom: 4px;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,0.11);
  cursor: pointer;
  letter-spacing: 0.03em;
}
.category-button.active,
.category-button:focus {
  background: linear-gradient(90deg, #ffe882 0%, #ffd24b 100%);
  color: #131313;
  box-shadow: 0 2px 12px 0 rgba(255,232,130,0.13);
  outline: 2px solid #ffd24b;
}

.category-dropdown {
  display: inline-block;
  position: relative;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

.products-grid {
  padding: 40px 0;
  margin: 0 auto;
}
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 32px;
  margin: 0 auto;
  width: 100%;
}
.product-block {
  background: rgba(20,22,38,0.97);
  border-radius: 1.3em;
  box-shadow: 0 2px 28px 0 rgba(0,0,0,0.19);
  padding: 1.3em 1.1em 2.1em 1.1em;
  text-align: center;
  color: #fff;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.18s cubic-bezier(.34,1.56,.64,1);
  border: 1.5px solid rgba(255,232,130,0.06);
  backdrop-filter: blur(2.5px);
}
.product-block:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 8px 38px 0 rgba(255,232,130,0.13), 0 4px 24px 0 rgba(0,0,0,0.20);
  border-color: #ffe88244;
}
.product-block h3 {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: #ffe882;
  letter-spacing: 0.03em;
  margin: 0 0 8px 0;
  text-shadow: 0 1px 9px rgba(30,20,10,0.12);
}
.product-block p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #e5e5e5;
  margin-top: 10px;
  margin-bottom: 0;
}
.product-block strong {
  color: #ffd24b;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.no-products-message {
  grid-column: 1/-1;
  text-align: center;
  color: #ffe882;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  background: rgba(40,28,10,0.16);
  padding: 2em 1em 1.6em 1em;
  border-radius: 0.8em;
  margin-top: 16px;
  margin-bottom: 18px;
  box-shadow: 0 2px 20px 0 rgba(255,232,130,0.09);
}

.music-cta-button {
  background: rgba(16, 18, 30, 0.94);
  color: #ffe882;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.1rem;
  font-weight: 100;
  border-radius: 12px;
  padding: 0.6em 1.5em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-bottom: 4px;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,0.11);
  cursor: pointer;
  letter-spacing: 0.03em;
}
.music-cta-button.active,
.music-cta-button:focus {
  background: linear-gradient(90deg, #ffe882 0%, #ffd24b 100%);
  color: #131313;
  box-shadow: 0 2px 12px 0 rgba(255,232,130,0.13);
  outline: 2px solid #ffd24b;
}

.music-cta-dropdown {
  display: inline-block;
  position: relative;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-10px);}
  to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 900px) {
  .products-container {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}
@media (max-width: 650px) {
  .products-container {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .container {
    padding: 0 7px;
  }
  .product-block {
    padding: 1.1em 0.7em 1.5em 0.7em;
  }
}
/* ========== INDEX VIDEO SECTION ========== */
.index-video-grid {

  padding: 40px 20px;
  overflow-x: hidden;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.index-video-carousel-container {
  position: relative;
  width: 100%;
}
  
  .index-video-nav-buttons {
    display: flex !important;
    justify-content: center;
    gap: 50px;
    margin-top: 10px;
  }
  .index-video-nav-button {
  display: flex !important;	  
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #f1c40f, #ffeb3b);
  color: #0a0a0a;
  border: 1px solid rgba(241, 196, 15, 0.4);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(241, 196, 15, 0.2);
  touch-action: manipulation;	
  }

.index-video-nav-button:hover,
.index-video-nav-button:focus {
  background: linear-gradient(45deg, #ffeb3b, #f1c40f);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
  outline: none;
}

.index-video-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #f1c40f #111;
  width: 100%;
}

.index-video-carousel::-webkit-scrollbar {
  height: 6px;
}

.index-video-carousel::-webkit-scrollbar-track {
  background: #111;
}

.index-video-carousel::-webkit-scrollbar-thumb {
  background-color: #f1c40f;
  border-radius: 6px;
}

.index-video-item {
  flex: 0 0 calc(100% - 40px);
  scroll-snap-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.index-video-item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: none;
}

.index-video-item iframe:focus-visible {
  outline: 3px solid #f1c40f;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .index-video-item {
    flex: 0 0 calc(90vw - 20px);
    scroll-snap-align: center;
    padding: 5px;
  }

  .index-video-item iframe {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  } 
}  
@media (max-width: 480px) {
  .index-video-grid {
    padding: 15px 5px;
  }

  .index-video-carousel {
    gap: 8px;
    padding: 3px 0;
  }

  .index-video-item {
    flex: 0 0 calc(85vw - 10px);
    padding: 3px;
  }

  .index-video-item iframe {
    border-radius: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .index-video-nav-button:hover,
  .index-video-nav-button:focus,
  .index-video-carousel {
    scroll-behavior: auto;
  }
}

/* CATEGORY FILTER UI: Only one visible per device */
.category-buttons { display: flex; }
.category-dropdown { display: none; }

@media (max-width: 768px) {
  .category-buttons { display: none; }
  .category-dropdown { display: block; }
}

.music-cta-buttons { display: flex; }
.music-cta-dropdown { display: none; }

@media (max-width: 768px) {
  .music-cta-buttons { display: none; }
  .music-cta-dropdown { display: block; }
}
/* ========== AAA+++ BUTTONS & DROPDOWNS ========== */
.music-cta-button,
.category-button,
.streaming-dropdown-button {
  background: rgba(28, 30, 48, 0.80);
  color: #ffe882;
  border: 1.8px solid #ffe88266;
  border-radius: 18px;
  font-size: 1.08rem;
  font-family: 'Montserrat', 'Orbitron', sans-serif;
  font-weight: 700;
  padding: 0.7em 1.9em;
  box-shadow: 0 3px 18px 0 #ffe88216, 0 1.5px 4px 0 #0b0c103a, 0 0 0 2px #ffe88222;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(2.5px);
  transition: 
    background 0.28s cubic-bezier(.43,1.4,.6,1),
    box-shadow 0.25s cubic-bezier(.42,1.3,.59,1.05),
    color 0.17s, border 0.16s, transform 0.17s;
  position: relative;
  overflow: hidden;
}
.music-cta-button:hover,
.music-cta-button:focus,
.category-button:hover,
.category-button:focus,
.streaming-dropdown-button:hover,
.streaming-dropdown-button:focus {
  background: linear-gradient(92deg, #ffe882 5%, #ffd24b 80%) !important;
  color: #181820 !important;
  box-shadow:
    0 8px 38px 0 #ffe88236,
    0 2px 10px 0 #ffe88217,
    0 0 0 8px #ffe88228;
  border: 2px solid #ffe882;
  outline: 3px solid #ffe882cc;
  transform: scale(1.08);
}
.music-cta-button.active,
.category-button.active,
.streaming-dropdown-button.active {
  background: linear-gradient(92deg, #ffe882 5%, #ffd24b 90%);
  color: #19191b;
  box-shadow: 0 6px 32px 0 #ffe88221, 0 0 0 7px #ffe88222;
  border: 2.5px solid #ffe882ee;
}
.music-cta-button:active,
.category-button:active,
.streaming-dropdown-button:active {
  transform: scale(0.98);
  box-shadow: 0 1px 8px 0 #ffe88244;
}
.music-cta-button:focus-visible,
.category-button:focus-visible,
.streaming-dropdown-button:focus-visible {
  outline: 3px solid #ffe882bb !important;
}

/* Streaming dropdown menu */
.streaming-dropdown-menu,
.category-dropdown .streaming-dropdown-menu {
  background: rgba(28, 30, 48, 0.96);
  border: 2px solid #ffe88228;
  border-radius: 13px;
  box-shadow: 0 6px 36px 0 #ffe88216, 0 2px 10px 0 #0b0c1015;
  padding: 0;
  margin-top: 4px;
  animation: dropdownFadeIn 0.23s cubic-bezier(.4,1.3,.6,1.05);
  backdrop-filter: blur(4px);
}
.streaming-dropdown-menu.open,
.category-dropdown .streaming-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1.01);
}
.streaming-dropdown-menu li a,
.category-dropdown .streaming-dropdown-menu .category-option {
  font-size: 1.04em !important;
  font-family: 'Montserrat', sans-serif !important;
  color: #ffe882;
  padding: 14px 22px;
  border-radius: 8px;
  transition: background 0.15s, color 0.11s;
}
.streaming-dropdown-menu li a:hover,
.streaming-dropdown-menu li a:focus,
.category-dropdown .streaming-dropdown-menu .category-option:hover,
.category-dropdown .streaming-dropdown-menu .category-option:focus {
  background: #ffe8820c;
  color: #222;
  outline: none;
}

/* ========== AAA+++ FONT & GENERAL POLISH ========== */
.music-cta-button,
.category-button,
.streaming-dropdown-button,
.streaming-dropdown-menu li a,
.category-dropdown .streaming-dropdown-menu .category-option {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.album-block h4 {
  font-size: 1.22rem !important;
  font-family: 'Montserrat', 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

