/* Global Styles & Y2K Sparkle Cursor */
body {
    background-color: #ff00ff; /* Hot Pink */
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Tiled pattern */
    font-family: "MS Sans Serif", "Arial", sans-serif;
    cursor: crosshair; /* Classic retro feel */
}

/* The Window Shell (90s Style) */
.window {
    background: #c0c0c0;
    border: 3px outset #fff;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.5);
    max-width: 900px;
    margin: 50px auto;
}

.title-bar {
    background: linear-gradient(90deg, #000080, #1084d0); /* Classic Blue Gradient */
    color: white;
    padding: 3px 5px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.window-body {
    padding: 10px;
}

/* Layout logic */
.layout {
    display: flex;
    gap: 10px;
}

/* Sidebar (Dashed & Neon) */
.sidebar {
    width: 180px;
    border: 2px dashed #ff00ff;
    background: #000;
    color: #00ff00; /* Neon Green text */
    padding: 10px;
}

.nav-links {
    list-style: none;
    padding: 0;
}

.nav-links a {
    color: #00ffff; /* Cyan links */
    text-decoration: none;
    display: block;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #fff;
    background: #ff00ff;
    text-decoration: underline;
}

/* Content Area */
.content {
    background: white;
    border: 2px inset #fff;
    padding: 20px;
    flex-grow: 1;
    overflow-y: scroll;
    height: 400px;
}

/* 00s Style "Blink" Animation */
.blink {
    animation: blinker 1s linear infinite;
    color: #ff00ff;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.pixel-box {
    border: 1px solid #000;
    padding: 10px;
    background: #ffffcc; /* Old sticky note yellow */
    margin: 10px 0;
}
/* Webring Styling */
.webring-widget {
    margin-top: 30px;
    border: 2px inset #fff; /* Sunken effect */
    background: #c0c0c0;
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

.webring-header {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #000080; /* Navy Blue like a title bar */
}

.webring-body {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

/* Making the links look like physical 3D buttons */
.webring-btn {
    background: #c0c0c0;
    border: 2px outset #fff;
    padding: 2px 8px;
    text-decoration: none;
}

.webring-btn:active {
    border: 2px inset #fff; /* Button looks "pressed" when clicked */
    padding: 3px 7px 1px 9px; /* Shifting text slightly for realism */
}

.webring-info {
    margin: 5px 0 0 0;
    font-style: italic;
    color: #555;
}