/* RESET */
* {
  box-sizing: border-box;
}

/* BODY */
body {
  margin: 0;
  font-family: "Comic Sans MS", "Comic Neue", "Verdana", sans-serif;
  background:
    repeating-linear-gradient(
      45deg,
      #e6f0ff,
      #e6f0ff 12px,
      #ffffff 12px,
      #ffffff 24px
    );
  background-attachment: fixed;
  color: #2a2a2a;
}

/* HEADER */
.header {
  position: relative;
  text-align: center;
  padding: 20px 10px;
  background: linear-gradient(to right, #1f5cff, #4d7dff);
  color: white;
  border-bottom: 4px double #ff7ab6;
  overflow: hidden;
}

.header h1 {
  margin: 0;
  font-size: 32px;
}

.header p {
  font-size: 14px;
}

/* LAYOUT */
.content {
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

/* NAV */
.nav {
  width: 200px;
  background: #e6d9ff;
  border: 3px dashed #1f5cff;
  padding: 15px;
  transform: rotate(-0.5deg);
}

.nav h2 {
  text-align: center;
  font-size: 15px;
  color: #1f5cff;
}

.nav ul {
  list-style: none;
  padding: 0;
}

.nav li {
  background: #ffffff;
  margin: 8px 0;
  border: 2px solid #ff7ab6;
  border-radius: 6px;
}

.nav a {
  display: block;
  padding: 6px;
  text-align: center;
  text-decoration: none;
  color: #2a2a2a;
  transition: all 0.2s ease-in-out;
}

.nav a:hover {
  background: #ff7ab6;
  color: white;
  transform: rotate(-2deg);
}

/* MAIN PROFILE/BLOG */
.profile {
  flex: 1;
  min-width: 250px;
}
/* CHAOTIC SECTIONS – 2000s vibes */
.chaotic-section {
  background: #ffffff url('https://bettysgraphics.neocities.org/images/backgrounds/clouds.jpg') repeat;
  border: 3px dashed #ff7ab6;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0 #1f5cff;
  transform: rotate(-0.5deg);
  position: relative;
  overflow: hidden;
}


/* MUSIC PLAYER */
.music-player {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.music-player audio {
  width: 100%;
}

/* PROFILE CARD */
.profile-card {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.avatar {
  width: 120px;
  height: 120px;
  border: 2px dashed #ff7ab6;
  border-radius: 12px;
  background: #fff0f7;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.avatar:hover {
  box-shadow: 0 0 15px #1f5cff;
}

.info p {
  margin: 6px 0;
}

.info b {
  color: #1f5cff;
  text-decoration: underline;
}

/* ABOUT & BLOG POSTS */
.about, .blog-post {
  line-height: 1.5;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 15px;
  background: #e6f0ff;
  border-top: 3px dashed #1f5cff;
}

/* SPARKLES */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ff7ab6;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 8px #fff;
}
