body {
  margin: 0;
  background: url('images/pink-glitter-bg.gif');
  font-family: 'Comic Sans MS', cursive;
  color: black;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: hotpink;
  border: 3px dashed hotpink;
  padding: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 0 30px pink;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.8rem;
  text-shadow: 2px 2px 0 black, 4px 4px 0 black;
  color: #960018 ; 
}

.subtitle {
  font-family: 'Pacifico', cursive;
  font-size: 1.3rem;
  color: Black ;
  margin-top: 0.5rem;
}

.profile {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-pic {
  width: 150px;
  border-radius: 50%;
  border: 5px dotted #ffb6c1;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px pink;
}

.bio {
  font-size: 1.1rem;
  background-color: #fff0f5;
  padding: 1rem;
  border: 2px dashed #ffc0cb;
  border-radius: 15px;
}

section h2 {
  background-color: #ffc0cb;
  color: white;
  padding: 0.5rem;
  border-radius: 10px;
  font-size: 1.5rem;
  box-shadow: 2px 2px 0 #ff69b4;
}

ul {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}

ul li::before {
  content: "💞 ";
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #ff69b4;
  padding-top: 2rem;
  border-top: 2px dashed pink;
}

/* Side Decorations */
.side-decor {
  position: fixed;
  top: 50px;
  width: 80px;
  z-index: 0;
  opacity: 0.7;
}

.side-decor.left {
  left: 0;
}

.side-decor.right {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .side-decor {
    display: none;
  }
}
.side-decor {
  position: fixed;
  width: 80px;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
  image-rendering: pixelated;
}

.left {
  left: 5px;
}

.right {
  right: 5px;
}

/* Positions vertically */
.top {
  top: 60px;
}

.middle {
  top: 200px;
}

.bottom {
  top: 350px;
}

/* Responsive - hide on small screens */
@media (max-width: 768px) {
  .side-decor {
    display: none;
  }
}
/* About Me Section */
.about-me {
  margin-top: 50px;
  padding: 20px;
  background-color: rgba(0, 0, 50, 0.3);
  border: 1px #ffc0cb;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,191,255,0.2);
}

/* Scrollable character cards */
.character-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 0;
  margin-top: 10px;
  scrollbar-width: thin;
  scrollbar-color: pink;
}

.character-card {
  min-width: 160px;
  padding: 12px;
  background-color: rgba(0, 0, 80, 0.6);
  border: 1px solid white;
  border-radius: 10px;
  text-align: center;
  color: pink;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0,191,255,0.3);
  transition: transform 0.2s ease;
}

.character-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px pink;
}

/* Custom Scrollbar for WebKit Browsers */
.character-scroll::-webkit-scrollbar {
  height: 8px;
}

.character-scroll::-webkit-scrollbar-track {
  background: pink;
  border-radius: 4px;
}

.character-scroll::-webkit-scrollbar-thumb {
  background: pink;
  border-radius: 10px;
  box-shadow: inset 0 0 5px lightpink;
}

.character-scroll::-webkit-scrollbar-thumb:hover {
  background: lightpink;
}
