@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: linear-gradient(135deg, #ff9966, #ff5e62); /* bright orange to pink gradient */
  color: #fff0f6;
  cursor: url('https://cur.cursors-4u.net/cursors/cur-9/cur817.cur'), auto;
  min-height: 100vh;
}

header {
  background: #ff704dcc;
  padding: 15px 10px;
  text-align: center;
  border-bottom: 3px solid #ff3366;
  position: sticky;
  top: 0;
  z-index: 100;
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #fff0f6;
  text-shadow: 0 0 8px #ff1a4d;
}

nav ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #fff0f6;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
  color: #ffb6c1;
  text-shadow: 0 0 10px #ffb6c1;
}

main {
  max-width: 900px;
  margin: 20px auto;
  background: #ffb3a7cc;
  padding: 25px 30px;
  border-radius: 25px;
  box-shadow: 0 0 25px #ff3366aa;
}

.favorites-section {
  margin-bottom: 30px;
}

.favorites-section h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-shadow: 0 0 6px #ff1a4d;
}

.favorites-section ul {
  list-style: none;
  padding-left: 0;
}

.favorites-section ul li {
  margin: 8px 0;
  font-size: 0.85rem;
}

.favorites-section ul li a {
  color: #fff0f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.favorites-section ul li a:hover {
  color: #ffccd5;
  text-shadow: 0 0 6px #ffccd5;
}

.scrapbook article {
  background: #ffcccbdd;
  border-radius: 20px;
  padding: 15px 20px;
  margin-bottom: 20px;
  color: #a30000;
  box-shadow: 0 0 12px #ff3366bb;
}

.scrapbook article h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #cc0044;
}

.scrapbook article p {
  font-size: 0.85rem;
  line-height: 1.3;
}

footer {
  margin: 40px 0 10px 0;
  text-align: center;
  font-size: 0.7rem;
  color: #fff0f6;
  text-shadow: 0 0 5px #ff3366;
}
