/* GENERAL BODY + BACKGROUND */
body {
  background-color: #f9e000;  /* solid yellow */
  color: #000;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.profile-pic {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid orange;
  flex-shrink: 0;
}
.header-info h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: orange;
}
.header-info p {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 6px;
}

/* SECTIONS */
section.stats,
section.highlights,
section.songs {
  margin: 30px auto 0;
  background-color: #ffa726;
  border-radius: 10px;
  padding: 16px;
  color: #000;
  max-width: 700px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
section.stats h2,
section.highlights h2,
section.songs h2 {
  margin-top: 0;
  font-weight: 700;
  font-size: 22px;
  color: #000;
}
section.stats div,
section.highlights ul li,
section.songs ul li {
  margin: 6px 0;
  font-size: 16px;
  font-weight: 500;
}

/* NAVIGATION BAR */
nav.nav-bar {
  margin: 40px auto 0;
  max-width: 700px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
nav.nav-bar a {
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  padding: 8px 18px;
  border-radius: 6px;
  background: orange;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  user-select: none;
}
nav.nav-bar a.active,
nav.nav-bar a:hover {
  background: #ffb74d;
  color: #fff;
}

/* WRAPPED PAGE SLIDES */
.wrapped-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  background: #ffa726;
  border-radius: 12px;
  padding: 24px 32px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  min-height: 400px;
}

.slide {
  opacity: 0;
  position: absolute;
  top: 24px;
  left: 32px;
  right: 32px;
  transition: opacity 0.6s ease;
  pointer-events: none;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* HEADINGS IN SLIDES */
.slide h1, .slide h2 {
  margin: 0 0 16px;
  font-weight: 700;
  color: orange;
}

/* LISTS */
.stats-list {
  margin-left: 20px;
  margin-bottom: 30px;
}
.stats-list li {
  margin-bottom: 8px;
}

/* SLIDER NAVIGATION ARROWS */
.nav-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  pointer-events: none;
}
.nav-arrow {
  pointer-events: auto;
  cursor: pointer;
  font-size: 32px;
  font-weight: 700;
  color: orange;
  position: absolute;
  top: 50%;
  user-select: none;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.nav-arrow:hover {
  background: orange;
  color: #fff;
}
.nav-arrow.left {
  left: -30px;
}
.nav-arrow.right {
  right: -30px;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header-info h1 {
    font-size: 24px;
  }
  section.stats, section.highlights, section.songs {
    padding: 12px;
    max-width: 100%;
  }
  nav.nav-bar {
    flex-direction: column;
    gap: 12px;
  }
  nav.nav-bar a {
    font-size: 16px;
    padding: 10px;
  }
  .nav-arrow.left {
    left: 5px;
  }
  .nav-arrow.right {
    right: 5px;
  }
}
