:root{
    --bg:#882990;
    --bgo: #792480;
    --panel:#0b0b0c;
    --text:#e9e9e9;
    --muted:#9a9a9a;
    --accent:#cdcdcd;/*#9ad1ff;*/
    --max-width:900px;
    --gap:20px;

     font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    background:linear-gradient(180deg, var(--bg), var(--bgo), var(--bgo), var(--bg));
    color:var(--text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.5;

}
.container{
    max-width:var(--max-width);
    margin:0 auto;
    padding:20px;


}
.site-header{
    padding:20px;
    border-bottom:3px solid rgba(255,255,255,0.04);
}
h1{margin:0 0 6px 0}
.site-sub{margin:0;
    color:var(--muted);
    font-size:0.95rem
}

a{
    text-decoration: none;

}

/* Year filters */
.year-filters{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin:14px 0

}
.year-filters button{
    background:transparent;
    border:2px solid rgba(255,255,255,0.09);
    color:var(--text);
    padding:6px 10px;
    border-radius:999px;
    cursor:pointer;
    font-size:0.95rem;
}
.year-filters button[aria-pressed="true"]{
    background:linear-gradient(90deg, rgba(255,255,255,0.12), rgba(210,210,210,0.06)); /*linear-gradient(90deg, rgba(154,209,255,0.12), rgba(154,209,255,0.06));*/
    border-color:var(--accent);
    color:var(--accent);
}
.year-filters button:focus{outline:2px solid rgba(154,209,255,0.18)}

/* Archive list */
.archive-list{
    margin-top:8px;
    display:flex;
    flex-direction:column;
    gap:12px}
.entry{
    padding:16px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,0.02);
    color: #000;
    background: #efe2e2;
    box-shadow: 0 6px 18px rgba(31,41,55,0.2);
    transition:transform .12s;

}
.entry h3{
    color: #e63946;
    font-size: 1.25rem;
}
.entry:hover{
    transform: scale(1.03);
    transition:transform .12s;
}
.entry-date{
    color:var(--muted);
    font-size:0.9rem;
    display:block;
    margin-bottom:6px

}
.controls{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:18px;
    gap:12px}
.btn{
    background:transparent;
    border:2px solid rgba(255,255,255,0.09);
    color:var(--text);
    padding:8px 12px;
    border-radius:6px;
    cursor:pointer;
}
.btn[disabled]{
    opacity:0.45;
    cursor:not-allowed;

}
.page-indicator{
    color:var(--muted);
    font-size:0.95rem

}
.hidden{
    display:none

}

/* Footer */
/*.footer-center {
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

}

.site-footer {
    / *position: absolute; * /
    position: fixed;
    bottom: 1px;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-top: 1px solid #eef2f7;
    padding: 15px 20px;
    color: var(--muted);
    z-index: 60;
    box-shadow: 0 -6px 18px rgba(31,41,55,0.03);
}*/

/* Responsive */
@media (max-width:640px){
    .container{padding:12px}
    .controls{flex-direction:column; gap:8px}
}
