body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  main {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;      /* Stack children vertically */
    align-items: center;         /* Center horizontally */
    justify-content: flex-start; /* Align to top */
    position: relative;
    font-family: tilt neon, sans-serif;
  }

  .background-iframe {
    position: fixed;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .background-iframe iframe {
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    border: none;
    display: block;
  }

  /* Responsive adjustments for mobile */
  @media (max-width: 600px), (max-height: 600px) {
    .background-iframe,
    .background-iframe iframe {
      width: 100vw;
      height: 100vh;
      min-width: 100vw;
      min-height: 100vh;
      left: 0;
      top: 0;
      position: fixed;
    }
  }

  .content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding-top: 20vh;
    font-family: sans-serif;
  }

  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: transparent;
    position: relative;
    z-index: 100;
  }

  .header-left,
  .header-right {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .header-left {
    justify-content: flex-start;
  }

  .header-right {
    justify-content: flex-end;
  }

  .home-btn {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
  }

  ul.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
  }
  
  .nav-links i {
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease;
  }
  
  .spotify a:hover i {
    color: #1db954; /* Spotify green */
  }
  
  .apple a:hover i {
    color: #FF4E6B; /* Apple red */
  }
  
  .soundcloud a:hover i {
    color: #ff5500; /* SoundCloud orange */
  }
  
  .youtube a:hover i {
    color: #ff0000; /* YouTube red */
  }
  
  .instagram a:hover i {
    color: #d62976; /* Instagram pink */
  }

  .tiktok a:hover i {
    color: aqua;
  }

  .mail a:hover i {
    color: #F4B400;
  }

  footer {
    position: relative;
    z-index: 2;
    color: white;
    font-family: tilt neon, sans-serif;
    font-size: small;
    height: 56px;
    background: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
  }

  footer > div {
    flex: 1;
    text-align: left;
  }

  footer > ul.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  footer > .footer-spacer {
    flex: 1;
  }

  .loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader::after {
  content: "";
  width: 48px; height: 48px;
  border: 8px solid #fff;
  border-top: 8px solid #888;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Desktop: links to the right of the video */
.video-container {
  position: relative;
  width: 88vw;
  max-width: 600px;
  margin: 64px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-links {
  position: absolute;
  top: 10%;
  left: 100%;
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  z-index: 2;
}

.video-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.2s;
}

.video-links a:hover {
  color: aqua;
  text-decoration: none;
}

/* Tablet & mobile: stack links below video */
@media (max-width: 900px) {
  .video-links {
    position: static !important;
    margin: 24px 0 0 0;
    align-items: center;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .video-links {
    margin: 16px 0 0 0;
    gap: 12px;
  }
}

.tv-video {
  position: absolute;
  top: 5%;
  left: 13%;
  width: 60%;
  height: 80%;
  object-fit: cover;
  z-index: 1;
  border-radius: 16px;
  background: black;
}

.tv-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 500px;
  height: auto;
  pointer-events: none;
}

/* Hide TV frame on mobile */
@media (max-width: 600px) {
  .tv-frame {
    display: none !important;
  }
}

/* Responsive video for mobile */
@media (max-width: 600px) {
  .video-container {
    width: 100vw;
    max-width: 100vw;
    aspect-ratio: 16/9;
    margin-top: 16px;
    padding: 0;
    position: relative;
    min-height: 0;
  }
  .tv-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: black;
  }
}

#nav_w2.nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px; /* space between menu items */
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

#nav_w2.nav li {
  display: inline-block;
}

#nav_w2.nav a {
  color: white;
  text-decoration: none;
  font-family: 'Tilt Neon', sans-serif;
  font-size: 1.2em;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

#nav_w2.nav a:hover {
  background: none;
  color: aqua;
}

.nav-links .home {
  margin-right: 64px;
}
.nav-links .home a i {
  color: white;
}
.nav-links .home a:hover i {
  color: aqua;
  transform: scale(1.05);
}

/* Home icon hover effect */
.header-left .home-btn:hover i {
  color: aqua;
}

.album-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  margin-top: 80px;
}

.album-art {
  width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.album-row a:hover .album-art {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.contact-box {
  background: #fff;
  color: #222;
  max-width: 400px;
  margin: 80px auto 0 auto;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  text-align: left;
  font-family: 'Tilt Neon', sans-serif;
}
.contact-box h2 {
  margin-top: 0;
  color: #111;
}
.contact-box a {
  color: #0077cc;
  text-decoration: underline;
}

.footer-links {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  color: aqua;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive footer for tablet and mobile */
@media (max-width: 900px) {
  .album-row {
    gap: 24px;
    flex-wrap: wrap;
  }
  .album-art {
    width: 160px;
    max-width: 45vw;
  }
  #nav_w2.nav {
    gap: 12px;
    font-size: 1em;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
  }
  ul.nav-links {
    justify-content: center;
    gap: 12px;
  }
  .album-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
  }
  .album-art {
    width: 90vw;
    max-width: 320px;
  }
  .contact-box {
    max-width: 98vw;
    padding: 12px 4px;
    margin: 24px auto 0 auto;
  }
  /* Footer stacks vertically and centers on mobile */
  footer {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 16px 4px;
    text-align: center;
  }
  footer > div,
  footer > ul.nav-links,
  .footer-links {
    justify-content: center;
    margin: 8px 0;
  }
  .footer-links {
    gap: 8px;
    font-size: 0.95em;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Force header icons to be visible and white */
header .nav-links i {
  color: white !important;
  font-size: 1.5em !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Hamburger button styles */
.hamburger {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: none;
  border: none;
  font-size: 2em;
  color: white;
  cursor: pointer;
}

/* Show hamburger on mobile */
@media (max-width: 900px) {
  .hamburger {
    display: block;
    position: static;
    margin: 24px auto 0 auto;
    left: 0;
    right: 0;
    top: auto;
    z-index: 10;
    text-align: center;
  }
  .video-container {
    flex-direction: column;
    align-items: center;
  }
  .video-links {
    display: none;
    position: static;
    margin-top: 16px;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.95);
    padding: 16px;
    border-radius: 8px;
    width: 90vw;
    max-width: 400px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
  }
  .video-links.open {
    display: flex;
  }
}

/* Allow scrolling on mobile */
@media (max-width: 600px) {
  html, body {
    overflow: auto !important;
    height: auto !important;
  }
  main {
    overflow: visible !important;
  }
}

