* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pixelify Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8e8ff;
    color: #333333;
    line-height: 1.6;
    font-size: 16px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.pixelify-sans-<uniquifier> {
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

/* Rain canvas */
#rainCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
}

/* Blurred background image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cyberia.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    filter: blur(8px);
    z-index: -2;
}

/* Semi-transparent overlay for better readability */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Main content container with light brown background */
.main-container {
    background: rgba(200, 200, 200, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(40, 40, 40, 0.3);
}

/* Navigation sidebar */
.main-container:first-child {
    width: 300px;
    flex-shrink: 0;
}

/* Content area */
.main-container:last-child {
    flex: 1;
}

/* Navigation Bar */
nav {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.nav-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #a800d6;
}

.nav-dotted-separator {
    display: none;
}

.nav-brand {
    font-weight: normal;
    color: #333333;
    text-decoration: none;
    margin-bottom: 10px;
}

.nav-brand:hover {
    color: #a800d6;
}

/* Avatar styling */
.avatar-section {
    margin: 20px 0;
}

.avatar {
    float: left;
    margin: 0 20px 20px 0;
    text-align: center;
}

.avatar-image {
    width: 150px;
    height: auto;
    object-fit: contain;
    display: block;
}

.stats {
    font-style: italic;
    color: #666;
    margin-top: 8px;
    font-size: 14px;
    width: 150px;
}

h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #333;
}

/* Clear floats for headings after avatar section */
h1:not(:first-of-type) {
    clear: both;
    margin-top: 30px;
}

p {
    margin-bottom: 16px;
    text-align: left;
}

a {
    color: #ae00f8;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: #60008a;
}

.content {
    clear: both;
}

.updates {
    border-top: 1px solid #8B4513;
    padding-top: 20px;
    margin-top: 30px;
}

.update-entry {
    margin-bottom: 15px;
}

.update-date {
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

.update-text {
    margin-bottom: 0;
}