    *{margin:0;padding:0;box-sizing:border-box;font-family:'Inter','Segoe UI',sans-serif}
    body{background:#0f1115;color:#fff;overflow-x:hidden}
    main{margin-top:90px;padding:80px 10%;min-height:calc(100vh - 90px)}
.page-title{
    font-size:3.5rem;
    font-weight:700;
    margin-bottom:30px;
    background:linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.page-subtitle{
    font-size:1.2rem;
    color:#cbd5e1;
    margin-bottom:60px;
    line-height:1.6;
}
    .posts{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px;}
    .post{background:linear-gradient(135deg,#1b1f26,#16181c);padding:24px;border-radius:16px;border:1px solid rgba(123,97,255,0.08);color:#cbd5e1}
    .post h3{font-size:1.2rem;margin-bottom:10px}
    .post p{color:#cbd5e1;line-height:1.6}
    footer{padding:40px;text-align:center;color:#64748b;border-top:1px solid rgba(123,97,255,0.1);background:#0f1115;font-weight:300}
.lang-btn{
    background:transparent;
    border:0;
    color:#cbd5e1;
    cursor:pointer;
    font-weight:500;
    transition:all 0.3s ease;
    padding: 5px 5px;
    border-radius: 5px;
}
.lang-switch{
    display:flex;
    gap:8px;
    align-items:center;
}
.lang-btn:active{
    color:#ffffff;
    font-weight:700;
    background: #5a3ddc;
}
.lang-btn:hover{
    color:#ffffff;
    transform: translateY(-1px);
    background: #7b61ff1a;
}

    @media(max-width:768px){main{
        padding:60px 6%}.page-title{font-size:1.8rem}

    }
/* Blog filter styles (added) */
.blog-filter-wrap{
    display:flex;
    justify-content:flex-end;
    margin-bottom:18px;
}

.blog-filter-select{
    background: linear-gradient(135deg, rgba(27,31,38,0.9), rgba(22,26,32,0.9));
    color: #fff;
    border: 1px solid #1b1f26;
    padding:10px 14px;
    border-radius:10px;
    font-weight:600;
    box-shadow: 0 6px 20px rgba(11,12,15,0.6);
    outline:none;
    transition: all 0.18s ease;
}

.blog-filter-select:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(123,97,255,0.12);
}

.blog-filter-select:focus{
    border-color: #7b61ff;
    box-shadow: 0 8px 30px rgba(123,97,255,0.14);
}
.blog-filter-select option{
    background: #1b1f26;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
}

@media (max-width:720px){
    .blog-filter-wrap{ justify-content:flex-start; }
    .blog-filter-select{ width:100%; }
}