:root{
    --bg: linear-gradient(135deg, #ffe6f7 0%, #e6f7ff 100%);
    --panel: rgba(255, 255, 255, 0.9);
    --border: #ffb3d9;
    --text: #000000;
    --accent: #ff69b4;
    --mono: 'Georgia', serif;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    *{
    box-sizing: border-box;
    }

    body{
    margin: 0;
    font-family: var(--mono);
    background: var(--bg);
    color: var(--text);
    text-transform: lowercase;
    scroll-padding-top: 70px;
    }

    .site-header{
    height: 70px;
    display: flex;
    align-items: center;
    padding-left: 32px;
    border-bottom: 2px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    }

    .site-header h1{
    margin: 0;
    font-size: 2rem;
    letter-spacing: .08em;
    color: var(--text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }

    .layout-shell{
    display: flex;
    min-height: calc(100vh - 70px);
    padding-top: 70px;
    }

    .sidebar{
    width: 250px;
    background: var(--panel);
    padding: 30px;
    border-right: 2px solid var(--border);
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    border-radius: 0 20px 20px 0;
    box-shadow: var(--shadow);
    }

    .sidebar h3{
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.5rem;
    }

    .release-nav{
    list-style: none;
    padding: 0;
    }

    .release-nav li{
    margin-bottom: 14px;
    }

    .release-nav a{
    text-decoration: none;
    color: var(--text);
    padding: 10px 15px;
    border-radius: 10px;
    transition: background 0.3s ease;
    display: block;
    }

    .release-nav a:hover{
    background: var(--accent);
    color: white;
    }

    .content-pane{
    flex: 1;
    padding: 30px;
    }

    .intro-panel{
    margin-bottom: 40px;
    text-align: center;
    }

    .intro-panel h2{
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 10px;
    }

    .intro-panel p{
    font-size: 1.2rem;
    color: var(--text);
    }

    .release-card{
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    transition: transform 0.3s ease;
    color: white;
    }

    .release-card:hover{
    transform: translateY(-5px);
    }

    .release-card h2{
    margin-top: 0;
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .release-title{
    display: block;
    font-size: 1rem;
    }

@media (max-width: 768px) {
    body {
        scroll-padding-top: 60px;
    }

    .site-header {
        height: 60px;
        padding-left: 16px;
    }

    .site-header h1 {
        font-size: 1.5rem;
    }

    .layout-shell {
        flex-direction: column;
        min-height: calc(100vh - 60px);
        padding-top: 60px;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        padding: 20px;
        border-right: none;
        border-bottom: 2px solid var(--border);
        border-radius: 0;
    }

    .content-pane {
        padding: 20px;
    }

    .intro-panel h2 {
        font-size: 2rem;
    }

    .release-card {
        padding: 15px;
    }

    .release-card h2 {
        font-size: 1.5rem;
    }
}