/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Purple theme colors - enhanced for readability */
    --primary-color: #ffffff;
    --secondary-color: #e6d5f5;
    --accent-color: #c7a8ff;
    --accent-light: #d1c4e9;
    --accent-bright: #e1bee7;
    --background-color: #0f0b13;
    --surface-color: #1a1620;
    --border-color: #4a2c6d;
    --card-bg: rgba(26, 22, 32, 0.9);
    --text-muted: #c7a8ff;
    --hover-color: #d1c4e9;
}

body {
    font-family: 'Open Sauce Mono', monospace;
    line-height: 1.8;
    color: var(--primary-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0b13 0%, #1a1620 100%);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
}

.sidenav {
    padding: 2rem 0 0 0;
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.main-content {
    max-width: 800px;
    width: 100%;
    margin: 0;
}

.sidenav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidenav li {
    margin-bottom: 0.5rem;
}

.sidenav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid transparent;
    background: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sidenav a:hover,
.sidenav a.active {
    background: rgba(199, 168, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-bright);
    text-decoration: none;
}

button {
    color: var(--accent-color);
    background: none;
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    outline: none;
}

button:hover, button:focus {
    background: rgba(156, 39, 176, 0.18);
    color: var(--accent-bright);
    border-color: var(--accent-bright);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 2px 8px 0 rgba(156, 39, 176, 0.08);
}

@media (max-width: 768px) {
    .page-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .sidenav {
        position: static;
        padding: 0;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .sidenav ul {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin: 0;
    }
    
    .sidenav li {
        margin: 0;
    }
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
    background: rgba(70, 35, 80, 0.4);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 25px rgba(156, 39, 176, 0.25);
    backdrop-filter: blur(8px);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 3px;
}

.intro, .status {
    margin-bottom: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(70, 35, 80, 0.3);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 25px rgba(156, 39, 176, 0.2);
}

p {
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.status p:last-of-type {
    color: var(--text-muted);
    font-size: 1rem;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    padding: 0;
}

.social-links li {
    position: relative;
}

.social-links i {
    padding-right: 0.4em;
}

a {
    color: var(--accent-color);
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    font-weight: 500;
    border-radius: 0;
    display: inline;
    transition: color 0.2s, text-decoration-color 0.2s, text-underline-offset 0.2s, text-decoration-thickness 0.2s, transform 0.2s;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

a:hover, a:focus {
    color: var(--accent-bright);
    text-decoration: underline wavy var(--accent-bright);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    background: none;
    outline: none;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 2px 8px 0 rgba(156, 39, 176, 0.08);
}

footer {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Card style for content paragraphs on content pages */
.content-card {
    background: rgba(70, 35, 80, 0.18);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(156, 39, 176, 0.07);
    padding: 1.2em 1.5em;
    margin-bottom: 2em;
    transition: box-shadow 0.2s;
}

.content-card:last-child {
    margin-bottom: 0;
}

.content-card:hover {
    box-shadow: 0 4px 24px rgba(156, 39, 176, 0.18);
    background: rgba(70, 35, 80, 0.28);
}

.pr-body {
    font-size: 0.95em;
    opacity: 0.7;
    display: block;
    margin: 0.5em 0 1.5em 1.5em;
    padding-left: 1em;
    border-left: 3px solid var(--accent-color);
    color: var(--primary-color);
    font-style: italic;
    background: none;
}
