body {
    padding-top: 360px;
    background: var(--pinkbackground);
}
.web_bga {
    position: absolute;
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -999;
    top: 0;
    left: 0;
    background-attachment: local;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.web_bga::before {
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}
.logo {
    width: 42px;
    height: 42px;
}
.header {
    top: 0px;
    border-radius: 0px 0px 16px 16px;
    padding: 0px 18px 0px 18px;
    gap: 10px;
}
.nav a.active::after {
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
}
.nav a {
    padding: 15px 15px;
    font-size: 17px;
    transform: translateY(-2px);
}
.nav {
    gap: 0px;
}
.article-tuaword {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    text-align: center;
}
.article-info-a {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    max-width: 600px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    justify-items: center;
    align-items: center;
}
.info-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    padding: 6px 14px;
    margin: 0;
    color: #fff;
    font-size: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.info-item:hover {
    background: rgba(0, 0, 0, 0.35);
}
.no-pointer {
    cursor: default !important;
}
.info-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 11px;
    margin-right: 8px;
}
.avatar-imga {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.info-item[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: tooltipFade 0.25s ease forwards;
}
.info-item[title]:hover::before {
    content:'';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.75) transparent transparent transparent;
    opacity: 0;
    animation: tooltipFade 0.25s ease forwards;
    z-index: 999;
}
@keyframes tooltipFade {
    to {
        opacity: 1;
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 280px;
    }
    .web_bga {
        height: 380px;
    }
    .nav a {
        padding: 16px 10px;
    }
    .logo {
        width: 36px;
        height: 36px;
    }
    .article-tuaword {
        font-size: 25px;
    }
    .article-info-a {
        gap: 6px;
        grid-template-columns: repeat(3, 1fr);
    }
    .info-item {
        font-size: 13px;
        padding: 5px 10px;
    }
    .info-item i {
        width: 18px;
        height: 18px;
        font-size: 10px;
        margin-right: 5px;
    }
    .avatar-imga {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }
    .info-item[title]:hover::after {
        font-size: 12px;
        padding: 4px 10px;
    }
}