body{
    background:black;
    font-family: Arial, sans-serif;
}

h1{
    color:white;
    text-align:center;
    font-size:80px;
}

nav {
    margin-bottom: 60px;
    gap: 15px;
    display: flex;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #333;
}

nav a:hover {
    color: #fbfdff;
}

.container {
  width: 100%;
  max-width: 1200px; /* Adjust as needed */
  margin: 0 auto;
  padding: 20px;
  color: #fbfdff;
  box-sizing: border-box;
}

.logo {
    color: white;
    background: black;
    font-family: Consolas, "Courier New", monospace;
    white-space: pre;
    font-size: 20px;
    margin-top: 60px;
    line-height: 1;
    text-align: center;
}
/* ============================================
   deRIP — Win98 "philes" window system
   ============================================ */

:root {
    --win-face: #c0c0c0;
    --win-face-light: #dedede;
    --win-border-light: #ffffff;
    --win-border-dark: #808080;
    --win-border-darker: #0a0a0a;
    --title-blue-1: #000080;
    --title-blue-2: #1084d0;
    --link-blue: #0000ee;
}

body {
    background-color: #000;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 60px 120px, #fff, transparent),
        radial-gradient(1.5px 1.5px at 120px 60px, #fff, transparent),
        radial-gradient(1px 1px at 180px 150px, #fff, transparent),
        radial-gradient(1px 1px at 220px 20px, #fff, transparent),
        radial-gradient(1.5px 1.5px at 280px 100px, #fff, transparent),
        radial-gradient(1px 1px at 320px 180px, #fff, transparent),
        radial-gradient(1px 1px at 40px 200px, #fff, transparent),
        radial-gradient(1.5px 1.5px at 160px 220px, #fff, transparent),
        radial-gradient(1px 1px at 260px 240px, #fff, transparent);
    background-repeat: repeat;
    background-size: 300px 260px;
    min-height: 100vh;
}

/* ---------- window chrome ---------- */

.win98 {
    background: var(--win-face);
    border: 2px solid;
    border-color: var(--win-border-light) var(--win-border-darker) var(--win-border-darker) var(--win-border-light);
    box-shadow: 1px 1px 0 #000, 3px 3px 12px rgba(0,0,0,0.6);
    max-width: 900px;
    margin: 40px auto;
    font-family: Consolas, "Courier New", monospace;
    color: #000;
}

.title-bar {
    background: linear-gradient(90deg, var(--title-blue-1), var(--title-blue-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.title-bar-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title-bar-controls {
    display: flex;
    gap: 3px;
}

.title-bar-controls span {
    width: 16px;
    height: 14px;
    background: var(--win-face);
    border: 1px solid;
    border-color: var(--win-border-light) var(--win-border-darker) var(--win-border-darker) var(--win-border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #000;
    line-height: 1;
}

.window-body {
    background: #f0f0f0;
    padding: 18px 22px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.6;
}

.window-body::-webkit-scrollbar { width: 18px; }
.window-body::-webkit-scrollbar-track { background: var(--win-face); }
.window-body::-webkit-scrollbar-thumb {
    background: var(--win-face);
    border: 2px solid;
    border-color: var(--win-border-light) var(--win-border-darker) var(--win-border-darker) var(--win-border-light);
}

/* ---------- path/address bar (philes listing header) ---------- */

.path-bar {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border: 1px solid;
    border-color: var(--win-border-darker) var(--win-border-light) var(--win-border-light) var(--win-border-darker);
    margin: 10px 0 16px;
    padding: 4px 10px;
    font-size: 13px;
    color: #333;
}

/* ---------- philes list ---------- */

.philes-list {
    display: flex;
    flex-direction: column;
}

.phile-entry {
    padding: 12px 4px;
    border-bottom: 1px dashed #999;
    text-decoration: none;
    color: inherit;
    display: block;
}

.phile-entry:last-child { border-bottom: none; }

.phile-entry:hover .phile-title { color: var(--link-blue); }

.phile-title {
    font-weight: bold;
    font-size: 15px;
    color: #000;
}

.phile-tag {
    font-weight: normal;
    color: #808080;
    font-size: 13px;
}

.phile-summary {
    color: #333;
    font-size: 13px;
    margin: 4px 0;
}

.phile-date {
    color: #808080;
    font-size: 12px;
}

/* ---------- nav buttons ---------- */

.win-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.win-btn {
    background: var(--win-face);
    border: 2px solid;
    border-color: var(--win-border-light) var(--win-border-darker) var(--win-border-darker) var(--win-border-light);
    padding: 4px 12px;
    font-family: inherit;
    font-size: 12px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.win-btn:active {
    border-color: var(--win-border-darker) var(--win-border-light) var(--win-border-light) var(--win-border-darker);
}

/* ---------- post page ---------- */

.post-title {
    color: var(--title-blue-1);
    font-size: 20px;
    margin: 0 0 12px;
}

.posted-box {
    background: #fff;
    border: 1px solid;
    border-color: var(--win-border-darker) var(--win-border-light) var(--win-border-light) var(--win-border-darker);
    padding: 6px 10px;
    font-size: 12px;
    color: #333;
    display: inline-block;
    margin-bottom: 18px;
}

.post-body p { margin: 0 0 14px; }

.post-body h3.section-heading {
    color: var(--title-blue-1);
    font-size: 15px;
    margin: 24px 0 10px;
    border-top: 1px solid #999;
    padding-top: 14px;
}

.post-body blockquote {
    border-left: 3px solid var(--title-blue-2);
    margin: 14px 0;
    padding: 4px 14px;
    font-style: italic;
    color: #333;
    background: #e8e8e8;
}

.post-tag {
    color: #808080;
    font-weight: normal;
    font-size: 13px;
}
.title-bar {
    font-size: 11px;
    background: linear-gradient(90deg, navy, #1084d0);
    padding: 3px 2px 3px 3px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.title-bar-text {
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    margin-right: 24px
}

.title-bar-controls {
    display: flex
}

.title-bar-controls button {
    padding: 0;
    display: block;
    min-width: 16px;
    min-height: 14px
}

.title-bar-controls button:focus {
    outline: none
}
