  /* Pixel font & body */
  body {
    background: #8de5f2;
    font-family: 'Press Start 2P', monospace;
    color: #ffffff;
    margin: 0;
    padding: 0;
  }

  /* Sticky menu bar */
  nav {
    position: sticky; /* stays at top */
    top: 0;
    width: 100%;
    background: #682173;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  }

  /* Menu list */
  .menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .menu li {
    position: relative;
    cursor: pointer;
  }

  .menu li a {
    text-decoration: none;
    color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
    font-size: 20px;
    text-shadow: 1px 1px #000;
    padding: 5px 10px;
    display: block;
  }

  .menu li a:hover {
    color: #e3e3e3;
  }

  /* Dropdown menu */
  .menu li ul {
    display: none;
    position: absolute;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
    font-size: 15px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #682173;
	box-shadow: 0 1px 4px rgba(0,0,0,0.5);
    padding: 5px 0;
    border-radius: 4px;
    list-style: none;
    min-width: 120px;
  }

  .menu li ul li a {
    padding: 5px 10px;
    text-align: center;
  }

  .menu li:hover ul {
    display: block;
  }

  /* Header */
header {
  background-image: url('https://images.habbo.com/web_images/habbo-web-articles/lpromo_xmas18_gen.png');
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffcc00;
  box-shadow: 0 1px 4px rgba(0,0,0,0.5);
  text-shadow: 2px 2px #000;
  margin-top: 0;
  padding: 20px 80px; /* reduce padding so content fits inline */
}

.header-content {
  display: flex;
  align-items: center; /* vertically centers logo and radio player */
  justify-content: space-between; /* logo left, radio right */
  width: 100%;
}

header .logo {
  height: 50px; /* adjust logo size */
}

.header-text {
  flex-grow: 1;           /* optional: takes available space */
  text-align: center;     /* centers text */
}

.radio-player {
  background: rgba(150, 100, 200, 0.8);
  border-radius: 8px;
  padding: 10px;
  width: 320px;
  text-align: center;
  float: none; /* remove float, flexbox handles layout */
}
  .radio-player h2 {
    color: #ffffff;
    font-size: 16px;
    text-shadow: 1px 1px #000;
    margin-bottom: 10px;
  }

  audio {
    width: 100%;
    border-radius: 4px;
    background: #000;
    outline: none;
  }

  .info {
    font-size: 12px;
    margin-top: 10px;
    color: #ffccc0;
    text-shadow: 1px 1px #000;
  }

  .direct-link a {
    color: #ffcc00;
    text-decoration: none;
    border-bottom: 1px dotted #fff;
  }
  .direct-link a:hover { color: #00ffea; }

  /* DJ News / Schedule */
  .dj-news {
    background: #222;
    border: 4px solid #ffcc00;
    border-radius: 8px;
    width: 320px;
    margin: 10px;
    padding: 15px;
    box-shadow: 4px 4px 0 #ffcc00;
  }
  .dj-news h3 {
    color: #ffcc00;
    text-shadow: 1px 1px #000;
    font-size: 14px;
  }
  .dj-news ul {
    list-style: none;
    padding-left: 0;
    font-size: 10px;
  }
  .dj-news li {
    margin: 6px 0;
  }
  
  main {
  display: flex;
  justify-content: center; /* centers the box horizontally */
  padding: 30px 10px; /* spacing from header and page edges */
}

.main-box {
  background: #ffffff; /* white box */
  color: #000000; /* black text */
  width: 90%; /* fills most of the page width */
  max-width: 1200px; /* optional: limits width on large screens */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  font-family: 'Press Start 2P', monospace; /* pixel font */
}

  /* Footer */
  footer {
    background: #00bfff;
    border-top: 4px solid #ffcc00;
    color: #ffcc00;
    text-align: center;
    padding: 10px;
    text-shadow: 1px 1px #000;
    font-size: 10px;
  }