/* Fonts & Basics */
@import url('https://fonts.googleapis.com/css2?family=Rubik+Spray+Paint&display=swap');

body {
  background: url("images/bg-tile.png") repeat;
  font-family: Monaco, monospace;
  font-size: 14px;
  color: #ff69b4;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  width: 900px;
  margin: 20px auto;
  border: 10px solid transparent;
  border-image: url("images/border.png") 30 round;
  background: #fffafc;
  box-shadow: 0 0 20px rgba(255, 182, 193, 0.5);
}

/* Header */
.header-img {
  width: 100%;
  border-bottom: 5px dashed pink;
  filter: blur(1px) brightness(1.1);
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
  background: #ffe4f2;
  border-bottom: 3px solid #ffb6c1;
}

nav ul li a {
  text-decoration: none;
  color: #ff1493;
  font-weight: bold;
  padding: 8px 16px;
  display: inline-block;
  transition: 0.2s;
}

nav ul li a:hover {
  background: #ffd6eb;
  border-radius: 8px;
}

/* Layout */
main {
  display: flex;
  padding: 20px;
  gap: 20px;
}

/* Scrollbox Content */
.scrollbox {
  flex: 2;
  max-height: 400px;
  overflow-y: auto;
  padding: 15px;
  background: #fff0f6;
  border: 3px dotted #ffb6c1;
  border-radius: 10px;
}

/* Sidebar Widgets */
aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget {
  background: #ffeaf7;
  border: 2px solid #ffc0cb;
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
}

/* Footer */
footer {
  text-align: center;
  padding: 10px;
  background: #ffe4f2;
  border-top: 3px solid #ffb6c1;
  font-size: 12px;
}

/* Optional Sparkles */
.sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: url("images/sparkles.gif") repeat;
  opacity: 0.5;
}

