/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Verdana, Arial;
  color: white;
  background: url("../img/background.png") no-repeat top center;
  background-size: cover;
}

/* NAV */
.nav {
  background: linear-gradient(#ff66aa, #000);
  padding: 10px;
}

.nav-inner {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.links a {
  color: #ff99cc;
  margin-left: 15px;
  text-decoration: none;
}

.links a:hover {
  color: #ff66aa;
}

/* LAYOUT */
.container {
  max-width: 1000px;
  width: 100%;
  margin: 20px auto;
  display: flex;
  gap: 15px;
  padding: 0 10px;
}

.sidebar {
  width: 250px;
}

.content {
  flex: 1;
}

/* PANELS */
.panel {
  background: rgba(0,0,0,0.6);
  border: 2px solid #ff66aa;
  padding: 10px;
  margin-bottom: 15px;
}

/* BUTTONS */
.btn {
  display: block;
  border: 2px solid #ff66aa;
  padding: 6px;
  margin: 5px 0;
  text-align: center;
  text-decoration: none;
  color: white;
}

.btn:hover {
  background: #ff66aa;
  color: black;
}

/* VIDEOS */
.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.video img {
  width: 100%;
  height: auto;
  border: 2px solid #ff66aa;
  display: block;
}

/* SHOW MORE */
.hidden-video {
  display: none;
}

button {
  margin-top: 10px;
  padding: 6px;
  background: black;
  color: white;
  border: 2px solid #ff66aa;
  cursor: pointer;
}

/* ALBUMS */
.album-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.album img {
  width: 100%;
  height: auto;
  display: block;
}

.album {
  border: 2px dashed #ff66aa;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

.album:hover {
  background: #ff66aa;
  color: black;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);

  justify-content: center;
  align-items: center;
}

.modal-box {
  background: #0b0b0b;
  border: 2px solid #ff66aa;
  padding: 25px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 0 25px #ff66aa;
  animation: pop 0.2s ease;
}

#albumTitle {
  margin-bottom: 15px;
  color: #ff99cc;
}

#albumLinks a {
  display: block;
  margin: 6px 0;
  padding: 6px;
  border: 1px solid #ff66aa;
  color: white;
  text-decoration: none;
}

#albumLinks a:hover {
  background: #ff66aa;
  color: black;
}

.modal-box button {
  margin-bottom: 10px;
  padding: 5px 10px;
  border: 1px solid #ff66aa;
  background: black;
  color: white;
  cursor: pointer;
}

.modal-box button:hover {
  background: #ff66aa;
  color: black;
}

@keyframes pop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* FOOTER */
.footer {
  margin-top: 40px;
  padding: 20px 10px;
  background: rgba(0, 0, 0, 0.7);
  border-top: 2px solid #ff66aa;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: auto;
}

.footer p {
  margin-bottom: 10px;
  color: #ff99cc;
  font-size: 13px;
}

.footer-links a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #ff66aa;
}

.footer-links a:hover {
  color: #ff66aa;
}

/* MARQUEE */
.marquee-bar {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #000, #ff66aa, #000);
  border-top: 2px solid #ff66aa;
  border-bottom: 2px solid #ff66aa;
  padding: 6px 0;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  font-weight: bold;
  font-size: 13px;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* LOGO */
.logo {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px #ff66aa);
}

/* 🔥 MOBILE */
@media (max-width: 900px) {

  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    width: 100%;
  }

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

  .album-list {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 180px;
  }

  .nav-inner {
    flex-direction: column;
    gap: 5px;
  }

  .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}