/* --- Global Styles --- */
body {
  /* This is your new tiling pink glitter background! */
  background-image: url('https://i.pinimg.com/originals/b6/1d/de/b61dde3a31d27f631027fce8f54c933b.gif');
  background-color: #fdf0f5; /* A soft pink fallback */
  font-family: Tahoma, Verdana, sans-serif;
  font-size: 14px;
  color: #5d3d5e; /* Soft dark purple */
  
  /* This is your new REAL sparkle cursor! */
  cursor: url('https://cur.cursors-4u.net/cursors/cur-11/cur1048.cur'), auto;
}

/* --- The Main Page Box --- */
.container {
  width: 900px;
  margin: 20px auto; /* Centers the page */
  background-color: rgba(255, 255, 255, 0.9); /* Soft semi-transparent */
  border: 2px dotted #ffc0cb; /* Dotted pink border */
  border-radius: 15px; /* Soft rounded corners */
  padding: 15px;
  box-shadow: 0 0 15px rgba(255, 105, 180, 0.5); /* Pink glow! */
}

/* --- Header & Marquee --- */
header {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px dashed #f7b3d1;
}

header h1 {
  /* This is our "Bling" font! */
  font-family: 'Brush Script MT', cursive;
  font-size: 4.5em;
  color: #e75480; /* Hot pink */
  margin: 0;
  text-shadow: 2px 2px 4px #ffffff, 0 0 10px #ff69b4; /* White/pink glow */
}

header p {
  font-size: 1.2em;
  color: #e75480;
  margin: 0;
  font-weight: bold;
}

.sparkle-text {
  /* This is an animation! */
  background: linear-gradient(to right, #e75480, #f7b3d1, #e75480);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sparkle 3s linear infinite;
}

marquee {
  background-color: #fdf0f5;
  color: #e75480;
  font-weight: bold;
  padding: 5px;
  border-radius: 5px;
  margin-top: 10px;
}

/* --- Layout (Sidebar + Main) --- */
.page-wrapper {
  display: flex;
  margin-top: 15px;
}

/* --- Sidebar --- */
.sidebar {
  flex: 0 0 220px; /* Fixed 220px width */
  padding-right: 15px;
  border-right: 2px dashed #f7b3d1;
}

.sidebar h3 {
  background-color: #e75480;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  font-family: 'Impact', sans-serif; /* Very Y2K! */
  letter-spacing: 1px;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar li a {
  display: block;
  text-decoration: none;
  color: #6a4a6b;
  font-weight: bold;
  background-color: #fdf0f5;
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  border: 1px solid #f7b3d1;
  transition: all 0.2s; /* Smooth hover */
}

.sidebar li a:hover {
  background-color: #e75480;
  color: #fff;
  transform: translateX(5px); /* Cute hover effect */
}

.profile-box {
  background: #fdf0f5;
  border: 1px solid #f7b3d1;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}

.profile-box img {
  width: 180px;
  height: 180px;
  object-fit: cover; /* Prevents stretching */
  border: 2px solid #fff;
  border-radius: 50%; /* Soft circular image */
}

.bling-gif img {
  width: 100%;
  border-radius: 5px;
}

/* NEW: Styles for your Blinkies */
.blinkies {
  text-align: center;
}
.blinkies img {
  margin: 3px;
}


/* --- Main Content --- */
.main-content {
  flex: 1; /* Takes up the rest of the space */
  padding-left: 20px;
}

section {
  background: #ffffff;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #fdebfd;
  border-radius: 10px; /* Soft corners */
}

section h2 {
  font-family: 'Impact', sans-serif; /* Y2K heading */
  color: #e75480;
  letter-spacing: 1px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.blog-post ol {
  list-style-type: decimal;
  margin-left: 20px;
}

.blog-post img,
section img {
  max-width: 100%;
  border-radius: 8px;
  border: 2px solid #fdf0f5;
}

img.divider {
  width: 100%;
  margin: 10px 0;
  border: none;
}

/* NEW: Styles for your 88x31 Link Buttons */
.link-buttons a {
  margin: 5px;
  /* Add a little 'pop' on hover */
  transition: transform 0.2s;
  display: inline-block;
}
.link-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #ff69b4;
  border-radius: 5px;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 15px;
  border-top: 2px dashed #f7b3d1;
  font-size: 0.9em;
  color: #aaa;
}

footer img {
  margin-top: 10px;
}

/* --- Animation for Sparkle Text --- */
@keyframes sparkle {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}