/* General Vibes */
body {
    background-color: #2e1a47; /* Deep Purple */
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png'); /* Subtle star tile */
    color: #e0d1ff;
    font-family: "Lucida Console", Monaco, monospace; /* Smart, slightly technical feel */
    font-size: 14px;
    line-height: 1.5;
    margin: 20px;
}

#container {
    max-width: 900px;
    margin: 0 auto;
    border: 3px double #9d72ff;
    background: rgba(20, 10, 30, 0.9);
    padding: 15px;
}

header h1 {
    text-align: center;
    font-family: "Georgia", serif;
    font-style: italic;
    color: #cbb2ff;
    text-shadow: 2px 2px #5a32a8;
}

marquee {
    border-top: 1px dotted #9d72ff;
    border-bottom: 1px dotted #9d72ff;
    padding: 5px 0;
    margin-bottom: 20px;
    font-size: 12px;
}

/* Layout */
#wrapper {
    display: flex;
    gap: 20px;
}

#sidebar {
    flex: 1;
}

#content {
    flex: 3;
}

/* Boxes & Sidebars */
.box {
    border: 1px solid #9d72ff;
    padding: 10px;
    margin-bottom: 15px;
    background: #3d2661;
}

.box h3 {
    margin-top: 0;
    font-size: 14px;
    background: #9d72ff;
    color: #1a0a33;
    padding: 2px 5px;
}

.avatar {
    display: block;
    margin: 0 auto 10px auto;
    border: 2px solid #cbb2ff;
}

/* Blog Entries */
.entry {
    border: 1px dotted #cbb2ff;
    padding: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
}

.entry-header {
    border-bottom: 1px solid #9d72ff;
    margin-bottom: 10px;
}

.entry-header h2 {
    margin: 5px 0;
    color: #fff;
}

.date {
    font-size: 10px;
    text-transform: uppercase;
}

.entry-footer {
    margin-top: 15px;
    font-size: 12px;
    font-style: italic;
    color: #cbb2ff;
}

/* Links */
a {
    color: #ff9efc;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
    cursor: crosshair;
}

/* Custom Scrollbar (because why not?) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #1a0a33; }
::-webkit-scrollbar-thumb { background: #9d72ff; }