
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, .9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #30363d;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #e6edf3;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #c9d1d9;
    transition: .3s;
}

.nav-links a:hover {
    color: #58a6ff;
}

.nav-btn {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    background: #58a6ff;
    color: white;
    font-weight: 600;
}

@media (max-width:768px) {
    .nav-links {
        display: none;
    }

    .logo span {
        font-size: 1rem;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: .9rem;
    }
}









/* //////////////////////////////////////////// */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-badge {
    padding: 8px 15px;
    border: 1px solid #30363d;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin: 0;
}

.hero p {
    max-width: 700px;
    line-height: 1.8;
    color: #b0b8c1;
    margin: 20px 0;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btns a {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid #30363d;
}










/* /////////////////////////////////////////////////// */
.about-blog {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.section {
    padding: 80px 20px;
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #30363d;
    border-radius: 50px;
    margin-bottom: 15px;
}

.about-blog h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-blog>p {
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
    color: #b0b8c1;
}

.about-stats {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    padding: 25px;
    border: 1px solid #30363d;
    border-radius: 12px;
    background: var(--back);
}

.stat-card h3 {
    margin-bottom: 10px;
}

.stat-card p {
    color: #b0b8c1;
    line-height: 1.6;
}












/* //////////////////////////////////////////////////// */
.categories {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.categories-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.category-card {
    padding: 25px;
    border: 1px solid #30363d;
    border-radius: 12px;
    background: var(--back);
    transition: .3s;
}

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

.category-card h3 {
    margin-bottom: 12px;
}

.category-card p {
    color: #b0b8c1;
    line-height: 1.6;
}




/* ///////////////////////////////////// */
.upcoming-articles {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.articles-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.article-card {
    padding: 25px;
    border: 1px solid #30363d;
    border-radius: 12px;
    background: var(--back);
    transition: .3s;
}

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

.article-card h3 {
    margin-bottom: 12px;
}

.article-card p {
    color: #b0b8c1;
    line-height: 1.6;
}




/* /////////////////////////////////////////////////// */

.haproven-network {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.network-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.network-card {
    padding: 25px;
    border: 1px solid #30363d;
    border-radius: 12px;
    background: var(--back);
    transition: .3s;
}

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

.network-card h3 {
    margin-bottom: 12px;
}

.network-card p {
    color: #b0b8c1;
    line-height: 1.6;
}



/* //////////////////////////////////////////////// */


.stay-updated {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.update-box {
    margin-top: 40px;
    padding: 35px;
    border: 1px solid #30363d;
    border-radius: 16px;
    background: var(--back);
}

.update-box h3 {
    margin-bottom: 15px;
}

.update-box p {
    color: #b0b8c1;
    line-height: 1.7;
    margin-bottom: 25px;
}

.update-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    background: #58a6ff;
    color: #fff;
    font-weight: 600;
}





/* //////////////////////////////////////////////// */
.development-status {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.status-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.status-card {
    padding: 25px;
    border: 1px solid #30363d;
    border-radius: 12px;
    background: var(--back);
}

.status-card h3 {
    margin-bottom: 12px;
}

.status-card p {
    color: #b0b8c1;
    line-height: 1.6;
}

.status-note {
    margin-top: 35px;
    padding: 15px 20px;
    border: 1px solid #30363d;
    border-radius: 10px;
    display: inline-block;
}




/* /////////////////////////////////////////////// */

.footer {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #30363d;
}

.footer-brand p {
    color: #b0b8c1;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h3 {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #b0b8c1;
    transition: .3s;
}

.footer-links a:hover {
    color: #58a6ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #8b949e;
}

@media(max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
}