/* Titles */
.block-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0px 0 20px;
}

.block-title-2 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 20px 0 20px;
}

/* Online slider */
.online-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    color: #fff;
    position: relative;
}

.online-avatar img {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0f0;
    position: absolute;
    right: 12px;
    top: 12px;
    border: 2px solid #0c0c0c;
}

.status-dot.online {
    background: #4cff4c;
}

/* Latest grid */
.latest-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.latest-card {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 14px;
    padding: 15px;
    color: #fff;
}

.latest-card img {
    width: 130px;
    height: 130px;
    border-radius: 14px;
    object-fit: cover;
}