body {
  background-image: url("assets/background.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: auto;
  cursor: url("assets/cursor-default.png"), auto;
}

/* Cursor Hovers */
a:hover, button:hover {
  cursor: url("assets/cursor-hover.png"), pointer;
}

/* Centered site wrapper */
.site-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

/* Farthest Left Column */

.left-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 7px;
}

/* Sidebar container (border) */
.navigation-container {
  background-color: #fff0f8;
  border: 4px dotted #ffaad4;
  border-radius: 20px;
  padding: 10px;
  margin-right: 5px;
  box-shadow: 0 0 10px #ffc0da;
}

/* Navigator */
.navigation {
  width: 155px;
}

.navigation ul {
  list-style: none;
  padding: 0;
  margin: 10px;
}

.navigation li {
  margin-bottom: 10px;
  
}

.navigation a {
  text-decoration: none;
  color: #FF5290;
  font-weight: bold;
  transition: all 0.2s ease;
}

.navigation a:hover {
  background-color: #FFD6EB;
  color: #FF5290;
  border-radius: 3px; /* optional: makes it cute and rounded */
  padding: 2px 6px;   /* optional: adds spacing so bg color looks nice */
  transition: all 0.2s ease-in-out;
}

/* Main content box */
.main-container {
  flex: none;
  width: 470px; /* or whatever size feels cute */
  max-width: 90%; /* keeps it responsive on mobile */
  color: #FF70A6;
}

.content {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  box-shadow: 0 0 10px #ffc2e2;
  margin-left: 3px;
}

/* Profile Card Component */

.profile-box {
  width: 150px;
  background-color: #fffafc;
  border: 3px double #e3a5c2;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 0 6px #fbcce5;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #fbcce5;
  object-fit: cover;
  margin-bottom: 5px;
}

.status {
  background-color: #ffe5f2;
  border-top: 1px solid #ccc;
  padding: 5px;
  margin-top: 8px;
  font-size: 11px;
  text-align: left;
}

.nav-icon {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}

.banner-box {
  background-color: #FFFAFC;
  padding: 0;
  margin: 5px;
  box-shadow: 0 0 8px #fbcce5;
  text-align: center;
  width: 150px;
  overflow: hidden;
}

.scroll-banner {
  height: 50px;
  width: auto;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.side-banner-text {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 36px;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #FF70A6;
  background: #fff;
  border: 3px dashed #ffcce7;
  padding: 10px 20px;
  border-radius: 20px;
  writing-mode: vertical-rl; /* Makes it vertical Japanese style! */
  box-shadow: 0 0 12px rgba(255, 174, 224, 0.5);
  z-index: 999;
}

/* Heart + Star Trail for Cursor */
.cursor-effect {
  position: absolute;
  font-size: 22px;
  pointer-events: none;
  animation: floatWiggle 1s ease-out forwards;
  opacity: 0.9;
  z-index: 9999;
  font-family: 'Segoe UI Emoji', sans-serif;
}

@keyframes floatWiggle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
  100% {
    transform: translateY(-20px) rotate(-10deg);
    opacity: 0;
  }
}

.nishi-blinkie {
  margin-bottom: 5px;
}

.nav-blinkie {
  margin-left: 3px;
  margin-top: 1px;
}

