* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 20%, rgba(113,54,211,0.18), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.045), transparent 28%),
    #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1840px;
  height: 70px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  background: rgba(35, 36, 52, 0.94);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.32);
  backdrop-filter: blur(10px);
}

.brand-link {
  width: 134px;
  min-width: 134px;
  height: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-link img {
  height: 44px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.main-nav a {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 9px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a:focus {
  background: rgba(255,255,255,0.09);
  color: #fff;
  outline: none;
}

.music-page {
  min-height: 100vh;
  padding: 124px 28px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro {
  text-align: center;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.68);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow:
    0 0 8px rgba(255,255,255,0.22),
    0 0 26px rgba(113,54,211,0.44);
}

.subtext {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.video-grid {
  width: min(1260px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
}

.video-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(0,0,0,0.58);
  box-shadow: 0 0 34px rgba(113,54,211,0.16);
  overflow: hidden;
  padding: 18px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h2 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card a {
  color: #fff;
  text-decoration: none;
  opacity: 0.76;
}

.video-card a:hover,
.video-card a:focus {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    height: 58px;
    padding: 0 12px;
    gap: 10px;
  }

  .brand-link {
    width: 104px;
    min-width: 104px;
    height: 58px;
  }

  .brand-link img {
    height: 34px;
    max-width: 100px;
  }

  .main-nav {
    gap: 4px;
  }

  .main-nav a {
    height: 40px;
    padding: 0 9px;
    font-size: 13px;
  }

  .music-page {
    padding: 92px 14px 28px;
  }

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



/* Games dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
}

.nav-dropbtn {
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  font-weight: 800;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.nav-dropbtn:hover,
.nav-dropbtn:focus {
  background: rgba(255,255,255,0.09);
  color: #ffffff;
  outline: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: 54px;
  left: 0;
  min-width: 148px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  background: rgba(28,29,42,0.96);
  box-shadow: 0 14px 34px rgba(0,0,0,0.34);
  backdrop-filter: blur(10px);
  display: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block !important;
  height: auto !important;
  padding: 12px 14px !important;
  border-radius: 8px !important;
  color: rgba(255,255,255,0.92) !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: rgba(255,255,255,0.09) !important;
  color: #ffffff !important;
}

@media (max-width: 760px) {
  .nav-dropdown,
  .nav-dropbtn {
    height: 40px;
  }

  .nav-dropbtn {
    padding: 0 9px;
    font-size: 13px;
  }

  .nav-dropdown-menu {
    top: 44px;
    min-width: 120px;
  }

  .nav-dropdown-menu a {
    font-size: 13px !important;
    padding: 10px 12px !important;
  }
}


/* v191: JS-assisted dropdown open state, stable on mouse + touch. */
.site-header, .chess-header { overflow: visible !important; }
.nav-dropdown.is-open > .nav-dropdown-menu { display: block !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
.nav-dropdown.is-open > .nav-dropbtn { background: rgba(255,255,255,0.12) !important; color: #fff !important; }
.nav-tools-menu { min-width: 220px; }
@media (hover: none), (pointer: coarse), (max-width: 760px) {
  .nav-dropdown:hover > .nav-dropdown-menu { display: none; }
  .nav-dropdown.is-open > .nav-dropdown-menu { display: block !important; }
}
